sulo:hasAttribute leaf node


URI

https://w3id.org/sulo/hasAttribute

Label

has attribute

Description

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

Usage

DOMAINPROPERTYRANGE
owl:Thing , Blank node (see implementation) sulo:hasAttribute 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:hasAttribute a owl:ObjectProperty ;
    rdfs:label "has attribute"@en ;
    rdfs:comment "has attribute is a relation between a thing and an internal, contextual, or externally attributed characteristic."@en ;
    rdfs:domain owl:Thing ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( sulo:Attribute sulo:InformationObject ) ] .