To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / onto / doc / event.rdf @ 0:1e44d666ced1

History | View | Annotate | Download (8.11 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<rdf:RDF
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:event="http://purl.org/NET/c4dm/event.owl#"
5
   xmlns:foaf="http://xmlns.com/foaf/0.1/"
6
   xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
7
   xmlns:owl="http://www.w3.org/2002/07/owl#"
8
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10
   xmlns:time="http://www.w3.org/2006/time#"
11
   xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#" xml:base="http://purl.org/NET/c4dm/event.owl#">
12
  <owl:Ontology rdf:about="">
13
    <dc:date>$Date: 2007/06/29 15:25:11 $</dc:date>
14
    <dc:description>
15
		This ontology deals with the notion of reified events---
16
		events seen as first-class objects. It only defines one
17
		concept: Event, which may have agents (actively
18
		participating), factors (passively participating), products,
19
		and a location in space and time. 
20

    
21
		Regarding the ontological status of event tokens, they are seen
22
		as the way cognitive agents classify space/time regions
23
	</dc:description>
24
    <dc:title>The Event ontology</dc:title>
25
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
26
    <rdfs:label>The Event ontology</rdfs:label>
27
    <owl:imports rdf:resource="http://www.w3.org/2006/time"/>
28
    <owl:versionInfo>Revision: 1.01</owl:versionInfo>
29
    <foaf:maker rdf:resource="http://moustaki.org/foaf.rdf#moustaki"/>
30
  </owl:Ontology>
31
  <foaf:Person rdf:about="http://moustaki.org/foaf.rdf#moustaki"/>
32
  <owl:Class rdf:about="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
33
  <owl:Class rdf:about="http://xmlns.com/foaf/0.1/Person"/>
34
  <owl:Class rdf:about="http://xmlns.com/foaf/0.1/Agent"/>
35
  <owl:DatatypeProperty rdf:about="../../dc/elements/1.1/date"/>
36
  <owl:DatatypeProperty rdf:about="../../dc/elements/1.1/title"/>
37
  <owl:DatatypeProperty rdf:about="../../dc/elements/1.1/description"/>
38
  <owl:ObjectProperty rdf:about="http://xmlns.com/foaf/0.1/maker"/>
39
  <owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
40
  <owl:Class rdf:about="#Event">
41
    <rdfs:comment>
42
		An arbitrary classification of a space/time region, by a 
43
		cognitive agent. An event may have actively participating agents,
44
		passive factors, products, and a location in space/time.
45
		</rdfs:comment>
46
    <rdfs:label>Event</rdfs:label>
47
    <vs:term_status>stable</vs:term_status>
48
  </owl:Class>
49
  <owl:Class rdf:about="#Product">
50
    <rdfs:comment>
51
		Everything produced by an event
52
		</rdfs:comment>
53
    <rdfs:label>Product</rdfs:label>
54
    <owl:equivalentClass>
55
      <owl:Restriction>
56
        <owl:onProperty rdf:resource="#producedIn"/>
57
        <owl:someValuesFrom rdf:resource="#Event"/>
58
      </owl:Restriction>
59
    </owl:equivalentClass>
60
    <vs:term_status>stable</vs:term_status>
61
  </owl:Class>
62
  <owl:Class rdf:about="#Factor">
63
    <rdfs:comment>
64
		Everything used as a factor in an event
65
		</rdfs:comment>
66
    <rdfs:label>Factor</rdfs:label>
67
    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
68
    <owl:equivalentClass>
69
      <owl:Restriction>
70
        <owl:onProperty rdf:resource="#isFactorOf"/>
71
        <owl:someValuesFrom rdf:resource="#Event"/>
72
      </owl:Restriction>
73
    </owl:equivalentClass>
74
    <vs:term_status>stable</vs:term_status>
75
  </owl:Class>
76
  <owl:ObjectProperty rdf:about="#agent">
77
    <rdfs:comment>
78
		Relates an event to an active agent (a person, a computer, ... :-) )
79
		</rdfs:comment>
80
    <rdfs:domain rdf:resource="#Event"/>
81
    <rdfs:label>agent</rdfs:label>
82
    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
83
    <owl:equivalentProperty rdf:resource="#hasAgent"/>
84
    <owl:inverseOf rdf:resource="#isAgentIn"/>
85
    <vs:term_status>stable</vs:term_status>
86
  </owl:ObjectProperty>
87
  <owl:ObjectProperty rdf:about="#factor">
88
    <rdfs:comment>
89
		Relates an event to a passive factor (a tool, an instrument, an abstract cause...)
90
		</rdfs:comment>
91
    <rdfs:domain rdf:resource="#Event"/>
92
    <rdfs:label>factor</rdfs:label>
93
    <owl:equivalentProperty rdf:resource="#hasFactor"/>
94
    <owl:inverseOf rdf:resource="#isFactorOf"/>
95
    <vs:term_status>stable</vs:term_status>
96
  </owl:ObjectProperty>
97
  <owl:DatatypeProperty rdf:about="#literal_factor">
98
    <rdfs:comment>
99
		Relates an event to a factor which can be described as a literal. This property
100
		should not be used as-is, but should be subsumed by other, more specific, properties
101
		(like an hypothetic :weatherCelsius, linking an event to a temperature).
102
		</rdfs:comment>
103
    <rdfs:domain rdf:resource="#Event"/>
104
    <rdfs:label>literal factor</rdfs:label>
105
    <owl:equivalentProperty rdf:resource="#hasLiteralFactor"/>
106
    <vs:term_status>stable</vs:term_status>
107
  </owl:DatatypeProperty>
108
  <owl:ObjectProperty rdf:about="#product">
109
    <rdfs:comment>
110
		Relates an event to something produced during the event---a sound, a pie, whatever...
111
		</rdfs:comment>
112
    <rdfs:domain rdf:resource="#Event"/>
113
    <rdfs:label>product</rdfs:label>
114
    <owl:equivalentProperty rdf:resource="#hasProduct"/>
115
    <owl:inverseOf rdf:resource="#producedIn"/>
116
    <vs:term_status>stable</vs:term_status>
117
  </owl:ObjectProperty>
118
  <owl:ObjectProperty rdf:about="#sub_event">
119
    <rdfs:comment>
120
		This property provides a way to split a complex event (for example, a performance involving several 
121
		musicians) into simpler ones (one event per musician).
122
		</rdfs:comment>
123
    <rdfs:domain rdf:resource="#Event"/>
124
    <rdfs:label>sub-event</rdfs:label>
125
    <rdfs:range rdf:resource="#Event"/>
126
    <owl:equivalentProperty rdf:resource="#hasSubEvent"/>
127
    <vs:term_status>stable</vs:term_status>
128
  </owl:ObjectProperty>
129
  <owl:FunctionalProperty rdf:about="#time">
130
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
131
    <rdfs:comment>
132
		Relates an event to a time object, classifying a time region (either instantaneous or having an extent).
133
		By using the Timeline ontology here, you can define event happening on a recorded track or on any 
134
		media with a temporal extent.
135
		</rdfs:comment>
136
    <rdfs:domain rdf:resource="#Event"/>
137
    <rdfs:label>time</rdfs:label>
138
    <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
139
    <vs:term_status>stable</vs:term_status>
140
  </owl:FunctionalProperty>
141
  <owl:FunctionalProperty rdf:about="#place">
142
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
143
    <rdfs:comment>
144
		Relates an event to a spatial object.
145
		</rdfs:comment>
146
    <rdfs:domain rdf:resource="#Event"/>
147
    <rdfs:label>place</rdfs:label>
148
    <rdfs:range rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
149
    <vs:term_status>stable</vs:term_status>
150
  </owl:FunctionalProperty>
151
  <owl:ObjectProperty rdf:about="#isAgentIn">
152
    <rdfs:label>agent in</rdfs:label>
153
    <owl:equivalentProperty rdf:resource="#agent_in"/>
154
    <vs:term_status>deprecated</vs:term_status>
155
  </owl:ObjectProperty>
156
  <owl:ObjectProperty rdf:about="#isFactorOf">
157
    <rdfs:label>factor of</rdfs:label>
158
    <owl:equivalentProperty rdf:resource="#factor_of"/>
159
    <vs:term_status>deprecated</vs:term_status>
160
  </owl:ObjectProperty>
161
  <owl:ObjectProperty rdf:about="#producedIn">
162
    <rdfs:label>produced in</rdfs:label>
163
    <owl:equivalentProperty rdf:resource="#produced_in"/>
164
    <vs:term_status>deprecated</vs:term_status>
165
  </owl:ObjectProperty>
166
  <owl:ObjectProperty rdf:about="#hasFactor">
167
    <vs:term_status>deprecated</vs:term_status>
168
  </owl:ObjectProperty>
169
  <owl:ObjectProperty rdf:about="#hasAgent">
170
    <vs:term_status>deprecated</vs:term_status>
171
  </owl:ObjectProperty>
172
  <owl:ObjectProperty rdf:about="#hasProduct">
173
    <vs:term_status>deprecated</vs:term_status>
174
  </owl:ObjectProperty>
175
  <owl:DatatypeProperty rdf:about="#hasLiteralFactor">
176
    <vs:term_status>deprecated</vs:term_status>
177
  </owl:DatatypeProperty>
178
  <owl:ObjectProperty rdf:about="#agent_in">
179
    <vs:term_status>stable</vs:term_status>
180
  </owl:ObjectProperty>
181
  <owl:ObjectProperty rdf:about="#factor_of">
182
    <vs:term_status>stable</vs:term_status>
183
  </owl:ObjectProperty>
184
  <owl:ObjectProperty rdf:about="#produced_in">
185
    <vs:term_status>stable</vs:term_status>
186
  </owl:ObjectProperty>
187
  <owl:ObjectProperty rdf:about="#hasSubEvent">
188
    <vs:term_status>deprecated</vs:term_status>
189
  </owl:ObjectProperty>
190
</rdf:RDF>