annotate onto/doc/event.rdf @ 19:1e79ce3ff5f5 tip

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