Statistics
| Branch: | Revision:

root / eise / eise.owl @ f269acd5

History | View | Annotate | Download (15.632 KB)

1
<?xml version="1.0"?>
2

    
3
<!--
4
This file is part of EISE (embodied interaction in smart environments) ontology.
5

    
6
Copyright(c) Norman Koester
7
https://openresearch.cit-ec.de/projects/embodied-interaction-ontology
8

    
9
This file may be licensed under the terms of of the
10
GNU General Public License Version 3 (the ``GPL''),
11
or (at your option) any later version.
12

    
13
Software distributed under the License is distributed
14
on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
15
express or implied. See the GPL for the specific language
16
governing rights and limitations.
17

    
18
You should have received a copy of the GPL along with this
19
program. If not, go to http://www.gnu.org/licenses/gpl.html
20
or write to the Free Software Foundation, Inc.,
21
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22

    
23
The development of this software was supported by the
24
Excellence Cluster EXC 277 Cognitive Interaction Technology.
25
The Excellence Cluster EXC 277 is a grant of the Deutsche
26
Forschungsgemeinschaft (DFG) in the context of the German
27
Excellence Initiative.
28
-->
29
<!DOCTYPE rdf:RDF [
30
    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
31
    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
32
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
33
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
34
    <!ENTITY interaction "http://www.cit-ec.de/csra/interaction#" >
35
    <!ENTITY ont "http://www.co-ode.org/ontologies/ont.owl#" >
36
    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
37
    <!ENTITY eise "https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#" >
38
]>
39

    
40

    
41
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
42
     xml:base="http://www.w3.org/2002/07/owl"
43
     xmlns:ont="http://www.co-ode.org/ontologies/ont.owl#"
44
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
45
     xmlns:owl="http://www.w3.org/2002/07/owl#"
46
     xmlns:interaction="http://www.cit-ec.de/csra/interaction#"
47
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
48
     xmlns:eise="https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#"
49
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
50
     xmlns:dc="http://purl.org/dc/elements/1.1/">
51
    <Ontology rdf:about="https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl">
52
        <dc:date rdf:datatype="&xsd;date">Date: 2016/02/17 15:00:00</dc:date>
53
        <rdfs:comment>An ontology describing embodied interaction in smart environments.</rdfs:comment>
54
        <dc:creator>Norman Koester</dc:creator>
55
        <imports rdf:resource="http://purl.oclc.org/NET/ssnx/ssn"/>
56
        <imports rdf:resource="http://www.w3.org/2006/time"/>
57
        <versionIRI rdf:resource="https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/revisions/0.0.1/entry/eise/eise.owl"/>
58
    </Ontology>
59
    
60

    
61

    
62
    <!-- 
63
    ///////////////////////////////////////////////////////////////////////////////////////
64
    //
65
    // Object Properties
66
    //
67
    ///////////////////////////////////////////////////////////////////////////////////////
68
     -->
69

    
70
    
71

    
72

    
73
    <!-- http://www.co-ode.org/ontologies/ont.owl#isAt -->
74

    
75
    <ObjectProperty rdf:about="&ont;isAt">
76
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Object"/>
77
        <rdfs:range rdf:resource="&eise;Location"/>
78
    </ObjectProperty>
79
    
80

    
81

    
82
    <!-- http://www.co-ode.org/ontologies/ont.owl#participatesIn -->
83

    
84
    <ObjectProperty rdf:about="&ont;participatesIn">
85
        <rdfs:range rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Action"/>
86
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Object"/>
87
    </ObjectProperty>
88
    
89

    
90

    
91
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#createTime -->
92

    
93
    <ObjectProperty rdf:about="&eise;createTime">
94
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
95
        <rdfs:domain rdf:resource="&eise;Metadata"/>
96
        <rdfs:range>
97
            <Restriction>
98
                <onProperty rdf:resource="http://www.w3.org/2006/time#xsdDateTime"/>
99
                <qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
100
                <onDataRange rdf:resource="&xsd;dateTime"/>
101
            </Restriction>
102
        </rdfs:range>
103
    </ObjectProperty>
104
    
105

    
106

    
107
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#happensAt -->
108

    
109
    <ObjectProperty rdf:about="&eise;happensAt">
110
        <rdfs:domain rdf:resource="&ont;Interaction"/>
111
        <rdfs:range rdf:resource="&eise;Location"/>
112
    </ObjectProperty>
113
    
114

    
115

    
116
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#hasActuator -->
117

    
118
    <ObjectProperty rdf:about="&eise;hasActuator">
119
        <rdfs:range rdf:resource="&eise;Actuator"/>
120
        <rdfs:domain rdf:resource="&eise;ArtificialAgent"/>
121
    </ObjectProperty>
122
    
123

    
124

    
125
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#hasMetadata -->
126

    
127
    <ObjectProperty rdf:about="&eise;hasMetadata">
128
        <rdfs:range rdf:resource="&eise;Metadata"/>
129
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
130
    </ObjectProperty>
131
    
132

    
133

    
134
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#hasSensor -->
135

    
136
    <ObjectProperty rdf:about="&eise;hasSensor">
137
        <rdfs:range rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#Sensor"/>
138
        <rdfs:domain rdf:resource="&eise;ArtificialAgent"/>
139
    </ObjectProperty>
140
    
141

    
142

    
143
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#metadataProperty -->
144

    
145
    <ObjectProperty rdf:about="&eise;metadataProperty"/>
146
    
147

    
148

    
149
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#receiveTime -->
150

    
151
    <ObjectProperty rdf:about="&eise;receiveTime">
152
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
153
        <rdfs:domain rdf:resource="&eise;Metadata"/>
154
        <rdfs:range>
155
            <Restriction>
156
                <onProperty rdf:resource="http://www.w3.org/2006/time#xsdDateTime"/>
157
                <qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
158
                <onDataRange rdf:resource="&xsd;dateTime"/>
159
            </Restriction>
160
        </rdfs:range>
161
    </ObjectProperty>
162
    
163

    
164

    
165
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#sendTime -->
166

    
167
    <ObjectProperty rdf:about="&eise;sendTime">
168
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
169
        <rdfs:domain rdf:resource="&eise;Metadata"/>
170
        <rdfs:range>
171
            <Restriction>
172
                <onProperty rdf:resource="http://www.w3.org/2006/time#xsdDateTime"/>
173
                <qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
174
                <onDataRange rdf:resource="&xsd;dateTime"/>
175
            </Restriction>
176
        </rdfs:range>
177
    </ObjectProperty>
178
    
179

    
180

    
181
    <!-- 
182
    ///////////////////////////////////////////////////////////////////////////////////////
183
    //
184
    // Data properties
185
    //
186
    ///////////////////////////////////////////////////////////////////////////////////////
187
     -->
188

    
189
    
190

    
191

    
192
    <!-- http://www.co-ode.org/ontologies/ont.owl#name -->
193

    
194
    <DatatypeProperty rdf:about="&ont;name">
195
        <rdfs:domain rdf:resource="&eise;Location"/>
196
        <rdfs:subPropertyOf rdf:resource="&eise;locationProperty"/>
197
    </DatatypeProperty>
198
    
199

    
200

    
201
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#RSBeventProperty -->
202

    
203
    <DatatypeProperty rdf:about="&eise;RSBeventProperty"/>
204
    
205

    
206

    
207
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#cause -->
208

    
209
    <DatatypeProperty rdf:about="&eise;cause">
210
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
211
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
212
    </DatatypeProperty>
213
    
214

    
215

    
216
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#dateOfBirth -->
217

    
218
    <DatatypeProperty rdf:about="&eise;dateOfBirth">
219
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
220
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
221
    </DatatypeProperty>
222
    
223

    
224

    
225
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#familyName -->
226

    
227
    <DatatypeProperty rdf:about="&eise;familyName">
228
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
229
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
230
    </DatatypeProperty>
231
    
232

    
233

    
234
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#gender -->
235

    
236
    <DatatypeProperty rdf:about="&eise;gender">
237
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
238
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
239
    </DatatypeProperty>
240
    
241

    
242

    
243
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#givenName -->
244

    
245
    <DatatypeProperty rdf:about="&eise;givenName">
246
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
247
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
248
    </DatatypeProperty>
249
    
250

    
251

    
252
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#height -->
253

    
254
    <DatatypeProperty rdf:about="&eise;height">
255
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
256
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
257
    </DatatypeProperty>
258
    
259

    
260

    
261
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#id -->
262

    
263
    <DatatypeProperty rdf:about="&eise;id">
264
        <rdfs:domain rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Agent"/>
265
        <rdfs:subPropertyOf rdf:resource="&eise;personProperty"/>
266
    </DatatypeProperty>
267
    
268

    
269

    
270
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#locationProperty -->
271

    
272
    <DatatypeProperty rdf:about="&eise;locationProperty"/>
273
    
274

    
275

    
276
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#payload -->
277

    
278
    <DatatypeProperty rdf:about="&eise;payload">
279
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
280
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
281
    </DatatypeProperty>
282
    
283

    
284

    
285
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#personProperty -->
286

    
287
    <DatatypeProperty rdf:about="&eise;personProperty"/>
288
    
289

    
290

    
291
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#scope -->
292

    
293
    <DatatypeProperty rdf:about="&eise;scope">
294
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
295
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
296
    </DatatypeProperty>
297
    
298

    
299

    
300
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#type -->
301

    
302
    <DatatypeProperty rdf:about="&eise;type"/>
303
    
304

    
305

    
306
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#uuid -->
307

    
308
    <DatatypeProperty rdf:about="&eise;uuid">
309
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
310
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
311
    </DatatypeProperty>
312
    
313

    
314

    
315
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#wireschema -->
316

    
317
    <DatatypeProperty rdf:about="&eise;wireschema">
318
        <rdfs:domain rdf:resource="&eise;RSBEvent"/>
319
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
320
    </DatatypeProperty>
321
    
322

    
323

    
324
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#x -->
325

    
326
    <DatatypeProperty rdf:about="&eise;x">
327
        <rdfs:domain rdf:resource="&ont;Position"/>
328
        <rdfs:subPropertyOf rdf:resource="&eise;locationProperty"/>
329
    </DatatypeProperty>
330
    
331

    
332

    
333
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#y -->
334

    
335
    <DatatypeProperty rdf:about="&eise;y">
336
        <rdfs:domain rdf:resource="&ont;Position"/>
337
        <rdfs:subPropertyOf rdf:resource="&eise;locationProperty"/>
338
    </DatatypeProperty>
339
    
340

    
341

    
342
    <!-- 
343
    ///////////////////////////////////////////////////////////////////////////////////////
344
    //
345
    // Classes
346
    //
347
    ///////////////////////////////////////////////////////////////////////////////////////
348
     -->
349

    
350
    
351

    
352

    
353
    <!-- http://www.co-ode.org/ontologies/ont.owl#Area -->
354

    
355
    <Class rdf:about="&ont;Area">
356
        <rdfs:subClassOf rdf:resource="&eise;Location"/>
357
    </Class>
358
    
359

    
360

    
361
    <!-- http://www.co-ode.org/ontologies/ont.owl#Conversation -->
362

    
363
    <Class rdf:about="&ont;Conversation">
364
        <rdfs:subClassOf rdf:resource="&ont;Interaction"/>
365
    </Class>
366
    
367

    
368

    
369
    <!-- http://www.co-ode.org/ontologies/ont.owl#Interaction -->
370

    
371
    <Class rdf:about="&ont;Interaction">
372
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Action"/>
373
    </Class>
374
    
375

    
376

    
377
    <!-- http://www.co-ode.org/ontologies/ont.owl#Position -->
378

    
379
    <Class rdf:about="&ont;Position">
380
        <rdfs:subClassOf rdf:resource="&eise;Location"/>
381
    </Class>
382
    
383

    
384

    
385
    <!-- http://www.co-ode.org/ontologies/ont.owl#Room -->
386

    
387
    <Class rdf:about="&ont;Room">
388
        <rdfs:subClassOf rdf:resource="&ont;Area"/>
389
    </Class>
390
    
391

    
392

    
393
    <!-- http://www.co-ode.org/ontologies/ont.owl#Topic -->
394

    
395
    <Class rdf:about="&ont;Topic">
396
        <rdfs:subClassOf rdf:resource="&ont;Interaction"/>
397
    </Class>
398
    
399

    
400

    
401
    <!-- http://www.co-ode.org/ontologies/ont.owl#Utterance -->
402

    
403
    <Class rdf:about="&ont;Utterance">
404
        <rdfs:subClassOf rdf:resource="&ont;Conversation"/>
405
    </Class>
406
    
407

    
408

    
409
    <!-- http://www.w3.org/2006/time#xsdDateTime -->
410

    
411
    <Class rdf:about="http://www.w3.org/2006/time#xsdDateTime"/>
412
    
413

    
414

    
415
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#Actuator -->
416

    
417
    <Class rdf:about="&eise;Actuator">
418
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#PhysicalObject"/>
419
    </Class>
420
    
421

    
422

    
423
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#ArtificialAgent -->
424

    
425
    <Class rdf:about="&eise;ArtificialAgent">
426
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#PhysicalAgent"/>
427
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#PhysicalObject"/>
428
    </Class>
429
    
430

    
431

    
432
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#Location -->
433

    
434
    <Class rdf:about="&eise;Location">
435
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#SpaceRegion"/>
436
    </Class>
437
    
438

    
439

    
440
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#Metadata -->
441

    
442
    <Class rdf:about="&eise;Metadata">
443
        <rdfs:subClassOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Abstract"/>
444
    </Class>
445
    
446

    
447

    
448
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#RSBEvent -->
449

    
450
    <Class rdf:about="&eise;RSBEvent">
451
        <rdfs:subClassOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#ObservationValue"/>
452
    </Class>
453
</rdf:RDF>
454

    
455

    
456

    
457
<!-- Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net -->
458