@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix estur-core: <https://ontologia.segittur.es/turismo/def/core#> .
@prefix estur-kos: <https://ontologia.segittur.es/turismo/kos/> .

@prefix estur-dayoftheweek: <https://ontologia.segittur.es/turismo/kos/DayOfTheWeek/> .

#################################################################
#
#    Concept Scheme
#
#################################################################

estur-kos:DayOfTheWeek a skos:ConceptScheme ; 
    dct:issued "2026-01-24"^^xsd:date ;
    dct:modified "2026-01-24"^^xsd:date ;
    cc:license <https://creativecommons.org/licenses/by/4.0/> ;
    rdfs:comment "This concept scheme belongs to the set of controlled SKOS-based thesauri used by the SEGITTUR tourism ontology."@en ;
    rdfs:comment "Este esquema de conceptos pertenece al conjunto de tesauros SKOS usados por la ontología de turismo de SEGITTUR."@es ;
    rdfs:label "Day of the week"@en ;
    rdfs:label "Día de la semana"@es ;
    dct:title "Concept scheme grouping days of the week"@en ;
    dct:title "Esquema de conceptos agrupando días de la semana"@es .

#################################################################
#
#    Concepts
#
#################################################################

estur-dayoftheweek:Monday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Monday"@en ;
  skos:prefLabel "Lunes"@es .

estur-dayoftheweek:Tuesday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Tuesday"@en ;
  skos:prefLabel "Martes"@es .

estur-dayoftheweek:Wednesday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Wednesday"@en ;
  skos:prefLabel "Miércoles"@es .

estur-dayoftheweek:Thursday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Thursday"@en ;
  skos:prefLabel "Jueves"@es .

estur-dayoftheweek:Friday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Friday"@en ;
  skos:prefLabel "Viernes"@es .

estur-dayoftheweek:Saturday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Saturday"@en ;
  skos:prefLabel "Sábado"@es .

estur-dayoftheweek:Sunday a skos:Concept;
  skos:inScheme estur-kos:DayOfTheWeek;
  skos:prefLabel "Sunday"@en ;
  skos:prefLabel "Domingo"@es .

