time:inXSDDateTime leaf node


URI

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

Label

in XSD Date-Time

Description

Position of an instant, expressed using xsd:dateTime

Usage

DOMAINPROPERTYRANGE
time:Instant time:inXSDDateTime xsd:dateTime

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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:inXSDDateTime a owl:DatatypeProperty ;
    rdfs:label "in XSD Date-Time"@en,
        "en fecha-tiempo XSD"@es ;
    rdfs:comment "Position of an instant, expressed using xsd:dateTime"@en,
        "Posición de un instante, expresado utilizando xsd:dateTime."@es ;
    rdfs:domain time:Instant ;
    rdfs:range xsd:dateTime ;
    owl:deprecated true ;
    skos:definition "Position of an instant, expressed using xsd:dateTime"@en,
        "Posición de un instante, expresado utilizando xsd:dateTime."@es ;
    skos:note "The property :inXSDDateTime is replaced by :inXSDDateTimeStamp which makes the time-zone field mandatory."@en,
        "La propiedad 'en fecha-hora XSD' ha sido reemplazada por 'en fecha-sello de tiempo XSD' que hace obligatorio el campo 'huso horario'."@es .