time:inXSDDate leaf node


URI

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

Label

in XSD date

Description

Position of an instant, expressed using xsd:date

Usage

DOMAINPROPERTYRANGE
time:Instant time:inXSDDate xsd:date

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:inXSDDate a owl:DatatypeProperty ;
    rdfs:label "in XSD date"@en,
        "en fecha XSD"@es ;
    rdfs:comment "Position of an instant, expressed using xsd:date"@en,
        "Posición de un instante, expresado utilizando xsd:date."@es ;
    rdfs:domain time:Instant ;
    rdfs:range xsd:date ;
    skos:definition "Position of an instant, expressed using xsd:date"@en,
        "Posición de un instante, expresado utilizando xsd:date."@es .