https://w3id.org/sulo/hasMember
has item is a relation between a collection and an item contained therein.
DOMAIN | PROPERTY | RANGE |
---|---|---|
sulo:Collection | sulo:hasMember | owl:Thing |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sulo: <https://w3id.org/sulo/> .
sulo:hasMember a owl:ObjectProperty ;
rdfs:label "has item"@en ;
rdfs:comment "has item is a relation between a collection and an item contained therein."@en ;
rdfs:domain sulo:Collection ;
rdfs:range owl:Thing ;
owl:inverseOf sulo:isItemIn .