forked from skohub-io/skohub-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors_with_hierarchy.ttl
29 lines (24 loc) · 1.06 KB
/
colors_with_hierarchy.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
27
28
29
@prefix colour: <https://example.org/colour-with-hierarchy/> .
@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 with hierarchy"@en, "Farbvokabular mit Hierarchie"@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:green .
colour:violet a skos:Concept ;
skos:prefLabel "Violett"@de, "violet"@en ;
skos:altLabel "Lila"@de, "purple"@en ;
skos:topConceptOf colour: .
colour:green a skos:Concept ;
skos:prefLabel "green"@en, "Grün"@de ;
skos:narrower colour:grassgreen, colour:bluegreen ;
skos:topConceptOf colour: .
colour:grassgreen a skos:Concept ;
skos:prefLabel "grass-green"@en, "Grasgrün"@de ;
skos:inScheme colour: .
colour:bluegreen a skos:Concept ;
skos:prefLabel "blue-green"@en, "Blaugrün"@de ;
skos:inScheme colour: .