time:dayOfYear leaf node


URI

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

Label

day of year

Description

The number of the day within the year

Usage

DOMAINPROPERTYRANGE
time:GeneralDateTimeDescription time:dayOfYear xsd:nonNegativeInteger

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:dayOfYear a owl:DatatypeProperty ;
    rdfs:label "day of year"@en,
        "día del año"@es ;
    rdfs:comment "The number of the day within the year"@en,
        "El número de día en el año."@es ;
    rdfs:domain time:GeneralDateTimeDescription ;
    rdfs:range xsd:nonNegativeInteger ;
    skos:definition "The number of the day within the year"@en,
        "El número de día en el año."@es .