You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For extending our Hydra-API I'm missing a class to describe a collection of items. We already have Documents and Agents. I like to introduce Items too, but I don't want to link each Item from the Document (holding:exemplar) and each Item from the Agent (holding:holds), because this might not scale.
What I'm missing in the ontology is a collection of Items, e.g. with the type http://purl.org/dc/dcmitype/Collection. Maybe the ontology could provide a class:
holding:Holdings a owl:Class ;
rdfs:label "Holdings"@en ;
rdfs:comment "A collection of Items. Use one of bf:Collection, schema:Collection, dctype:Collection, bibo:Collection"@en ;
owl:unionOf (bf:Collection schema:Collection dctype:Collection bibo:Collection) .
To relate an Agent with the collection, the holding:holds property might be edited:
holding:holds a owl:ObjectProperty ;
rdfs:label "holds"@en ;
rdfs:comment "Relates an agent to an item or a collection of items which the agent holds."@en ;
rdfs:domain holding:Agent ;
rdfs:range [
a owl:Class ;
owl:unionOf (holding:Holdings holding:Item)
] ;
rdfs:seeAlso rdaa:currentOwnerOf ;
rdfs:seeAlso rdaa:ownerOf ;
rdfs:subPropertyOf holding:collects ;
owl:inverseOf holding:heldBy .
With this ontology extension I'm able to make only one link from the Agent to the collection.
Within the collection either links to Items or links to Documents, describing specific holdings, can be provided. To achieve this I like to use the Dublin Core Collection Description Application Profile. Unfortunately they don't provide a property to relate the collection with their Items. So there is definitely missing a property like:
holding:contains owl:ObjectProperty ;
rdfs:label "contains"@en ;
rdfs:comment "Relates a collection withs its items or holding descriptions."@en ;
rdfs:domain holding:Holdings ;
rdfs:range [
a owl:Class ;
owl:unionOf (holding:Document holding:Item)
] ;
Do you think, this is a useful extension? Please give me feedback.
For extending our Hydra-API I'm missing a class to describe a collection of items. We already have Documents and Agents. I like to introduce Items too, but I don't want to link each Item from the Document (holding:exemplar) and each Item from the Agent (holding:holds), because this might not scale.
What I'm missing in the ontology is a collection of Items, e.g. with the type http://purl.org/dc/dcmitype/Collection. Maybe the ontology could provide a class:
To relate an Agent with the collection, the holding:holds property might be edited:
With this ontology extension I'm able to make only one link from the Agent to the collection.
Within the collection either links to Items or links to Documents, describing specific holdings, can be provided. To achieve this I like to use the Dublin Core Collection Description Application Profile. Unfortunately they don't provide a property to relate the collection with their Items. So there is definitely missing a property like:
Do you think, this is a useful extension? Please give me feedback.
@nichtich @jorol
The text was updated successfully, but these errors were encountered: