-
Notifications
You must be signed in to change notification settings - Fork 3
/
AppConcept.ttl
227 lines (166 loc) · 7.35 KB
/
AppConcept.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
@base <http://semweb.mmlab.be/ns/odapps#>.
@prefix org: <http://www.w3.org/ns/org#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix odapps: <http://semweb.mmlab.be/ns/odapps#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dvia: <http://purl.org/ontology/dvia#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rev: <http://purl.org/stuff/rev#> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://creativecommons.org/ns#> .
# ------------------------------- Metadata----------------------------------------------
<http://semweb.mmlab.be/ns/odapps>
a owl:Ontology;
rdfs:comment "odapps is an RDF vocabulary defined to facilitate the description of Open-Data-based ideas and applications published on the Web."@en ;
dct:title "The vocabulary for (L)OD ideas and applications"@en;
dct:issued "2013-05-10"^^xsd:date;
dct:modified "2014-01-14"^^xsd:date;
dct:creator [foaf:mbox "[email protected]"; foaf:name "Anastasia Dimou"];
dct:creator [foaf:mbox "[email protected]"; foaf:name "Pieter Colpaert"];
dct:contributor [foaf:mbox "[email protected]"; foaf:name "Raphael Troncy"] ;
dct:contributor [foaf:mbox "[email protected]"; foaf:name "Ghislain Auguste Atemezing"] ;
cc:license <http://creativecommons.org/licenses/by/3.0/> ;
vann:preferredNamespacePrefix "odapps" ;
owl:versionInfo "1.1 - 2014-01-14" .
########--- Classes --------------##########
###########################################
#App Concept
odapps:AppConcept a rdfs:Class;
rdfs:label "Application Concept"@en ;
rdfs:comment "An App Concept describes an idea for an application (a digital work) which refers to Open Data."@en ;
rdfs:subClassOf frbr:Work ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> .
#Application
#extends the dvia:Application
dvia:Application rdfs:subClassOf odapps:Application.
odapps:Application a rdfs:Class;
rdfs:label "Application"@en ;
rdfs:comment "An App Concept implementation." ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> .
#Tool
#extends the dvia:VisualTool
dvia:VisualTool rdfs:subClassOf odapps:Tool .
odapps:Tool a rdfs:Class;
rdfs:comment "The tool or library used to build the application."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "Tool."@en .
##### Properties ---------#########
####-#############################
odapps:conceived a rdf:Property ;
rdfs:label "conceived by" ;
rdfs:comment "The Agent which conceived the idea about the App Concept" ;
rdfs:range foaf:Agent .
#odapps:consumes
#extends dvia:consumes
dvia:consumes rdfs:SubClassOf odapps:consumes.
odapps:consumes a rdf:Property,
owl:ObjectProperty;
rdfs:comment "links to the dataset used to make the application, and could be of different types or formats";
rdfs:domain odapps:Application, odapps:AppConcept;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "consumes"@en ;
rdfs:range dcat:Dataset, xsd:string.
odapps:comment a rdf:Property,
owl:ObjectProperty;
rdfs:comment "comment on the application and the Concept";
rdfs:domain odapps:Application, odapps:AppConcept;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "comment"@en ;
rdfs:range odapps:AppConcept, odapps:Application.
#demo uri
odapps:demoUri a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Property for a given demo of the application and/or the Concept."@en ;
rdfs:domain odapps:AppConcept, odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "demo uri"@en .
#description
#extends dvia:description
odapps:description a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Property for a given descriptive informations of the concept and/or the application."@en ;
rdfs:domain odapps:AppConcept, odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "Concept and/or Application description"@en .
#datasetDescription
#extends dvia:datasetDescription
odapps:datasetDescription a rdf:Property, owl:ObjectProperty ;
rdfs:comment "Property for a given descriptive informations of the datasets used for making the application. It could be used when no more details are given on the datasets like URL, formats, etc."@en ;
rdfs:domain odapps:AppConcept, odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "dataset description"@en .
#download url
#extends dvia:downloadUrl
dvia:downloadUrl rdfs:subClassOf odapps:downloadUrl.
odapps:downloadUrl a rdf:Property;
rdfs:comment "This property links to the application"@en ;
rdfs:domain odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "download url"@en ;
rdfs:range xsd:anyURI.
#keyword
#extends dvia:keyword
dvia:keyword rdfs:subPropertyOf odapps:keyword.
odapps:keyword a rdf:Property, owl:ObjectProperty ;
rdfs:comment "The keywords of the Application."@en ;
rdfs:domain odapps:AppConcept, odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "dataset description"@en .
#license
#redefines dvia:hasLicense
dvia:hasLicense rdfs:subPropertyOf odapps:license.
odapps:license a rdf:Property, owl:DatatypeProperty;
rdfs:comment "This property links to the license of the application";
rdfs:domain odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "has license"@en ;
rdfs:range xsd:anyURI.
#odapps:instigator
odapps:instigator a rdf:Property, owl:ObjectProperty;
rdfs:label "instigator"@en ;
rdfs:comment "The Agent which conceived the idea about the App Concept (the instigator/initiator)."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> ;
rdfs:domain odapps:AppConcept ;
rdfs:range foaf:Agent .
#odapps:implements
odapps:implements a rdf:Property, owl:ObjectProperty ;
rdfs:label "implements"@en ;
rdfs:comment "The App Concept that this application implements"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> ;
rdfs:domain odapps:Application ;
rdfs:range odapps:AppConcept .
#odapps:revision
odapps:revision a rdf:Property ;
rdfs:label "revision of" ;
rdfs:comment "An App concept which was revised and re-posed / extended. " ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> ;
rdfs:domain odapps:AppConcept ;
rdfs:range odapps:AppConcept .
#odapps:revised
odapps:revised a rdf:Property, owl:ObjectProperty;
rdfs:label "revised"@en ;
rdfs:comment "The Agent which revised / extended the idea about the App Concept."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps> ;
rdfs:domain odapps:AppConcept ;
rdfs:range foaf:Agent .
#usesTool
#extends dvia:usesTool
dvia:usesTool rdfs:subClassOf odapps:usesTool.
odapps:usesTool a rdf:Property;
rdfs:comment "This property links to the tools or libraries used for the application"@en ;
rdfs:domain odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "usesTool"@en ;
rdfs:range odapps:Tool.
#url
#extends dvia:url
dvia:url rdfs:subClassOf odapps:url.
odapps:url a rdf:Property;
rdfs:comment "This property links to the application"@en ;
rdfs:domain odapps:Application;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/odapps>;
rdfs:label "url"@en ;
rdfs:range xsd:anyURI.