forked from skohub-io/skohub-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.ttl
26 lines (22 loc) · 890 Bytes
/
colors.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@prefix colour: <https://example.org/colour/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
colour: a skos:ConceptScheme ;
dct:title "PMs Colour Vocabulary"@en, "PMs Farbvokabular"@de ;
dct:creator "Hans Dampf"@de ;
dct:created "2024-11-21"^^xsd:date ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
skos:hasTopConcept colour:violet,
colour:blue,
colour:yellow .
colour:violet a skos:Concept ;
skos:prefLabel "Violett"@de, "violet"@en;
skos:altLabel "Lila"@de, "purple"@en ;
skos:topConceptOf colour: .
colour:blue a skos:Concept ;
skos:prefLabel "Blau"@de, "blue"@en ;
skos:topConceptOf colour: .
colour:yellow a skos:Concept ;
skos:prefLabel "Gelb"@de, "yellow"@en ;
skos:topConceptOf colour: .