forked from skohub-io/skohub-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.ttl
25 lines (20 loc) · 866 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
@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 "Colour Vocabulary"@en, "Farbvokabular"@de ;
dct:creator "Hans Dampf"@de ;
dct:created "2021-11-02"^^xsd:date ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
skos:hasTopConcept colour:violet, colour:blue , colour:green.
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:green a skos:Concept ;
skos:prefLabel "gruen"@de, "green"@en ;
skos:topConceptOf colour: .