https://w3id.org/sulo/isFeatureOf
is feature of is a relation between an internal, contextual, or externally attributed characteristic and some Thing.
DOMAIN | PROPERTY | RANGE |
---|---|---|
sulo:Feature , Blank node (see implementation) | sulo:isFeatureOf | owl:Thing (inferred) |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sulo: <https://w3id.org/sulo/> .
sulo:isFeatureOf a owl:ObjectProperty ;
rdfs:label "is feature of"@en ;
rdfs:comment "is feature of is a relation between an internal, contextual, or externally attributed characteristic and some Thing."@en ;
rdfs:domain sulo:Feature ;
rdfs:range [ a owl:Class ;
owl:unionOf ( sulo:Object sulo:Process ) ] .