-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdgs-ontology.ttl
124 lines (93 loc) · 3.79 KB
/
sdgs-ontology.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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@prefix : <http://metadata.un.org/sdg/ontology#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://metadata.un.org/sdg/ontology> a owl:Ontology;
rdfs:label "Sustainable Development Goals Ontology"@en .
## Classes ##
:Target a owl:Class;
rdfs:label "Cible"@fr, "Meta"@es, "Target"@en;
rdfs:subClassOf skos:Concept .
:Goal a owl:Class;
rdfs:label "Goal"@en, "Objectif"@fr, "Objetivo"@es;
rdfs:subClassOf skos:Concept .
:Series a owl:Class;
rdfs:label "Series"@en;
rdfs:subClassOf schema:Dataset, skos:Concept .
:Indicator a owl:Class;
rdfs:label "Indicador"@es, "Indicateur"@fr, "Indicator"@en;
rdfs:subClassOf skos:Concept .
:Tier a owl:Class;
rdfs:label "Tier Classification for Global SDG Indicators"@en .
## Properties ##
:hasTarget a owl:ObjectProperty;
rdfs:domain :Goal;
rdfs:label "has target"@en;
rdfs:range :Target;
owl:inverseOf :isTargetOf;
rdfs:subPropertyOf skos:narrower .
:hasIndicator a owl:ObjectProperty;
rdfs:domain :Target;
rdfs:label "has indicator"@en;
rdfs:range :Indicator;
owl:inverseOf :isIndicatorOf;
rdfs:subPropertyOf skos:narrower .
:hasSeries a owl:ObjectProperty;
rdfs:domain :Indicator;
rdfs:label "has series"@en;
rdfs:range :Series;
owl:inverseOf :isSeriesOf;
rdfs:subPropertyOf skos:narrower .
:isTargetOf a owl:ObjectProperty;
rdfs:domain :Target;
rdfs:label "is target of"@en;
rdfs:range :Goal;
rdfs:subPropertyOf skos:broader .
:isIndicatorOf a owl:ObjectProperty;
rdfs:domain :Indicator;
rdfs:label "is indicator of"@en;
rdfs:range :Target;
rdfs:subPropertyOf skos:broader .
:isSeriesOf a owl:ObjectProperty;
rdfs:domain :Series;
rdfs:label "is series of"@en;
rdfs:range :Indicator;
rdfs:subPropertyOf skos:broader .
:custodianAgency a owl:DatatypeProperty;
rdfs:domain :Indicator;
rdfs:label "has custodian agency"@en;
rdfs:range xsd:string .
:tier a owl:ObjectProperty;
rdfs:domain :Indicator;
rdfs:label "tier"@en ;
rdfs:range :Tier .
## Mappings and constraints on imported vocabulary items ##
skos:prefLabel rdfs:subPropertyOf schema:name .
skos:notation rdfs:subPropertyOf schema:identifier .
skos:historyNote rdfs:subPropertyOf schema:version .
dct:subject a owl:ObjectProperty;
rdfs:domain skos:Concept ;
rdfs:range skos:Concept .
schema:keywords a owl:DatatypeProperty;
owl:propertyChainAxiom _:node1dck7boeix3 .
_:node1dck7boeix3 rdf:first dct:subject;
rdf:rest _:node1dck7boeix4 .
_:node1dck7boeix4 rdf:first skos:prefLabel;
rdf:rest rdf:nil .
## Instances
:tier_I a :Tier ;
rdfs:label "Tier I"@en ;
rdfs:isDefinedBy <https://unstats.un.org/sdgs/iaeg-sdgs/tier-classification> ;
rdfs:comment "Indicator is conceptually clear, has an internationally established methodology and standards are available, and data are regularly produced by countries for at least 50 per cent of countries and of the population in every region where the indicator is relevant."@en .
:tier_II a :Tier ;
rdfs:label "Tier II"@en ;
rdfs:isDefinedBy <https://unstats.un.org/sdgs/iaeg-sdgs/tier-classification> ;
rdfs:comment "Indicator is conceptually clear, has an internationally established methodology and standards are available, but data are not regularly produced by countries."@en .
:tier_III a :Tier ;
rdfs:label "Tier III"@en ;
rdfs:isDefinedBy <https://unstats.un.org/sdgs/iaeg-sdgs/tier-classification> ;
rdfs:comment "No internationally established methodology or standards are yet available for the indicator, but methodology/standards are being (or will be) developed or tested."@en .