time:DayOfWeek leaf node


URI

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

Label

Day of week

Description

The day of week

Usage

Instances of time:DayOfWeek can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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 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#> .

time:DayOfWeek a owl:Class ;
    rdfs:label "Day of week"@en,
        "día de la semana"@es ;
    rdfs:comment "The day of week"@en,
        "El día de la semana"@es ;
    rdfs:subClassOf owl:Thing ;
    skos:changeNote """Remove enumeration from definition, in order to allow other days to be used when required in other calendars. 
NOTE: existing days are still present as members of the class, but the class membership is now open. 

In the original OWL-Time the following constraint appeared: 
  owl:oneOf (
      time:Monday
      time:Tuesday
      time:Wednesday
      time:Thursday
      time:Friday
      time:Saturday
      time:Sunday
    ) ;"""@en ;
    skos:definition "The day of week"@en,
        "El día de la semana"@es ;
    skos:note "Membership of the class :DayOfWeek is open, to allow for alternative week lengths and different day names."@en,
        "La pertenencia a la clase 'día de la semana' está abierta, para permitir longitudes de semana alternativas y diferentes nombres de días."@es .