time:TimePosition leaf node


URI

http://www.w3.org/2006/time#TimePosition

Label

Time position

Description

A temporal position described using either a (nominal) value from an ordinal reference system, or a (numeric) value in a temporal coordinate system.

Superclasses (1)

Usage

Instances of time:TimePosition can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class time:TimePosition
time:nominalPosition owl:DatatypeProperty The (nominal) value indicating temporal position in an ordinal reference system xsd:string
time:numericPosition owl:DatatypeProperty The (numeric) value indicating position within a temporal coordinate system xsd:decimal
From class owl:Thing
dcterms:contributor owl:AnnotationProperty owl:Thing
dcterms:created owl:AnnotationProperty owl:Thing
dcterms:creator owl:AnnotationProperty owl:Thing
dcterms:isVersionOf owl:AnnotationProperty owl:Thing
dcterms:license owl:AnnotationProperty owl:Thing
dcterms:modified owl:AnnotationProperty owl:Thing
dcterms:rights owl:AnnotationProperty owl:Thing
skos:changeNote owl:AnnotationProperty owl:Thing
skos:definition owl:AnnotationProperty owl:Thing
skos:editorialNote owl:AnnotationProperty owl:Thing
skos:historyNote owl:AnnotationProperty owl:Thing
skos:note owl:AnnotationProperty owl:Thing
skos:prefLabel owl:AnnotationProperty owl:Thing
skos:scopeNote owl:AnnotationProperty owl:Thing
time:hasDuration owl:ObjectProperty Duration of a temporal entity, expressed as a scaled value or nominal value time:Duration
time:hasDurationDescription owl:ObjectProperty Duration of a temporal entity, expressed using a structured description time:GeneralDurationDescription
time:hasTime owl:ObjectProperty Supports the association of a temporal entity (instant or interval) to any thing time:TemporalEntity
xsd:pattern owl:AnnotationProperty owl:Thing

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 skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

time:TimePosition a owl:Class ;
    rdfs:label "Time position"@en,
        "posición de tiempo"@es ;
    rdfs:comment "A temporal position described using either a (nominal) value from an ordinal reference system, or a (numeric) value in a temporal coordinate system. "@en,
        "Una posición temporal descrita utilizando bien un valor (nominal) de un sistema de referencia ordinal, o un valor (numérico) en un sistema de coordenadas temporales."@es ;
    rdfs:subClassOf [ a owl:Class ;
            owl:unionOf ( [ a owl:Restriction ;
                        owl:cardinality "1"^^xsd:nonNegativeInteger ;
                        owl:onProperty time:nominalPosition ] [ a owl:Restriction ;
                        owl:cardinality "1"^^xsd:nonNegativeInteger ;
                        owl:onProperty time:numericPosition ] ) ],
        time:TemporalPosition ;
    skos:definition "A temporal position described using either a (nominal) value from an ordinal reference system, or a (numeric) value in a temporal coordinate system. "@en,
        "Una posición temporal descrita utilizando bien un valor (nominal) de un sistema de referencia ordinal, o un valor (numérico) en un sistema de coordenadas temporales."@es .