sulo:isFeatureOf leaf node


URI

https://w3id.org/sulo/isFeatureOf

Label

is feature of

Description

is feature of is a relation between an internal, contextual, or externally attributed characteristic and some Thing.

Usage

DOMAINPROPERTYRANGE
sulo:Feature , Blank node (see implementation) sulo:isFeatureOf owl:Thing (inferred)

Implementation

@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 ) ] .