sulo:isItemIn leaf node


URI

https://w3id.org/sulo/isItemIn

Label

is item in

Description

has item is a relation between an item and the collection in which it contained.

Usage

DOMAINPROPERTYRANGE
owl:Thing sulo:isItemIn sulo:Set

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:isItemIn a owl:ObjectProperty ;
    rdfs:label "is item in"@en ;
    rdfs:comment "has item is a relation between an item and the collection in which it contained."@en ;
    rdfs:domain owl:Thing ;
    rdfs:range sulo:Set ;
    rdfs:subPropertyOf owl:topObjectProperty .