Revision f269acd5

View differences:

eise/eise.owl
1 1
<?xml version="1.0"?>
2 2

  
3

  
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
-->
4 29
<!DOCTYPE rdf:RDF [
5 30
    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
6 31
    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
7 32
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
8
    <!ENTITY csra "http://www.cit-ec.de/csra/interaction" >
9 33
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
10 34
    <!ENTITY interaction "http://www.cit-ec.de/csra/interaction#" >
11 35
    <!ENTITY ont "http://www.co-ode.org/ontologies/ont.owl#" >
......
16 40

  
17 41
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
18 42
     xml:base="http://www.w3.org/2002/07/owl"
19
     xmlns:csra="http://www.cit-ec.de/csra/interaction"
20 43
     xmlns:ont="http://www.co-ode.org/ontologies/ont.owl#"
21 44
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
22 45
     xmlns:owl="http://www.w3.org/2002/07/owl#"
23
     xmlns:interaction="&csra;#"
46
     xmlns:interaction="http://www.cit-ec.de/csra/interaction#"
24 47
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
25 48
     xmlns:eise="https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#"
26 49
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
27 50
     xmlns:dc="http://purl.org/dc/elements/1.1/">
28 51
    <Ontology rdf:about="https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl">
29 52
        <dc:date rdf:datatype="&xsd;date">Date: 2016/02/17 15:00:00</dc:date>
30
        <rdfs:comment>TODO</rdfs:comment>
53
        <rdfs:comment>An ontology describing embodied interaction in smart environments.</rdfs:comment>
31 54
        <dc:creator>Norman Koester</dc:creator>
32 55
        <imports rdf:resource="http://purl.oclc.org/NET/ssnx/ssn"/>
33 56
        <imports rdf:resource="http://www.w3.org/2006/time"/>
......
68 91
    <!-- https://opensource.cit-ec.de/projects/embodied-interaction-ontology/repository/entry/eise/eise.owl#createTime -->
69 92

  
70 93
    <ObjectProperty rdf:about="&eise;createTime">
94
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
71 95
        <rdfs:domain rdf:resource="&eise;Metadata"/>
72
        <rdfs:subPropertyOf rdf:resource="&eise;metadataProperty"/>
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>
73 103
    </ObjectProperty>
74 104
    
75 105

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

  
121 151
    <ObjectProperty rdf:about="&eise;receiveTime">
152
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
122 153
        <rdfs:domain rdf:resource="&eise;Metadata"/>
123
        <rdfs:subPropertyOf rdf:resource="&eise;metadataProperty"/>
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>
124 161
    </ObjectProperty>
125 162
    
126 163

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

  
130 167
    <ObjectProperty rdf:about="&eise;sendTime">
131
        <rdfs:range rdf:resource="http://www.w3.org/2006/time#xsdDateTime"/>
168
        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
132 169
        <rdfs:domain rdf:resource="&eise;Metadata"/>
133
        <rdfs:subPropertyOf rdf:resource="&eise;metadataProperty"/>
134 170
        <rdfs:range>
135 171
            <Restriction>
136 172
                <onProperty rdf:resource="http://www.w3.org/2006/time#xsdDateTime"/>
137
                <allValuesFrom rdf:resource="&xsd;dateTime"/>
173
                <qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
174
                <onDataRange rdf:resource="&xsd;dateTime"/>
138 175
            </Restriction>
139 176
        </rdfs:range>
140 177
    </ObjectProperty>
......
176 213
    
177 214

  
178 215

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

  
181
    <DatatypeProperty rdf:about="&eise;createTime"/>
182
    
183

  
184

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

  
187 218
    <DatatypeProperty rdf:about="&eise;dateOfBirth">
......
242 273
    
243 274

  
244 275

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

  
247
    <DatatypeProperty rdf:about="&eise;metadataProperty">
248
        <rdfs:subPropertyOf rdf:resource="&eise;RSBeventProperty"/>
249
    </DatatypeProperty>
250
    
251

  
252

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

  
255 278
    <DatatypeProperty rdf:about="&eise;payload">
......
265 288
    
266 289

  
267 290

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

  
270
    <DatatypeProperty rdf:about="&eise;receiveTime"/>
271
    
272

  
273

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

  
276 293
    <DatatypeProperty rdf:about="&eise;scope">
......
280 297
    
281 298

  
282 299

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

  
285
    <DatatypeProperty rdf:about="&eise;sendTime"/>
286
    
287

  
288

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

  
291 302
    <DatatypeProperty rdf:about="&eise;type"/>
......
390 401
    <!-- http://www.co-ode.org/ontologies/ont.owl#Utterance -->
391 402

  
392 403
    <Class rdf:about="&ont;Utterance">
393
        <rdfs:subClassOf rdf:resource="&ont;Interaction"/>
404
        <rdfs:subClassOf rdf:resource="&ont;Conversation"/>
394 405
    </Class>
395 406
    
396 407

  
......
439 450
    <Class rdf:about="&eise;RSBEvent">
440 451
        <rdfs:subClassOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#ObservationValue"/>
441 452
    </Class>
442
    
443

  
444

  
445
    <!-- 
446
    ///////////////////////////////////////////////////////////////////////////////////////
447
    //
448
    // Individuals
449
    //
450
    ///////////////////////////////////////////////////////////////////////////////////////
451
     -->
452

  
453
    
454

  
455

  
456
    <!-- http://www.co-ode.org/ontologies/ont.owl#Kitchen -->
457

  
458
    <NamedIndividual rdf:about="&ont;Kitchen">
459
        <rdf:type rdf:resource="&ont;Room"/>
460
    </NamedIndividual>
461
    
462

  
463

  
464
    <!-- http://www.co-ode.org/ontologies/ont.owl#Norman -->
465

  
466
    <NamedIndividual rdf:about="&ont;Norman">
467
        <rdf:type rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Object"/>
468
        <rdf:type rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#Person"/>
469
        <eise:givenName>Norman</eise:givenName>
470
        <ont:isAt rdf:resource="&ont;Kitchen"/>
471
    </NamedIndividual>
472 453
</rdf:RDF>
473 454

  
474 455

  

Also available in: Unified diff