time:unitType leaf node


URI

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

Label

temporal unit type

Description

The temporal unit which provides the precision of a date-time value or scale of a temporal extent

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) time:unitType time:TemporalUnit

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 time: <http://www.w3.org/2006/time#> .

time:unitType a owl:ObjectProperty ;
    rdfs:label "temporal unit type"@en,
        "tipo de unidad temporal"@es ;
    rdfs:comment "The temporal unit which provides the precision of a date-time value or scale of a temporal extent"@en,
        "La unidad de tiempo que proporciona la precisión de un valor fecha-hora o la escala de una extensión temporal."@es ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( time:Duration time:GeneralDateTimeDescription ) ] ;
    rdfs:range time:TemporalUnit .