-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.rdf
101 lines (78 loc) · 4.82 KB
/
sample.rdf
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://data.sparna.fr/vocabularies/days> a skos:ConceptScheme;
dct:description "The days of the week";
dct:title "Weekdays";
skos:hasTopConcept <http://data.sparna.fr/vocabularies/days/friday>, <http://data.sparna.fr/vocabularies/days/monday>,
<http://data.sparna.fr/vocabularies/days/thursday>, <http://data.sparna.fr/vocabularies/days/tuesday>,
<http://data.sparna.fr/vocabularies/days/wednesday>, <http://data.sparna.fr/vocabularies/days/week-end> .
<http://data.sparna.fr/vocabularies/days/monday> a skos:Concept;
skos:definition <http://data.sparna.fr/vocabularies/days/monday-def-0>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "MON";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/monday-label--0> .
<http://data.sparna.fr/vocabularies/days/tuesday> a skos:Concept;
skos:definition <http://data.sparna.fr/vocabularies/days/tuesday-def-0>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "TUE";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/tuesday-label--0> .
<http://data.sparna.fr/vocabularies/days/wednesday> a skos:Concept;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "WED";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/wednesday-label--0> .
<http://data.sparna.fr/vocabularies/days/thursday> a skos:Concept;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "THU";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/thursday-label--0> .
<http://data.sparna.fr/vocabularies/days/friday> a skos:Concept;
skos:definition <http://data.sparna.fr/vocabularies/days/friday-def-0>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "FRI";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/friday-label--0> .
<http://data.sparna.fr/vocabularies/days/saturday> a skos:Concept;
skos:broader <http://data.sparna.fr/vocabularies/days/week-end>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "SAT";
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/saturday-label--0> .
<http://data.sparna.fr/vocabularies/days/sunday> a skos:Concept;
skos:broader <http://data.sparna.fr/vocabularies/days/week-end>;
skos:definition <http://data.sparna.fr/vocabularies/days/sunday-def-0>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:notation "SUN";
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/sunday-label--0> .
<http://data.sparna.fr/vocabularies/days/week-end> a skos:Concept;
skos:definition <http://data.sparna.fr/vocabularies/days/week-end-def-0>;
skos:inScheme <http://data.sparna.fr/vocabularies/days>;
skos:narrower <http://data.sparna.fr/vocabularies/days/saturday>, <http://data.sparna.fr/vocabularies/days/sunday>;
skos:notation "WKND";
skos:topConceptOf <http://data.sparna.fr/vocabularies/days>;
skosxl:prefLabel <http://data.sparna.fr/vocabularies/days/week-end-label--0> .
<http://data.sparna.fr/vocabularies/days/monday-label--0> a skosxl:Label;
skosxl:literalForm "Monday" .
<http://data.sparna.fr/vocabularies/days/sunday-label--0> a skosxl:Label;
skosxl:literalForm "Sunday" .
<http://data.sparna.fr/vocabularies/days/wednesday-label--0> a skosxl:Label;
skosxl:literalForm "Wednesday" .
<http://data.sparna.fr/vocabularies/days/thursday-label--0> a skosxl:Label;
skosxl:literalForm "Thursday" .
<http://data.sparna.fr/vocabularies/days/week-end-label--0> a skosxl:Label;
skosxl:literalForm "Week-end" .
<http://data.sparna.fr/vocabularies/days/saturday-label--0> a skosxl:Label;
skosxl:literalForm "Saturday" .
<http://data.sparna.fr/vocabularies/days/friday-label--0> a skosxl:Label;
skosxl:literalForm "Friday" .
<http://data.sparna.fr/vocabularies/days/tuesday-label--0> a skosxl:Label;
skosxl:literalForm "Tuesday" .
<http://data.sparna.fr/vocabularies/days/friday-def-0> rdf:value "Week-end soon !" .
<http://data.sparna.fr/vocabularies/days/week-end-def-0> rdf:value "Any day of the week-end" .
<http://data.sparna.fr/vocabularies/days/tuesday-def-0> rdf:value "The most productive day of the week." .
<http://data.sparna.fr/vocabularies/days/sunday-def-0> rdf:value "The day you sleep." .
<http://data.sparna.fr/vocabularies/days/monday-def-0> rdf:value "The day where you get back at work" .