-
Notifications
You must be signed in to change notification settings - Fork 3
/
Event.ttl
228 lines (161 loc) · 7.44 KB
/
Event.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
227
228
@base <http://semweb.mmlab.be/ns/apps4X#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix odapps: <http://semweb.mmlab.be/ns/odapps#>.
@prefix apps4X: <http://semweb.mmlab.be/ns/apps4X#>.
@prefix schema: <http://schema.org/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix lode: <http://linkedevents.org/ontology/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
# ---------------------------------------- Metadata----------------------------------------------
<http://semweb.mmlab.be/ns/apps4X>
a owl:Ontology;
rdfs:comment "apps4X is an RDF vocabulary defined to facilitate the description of Open-Data-based Co-creation events."@en;
dct:description "apps4X is an RDF vocabulary defined to facilitate the description of Open-Data-based Co-creation events."@en;
dct:title "The vocabulary for Co-creation Events based on Open Data"@en;
dct:issued "2013-05-10"^^xsd:date;
dct:modified "2014-06-16"^^xsd:date;
dct:creator [foaf:mbox "Anastasia.Dimou@UGent.be"; foaf:name "Anastasia Dimou"];
dct:creator [foaf:name "Ghislain Atemezing"];
dct:creator [foaf:mbox "Pieter.Colpaert@UGent.be"; foaf:name "Pieter Colpaert"].
# ------------------------------------------ Classes --------------------------------------------
# Co-creation Event
# need to decide on the proper word to call it, is co-creation event? is it co-creation competition? is it competition? is it contest?
# or use alternative labels.
# A cocreation event may be an event on its own or it could be a competition in the frame of a broader event
apps4X:CocreationEvent a rdfs:Class, owl:Class ;
rdfs:subClassOf lode:Event, schema:Event ;
rdfs:label "Co-creation event"@en ;
rdfs:comment "A co-creation event is a competition, a contest, a challenge etc. It's a subproperty as it is an event but with a certain scope"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> .
#Jury
apps4X:Jury a rdfs:Class, owl:Class ;
rdfs:label "Jury"@en ;
rdfs:comment "A jury evaluating the submissions to a co-creation event."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> .
#Submission
apps4X:Submission a rdfs:Class, owl:Class ;
rdfs:label "Submission"@en ;
rdfs:comment "An App Concept idea as it was submitted to a certain competition."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X>.
#Award
apps4X:Award a rdfs:Class, owl:Class;
rdfs:label "Award"@en ;
rdfs:comment "the award offered by the jury to a certain App Concept"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> .
# ---------------------------------------- Properties --------------------------------------------
#apps4X:award
apps4X:award a rdf:Property, owl:ObjectProperty ;
rdfs:label "award offered"@en ;
rdfs:comment "one or more awards offered at this co-creation event"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent , apps4X:Jury ;
rdfs:range apps4X:Award .
#apps4X:awardCeremony
apps4X:awardCeremony a rdf:Property, owl:ObjectProperty ;
rdfs:label "award's ceremnoy"@en ;
rdfs:comment "The award ceremony"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Award ;
rdfs:range lode:Event, schema:Event .
#apps4X:consistsOf
apps4X:consistsOf a rdf:Property, owl:ObjectProperty ;
rdfs:label "consists of"@en ;
rdfs:comment "A submission consists of "@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Submission ;
rdfs:range odapps:AppConcept, odapps:Application .
#apps4X:edition
apps4X:edition a rdf:Datatype, owl:DatatypeProperty;
rdfs:label "edition"@en ;
rdfs:comment "The event edition. "@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent ;
rdfs:range xsd:int .
#apps4X:juryMember
apps4X:juryMember a rdf:Property, owl:ObjectProperty ;
rdfs:label "Jury Member"@en ;
rdfs:comment "A jury consists of "@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Jury ;
rdfs:range foaf:Agent .
#apps4X:juryRate
apps4X:juryRate a rdf:Property, owl:DatatypeProperty ;
rdfs:label "Jury's rate"@en ;
rdfs:comment "The rate given by the jury"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Submission ;
rdfs:range xsd:float.
#nominated
apps4X:nominated a rdf:Property, owl:ObjectProperty ;
rdfs:label "nominated for"@en ;
rdfs:comment "An App Concept is nominated for the award."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Submission;
rdfs:range apps4X:Award .
#organizer
apps4X:organizer a rdfs:Property, owl:ObjectProperty ;
rdfs:label "organizer"@en ;
rdfs:comment "the event's organizer"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent ;
rdfs:range foaf:Agent .
#apps4X:prize
apps4X:prize a rdf:Property, owl:DatatypeProperty ;
rdfs:label "prize"@en ;
rdfs:comment "The actual prize offered."@en ;
rdfs:domain apps4X:Award;
rdfs:range xsd:string .
#registration
apps4X:registration a rdf:Propert, owl:DatatypeProperty ;
rdfs:label "url to the registration"@en ;
rdfs:comment "a link to the registration for the event"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:subPropertyOf schema:url ;
rdfs:domain apps4X:CocreationEvent ;
rdfs:range xsd:anyURI .
#size
apps4X:size a rdf:Property, owl:ObjectProperty ;
rdfs:label "the size of the event"@en ;
rdfs:comment "The event's size in regard to its thematic area and/or locality. "@en ;
#to be discussed what exactly it would be, is the number of the participants? is the number of submissions? #a description e.g. "small, big, medium, large" compared to other events
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent .
#apps4X:shortTitle
apps4X:shortTitle a rdf:Property, owl:DatatypeProperty ;
rdfs:label "short title"@en ;
rdfs:comment "the event's short title and/or its abbreviation"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent ;
rdfs:range xsd:string .
#apps4X:sponsor
apps4X:sponsor a rdfs:Property, owl:ObjectProperty ;
rdfs:label "sponsor"@en ;
rdfs:comment " the event's sponsor "@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent ;
rdfs:range foaf:Agent .
#theme of the event
apps4X:theme a rdf:Property, owl:ObjectProperty ;
rdfs:label "theme"@en ;
rdfs:comment "The App Concept can be within a certain theme."@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:CocreationEvent, odapps:AppConcept, odapps:Application ;
rdfs:range skos:ConceptScheme .
#apps4X:wonAward
apps4X:wonAward a rdf:Property, owl:ObjectProperty ;
rdfs:label "won award"@en ;
rdfs:comment "links to the award that this App Concept won"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Submission ;
rdfs:range apps4X:Award.
#apps4X:usersRate
apps4X:usersRate a rdf:Property, owl:DatatypeProperty ;
rdfs:label "Users' rate"@en ;
rdfs:comment "The rate given by the users"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/apps4X> ;
rdfs:domain apps4X:Submission ;
rdfs:range xsd:float.