sulo:refersTo leaf node


URI

https://w3id.org/sulo/refersTo

Label

refers to

Description

refers to is a binary relation between an information object and any other object that it mentions, describes, represents, encodes, or otherwise provides information about.

Usage

DOMAINPROPERTYRANGE
sulo:InformationObject sulo:refersTo owl:Thing

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:refersTo a owl:ObjectProperty ;
    rdfs:label "refers to"@en ;
    rdfs:comment "refers to is a binary relation between an information object and any other object that it mentions, describes, represents, encodes, or otherwise provides information about."@en ;
    rdfs:domain sulo:InformationObject ;
    rdfs:range owl:Thing .