Removed wrong optional Facet from Actor definition
This commit is contained in:
parent
652a3093f1
commit
2f8bbf467b
|
@ -136,8 +136,6 @@ HasContact is a base relation type to capture the diverse points of contact asso
|
|||
+------------------------------------------------------+--------------+------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
||||
| **Source** | **Relation** | **Multiplicity** | **Target** | **Description** |
|
||||
+------------------------------------------------------+--------------+------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
||||
| Actor | HasContact | 0..n | ContactFacet | An Actor can have other Contact Facets which provide secondary contact information. |
|
||||
+------------------------------------------------------+--------------+------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
||||
| Dataset | HasContact | 1..n | ContactFacet | The contact information of the entity responsible for the dataset. |
|
||||
+------------------------------------------------------+--------------+------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
||||
| Schema | HasContact | 1..n | ContactFacet | |
|
||||
|
|
|
@ -180,8 +180,6 @@ ContactFacet captures information on a point of contact for the resource, i.e.,
|
|||
+-----------------+----------------+-----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
|
||||
| **Source** | **Relation** | **Multiplicity** | **Target** | **Description** |
|
||||
+-----------------+----------------+-----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
|
||||
| Actor | HasContact | 0..n | ContactFacet | An Actor can have other Contact Facets which provide secondary contact information. |
|
||||
+-----------------+----------------+-----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
|
||||
| Actor | IsIdentifiedBy | 1..1 | ContactFacet | An Actor has at least a Contact Facet which permit to identify the Actor per se. |
|
||||
+-----------------+----------------+-----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
|
||||
| ConcreteDataset | HasMaintainer | 1..n | ContactFacet | The contact information of the entity responsible for the maintenance of the concrete dataset |
|
||||
|
|
|
@ -39,23 +39,21 @@ Actor (Abstract) is any entity (human or machine) playing an active role in the
|
|||
|
||||
.. table:: **Actor** ``extends`` **GCubeResource**
|
||||
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Source | Relation | Multiplicity | Target | Description |
|
||||
+========================+================+==============+=======================+=======================================================================================+
|
||||
| **Facets** |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Actor | ConsistsOf | 0..n | ContactReferenceFacet | |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Actor | HasContact | 0..n | ContactFacet | An Actor can have other Contact Facets which provide secondary contact information. |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Actor | IsIdentifiedBy | 1..1 | ContactFacet | An Actor has at least a Contact Facet which permit to identify the Actor per se. |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| **Resource Relations** |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Dataset | Involves | 0..n | Actor | |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
| Site | IsOwnedBy | 0..n | Actor | |
|
||||
+------------------------+----------------+--------------+-----------------------+---------------------------------------------------------------------------------------+
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| Source | Relation | Multiplicity | Target | Description |
|
||||
+========================+================+==============+=======================+====================================================================================+
|
||||
| **Facets** |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| Actor | ConsistsOf | 0..n | ContactReferenceFacet | |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| Actor | IsIdentifiedBy | 1..1 | ContactFacet | An Actor has at least a Contact Facet which permit to identify the Actor per se. |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| **Resource Relations** |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| Dataset | Involves | 0..n | Actor | |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
| Site | IsOwnedBy | 0..n | Actor | |
|
||||
+------------------------+----------------+--------------+-----------------------+------------------------------------------------------------------------------------+
|
||||
|
||||
|
||||
The **Actor** current version is 1.0.0.
|
||||
|
|
|
@ -40,7 +40,6 @@ import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.IsOwne
|
|||
@ResourceSchema(
|
||||
facets={
|
||||
@ResourceSchemaEntry(relation=IsIdentifiedBy.class, facet=ContactFacet.class, min=1, max=1, description=" An Actor has at least a Contact Facet which permit to identify the Actor per se. "),
|
||||
@ResourceSchemaEntry(relation=HasContact.class, facet=ContactFacet.class, description=" An Actor can have other Contact Facets which provide secondary contact information. "),
|
||||
@ResourceSchemaEntry(facet=ContactReferenceFacet.class)
|
||||
},
|
||||
resources= {
|
||||
|
|
Loading…
Reference in New Issue