sulo:hasFeature leaf node


URI

https://w3id.org/sulo/hasFeature

Label

has feature

Description

has feature is a relation between a thing and an internal, contextual, or externally attributed characteristic.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) sulo:hasFeature sulo:Feature

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:hasFeature a owl:ObjectProperty ;
    rdfs:label "has feature"@en ;
    rdfs:comment "has feature is a relation between a thing and an internal, contextual, or externally attributed characteristic."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( sulo:Object sulo:Process ) ] ;
    rdfs:range sulo:Feature ;
    owl:inverseOf sulo:isFeatureOf .