sulo:isPartOf


URI

https://w3id.org/sulo/isPartOf

Label

is part of

Description

is part of is a transitive, reflexive and antisymmetric relation between a part and itself or a part and a whole.

Inherits from

Sub Property

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) sulo:isPartOf owl:Thing (inferred)

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:isPartOf a owl:ObjectProperty,
        owl:ReflexiveProperty,
        owl:TransitiveProperty ;
    rdfs:label "is part of"@en ;
    rdfs:comment "is part of is a transitive, reflexive and antisymmetric relation between a part and itself or a part and a whole."@en ;
    rdfs:subPropertyOf sulo:isLocationOf .