sulo:hasMember leaf node


URI

https://w3id.org/sulo/hasMember

Label

has item

Description

has item is a relation between a collection and an item contained therein.

Usage

DOMAINPROPERTYRANGE
sulo:Set sulo:hasMember owl:Thing

Implementation

@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:Set ;
    rdfs:range owl:Thing ;
    owl:inverseOf sulo:isItemIn .