https://w3id.org/sulo/TimeInstant
time instant is a quantity of time a particular moment in time.
Instances of sulo:TimeInstant can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class sulo:Time | |||
sulo:isTimeOf | owl:ObjectProperty | a relation between a time and an object that occurs within it. | owl:Thing |
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:refersTo | owl:ObjectProperty | 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. | owl:Thing |
From class sulo:Feature | |||
sulo:isFeatureOf | owl:ObjectProperty | is feature of is a relation between an internal, contextual, or externally attributed characteristic and some Thing. | owl:Thing |
From class sulo:Object | |||
sulo:isParticipantIn | owl:ObjectProperty | is participant in is a relation to relate an object and the process in which it participates. | sulo:Process |
From class owl:Thing | |||
dcat:accessURL | owl:AnnotationProperty | owl:Thing | |
dcterms:alternative | owl:AnnotationProperty | owl:Thing | |
dcterms:created | owl:AnnotationProperty | owl:Thing | |
dcterms:language | owl:AnnotationProperty | owl:Thing | |
dcterms:license | owl:AnnotationProperty | owl:Thing | |
dcterms:modified | owl:AnnotationProperty | owl:Thing | |
foaf:homepage | owl:AnnotationProperty | owl:Thing | |
mod:definitionProperty | owl:AnnotationProperty | owl:Thing | |
mod:hasRepresentationLanguage | owl:AnnotationProperty | owl:Thing | |
mod:hasSyntax | owl:AnnotationProperty | owl:Thing | |
mod:prefLabelProperty | owl:AnnotationProperty | owl:Thing | |
schema:funding | owl:AnnotationProperty | owl:Thing | |
skos:example | owl:AnnotationProperty | owl:Thing | |
sulo:hasDirectPart | owl:ObjectProperty | has direct part is a non-transitive parthood relation that can be used to specify cardinality constraints between a whole and its parts. | 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:isDirectPartOf | owl:ObjectProperty | is direct part is a non-transitive parthood relation that can be used to specify cardinality constraints between a part and its whole. | owl:Thing |
sulo:isLocatedIn | owl:ObjectProperty | A is located in B iff the spatialtemporal region occupied by B is the spatialtemporal region occupied by A. | 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:isPartOf | owl:ObjectProperty | is part of is a transitive, reflexive and antisymmetric relation between a part and itself or a part and a whole. | owl:Thing |
@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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
sulo:TimeInstant a owl:Class ;
rdfs:label "time instant"@en ;
rdfs:comment "time instant is a quantity of time a particular moment in time."@en ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a rdfs:Datatype ;
owl:unionOf ( xsd:date xsd:dateTime xsd:dateTimeStamp ) ] ;
owl:onProperty sulo:hasValue ],
sulo:Time .