https://w3id.org/sulo/InformationObject
an information object is an object that represents or encodes information. Information objects can be stored, transmitted, or processed to enable communication, reasoning, or decision-making.
Instances of sulo:InformationObject can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class sulo:InformationObject | |||
sulo:hasValue | owl:DatatypeProperty | has value is the (only) data type attribute to store the values of information objects. | owl:Thing |
sulo:describes | owl:ObjectProperty | describes is a relation between an information object and the thing it provides a description for. | owl:Thing |
From class owl:Thing | |||
skos:example | owl:AnnotationProperty | owl:Thing | |
sulo:encodes | owl:ObjectProperty | A relation between an information containing object, in which the first object contains information that is used to produce the second object. | owl:Thing |
sulo:hasDirectPart | owl:ObjectProperty | has direct part is a non-transitive parthood relation that can be used to specify cardinality constraints. | owl:Thing |
sulo:hasPart | owl:ObjectProperty | has part is a transitive, reflexive and antisymmetric relation between a whole and itself or a whole and its part. | owl:Thing |
sulo:isLocationOf | owl:ObjectProperty | A is location of B iff the spatialtemporal region occupied by A is the spatialtemporal region occupied by B. | owl:Thing |
sulo:refersTo | owl:ObjectProperty | owl:Thing | |
sulo:represents | owl:ObjectProperty | a represents b when a serves as a sign, symbol or model of b. | owl:Thing |
@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:InformationObject a owl:Class ;
rdfs:label "information object"@en ;
rdfs:comment "an information object is an object that represents or encodes information. Information objects can be stored, transmitted, or processed to enable communication, reasoning, or decision-making."@en ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sulo:InformationObject ;
owl:onProperty sulo:hasPart ],
sulo:Object ;
owl:disjointWith sulo:SpatialObject .