rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,13 +5,167 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://id.loc.gov/vocabulary/preservation/eventType/>
|
8
|
+
# #
|
9
|
+
# # Event Type
|
10
|
+
# #
|
11
|
+
# # Event Types are actions performed within or outside the repository that affect the long term preservation of digital objects.
|
8
12
|
# class PremisEventType < RDF::StrictVocabulary
|
13
|
+
# # @return [RDF::Vocabulary::Term]
|
14
|
+
# attr_reader :acc
|
15
|
+
#
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :app
|
18
|
+
#
|
19
|
+
# # @return [RDF::Vocabulary::Term]
|
20
|
+
# attr_reader :cap
|
21
|
+
#
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :com
|
24
|
+
#
|
25
|
+
# # @return [RDF::Vocabulary::Term]
|
26
|
+
# attr_reader :cop
|
27
|
+
#
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :cre
|
30
|
+
#
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :dea
|
33
|
+
#
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :dec
|
36
|
+
#
|
37
|
+
# # @return [RDF::Vocabulary::Term]
|
38
|
+
# attr_reader :del
|
39
|
+
#
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :der
|
42
|
+
#
|
43
|
+
# # @return [RDF::Vocabulary::Term]
|
44
|
+
# attr_reader :dig
|
45
|
+
#
|
46
|
+
# # @return [RDF::Vocabulary::Term]
|
47
|
+
# attr_reader :dis
|
48
|
+
#
|
49
|
+
# # @return [RDF::Vocabulary::Term]
|
50
|
+
# attr_reader :dsg
|
51
|
+
#
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :dsp
|
54
|
+
#
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :enc
|
57
|
+
#
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :exe
|
60
|
+
#
|
61
|
+
# # @return [RDF::Vocabulary::Term]
|
62
|
+
# attr_reader :exp
|
63
|
+
#
|
64
|
+
# # @return [RDF::Vocabulary::Term]
|
65
|
+
# attr_reader :ext
|
66
|
+
#
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :ffa
|
69
|
+
#
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :fil
|
72
|
+
#
|
73
|
+
# # @return [RDF::Vocabulary::Term]
|
74
|
+
# attr_reader :fix
|
75
|
+
#
|
76
|
+
# # @return [RDF::Vocabulary::Term]
|
77
|
+
# attr_reader :for
|
78
|
+
#
|
79
|
+
# # @return [RDF::Vocabulary::Term]
|
80
|
+
# attr_reader :ima
|
81
|
+
#
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :ine
|
84
|
+
#
|
85
|
+
# # @return [RDF::Vocabulary::Term]
|
86
|
+
# attr_reader :ing
|
87
|
+
#
|
88
|
+
# # @return [RDF::Vocabulary::Term]
|
89
|
+
# attr_reader :ins
|
90
|
+
#
|
91
|
+
# # @return [RDF::Vocabulary::Term]
|
92
|
+
# attr_reader :int
|
93
|
+
#
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :ipc
|
96
|
+
#
|
97
|
+
# # @return [RDF::Vocabulary::Term]
|
98
|
+
# attr_reader :ipm
|
99
|
+
#
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :ips
|
102
|
+
#
|
103
|
+
# # @return [RDF::Vocabulary::Term]
|
104
|
+
# attr_reader :mee
|
105
|
+
#
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :mem
|
108
|
+
#
|
109
|
+
# # @return [RDF::Vocabulary::Term]
|
110
|
+
# attr_reader :mes
|
111
|
+
#
|
112
|
+
# # @return [RDF::Vocabulary::Term]
|
113
|
+
# attr_reader :mig
|
114
|
+
#
|
115
|
+
# # @return [RDF::Vocabulary::Term]
|
116
|
+
# attr_reader :mod
|
117
|
+
#
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :nor
|
120
|
+
#
|
121
|
+
# # @return [RDF::Vocabulary::Term]
|
122
|
+
# attr_reader :pac
|
123
|
+
#
|
124
|
+
# # @return [RDF::Vocabulary::Term]
|
125
|
+
# attr_reader :poa
|
126
|
+
#
|
127
|
+
# # @return [RDF::Vocabulary::Term]
|
128
|
+
# attr_reader :prt
|
129
|
+
#
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :qua
|
132
|
+
#
|
133
|
+
# # @return [RDF::Vocabulary::Term]
|
134
|
+
# attr_reader :rec
|
135
|
+
#
|
136
|
+
# # @return [RDF::Vocabulary::Term]
|
137
|
+
# attr_reader :red
|
138
|
+
#
|
139
|
+
# # @return [RDF::Vocabulary::Term]
|
140
|
+
# attr_reader :ref
|
141
|
+
#
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :ren
|
144
|
+
#
|
145
|
+
# # @return [RDF::Vocabulary::Term]
|
146
|
+
# attr_reader :rep
|
147
|
+
#
|
148
|
+
# # @return [RDF::Vocabulary::Term]
|
149
|
+
# attr_reader :tra
|
150
|
+
#
|
151
|
+
# # @return [RDF::Vocabulary::Term]
|
152
|
+
# attr_reader :unp
|
153
|
+
#
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :unq
|
156
|
+
#
|
157
|
+
# # @return [RDF::Vocabulary::Term]
|
158
|
+
# attr_reader :val
|
159
|
+
#
|
160
|
+
# # @return [RDF::Vocabulary::Term]
|
161
|
+
# attr_reader :vir
|
162
|
+
#
|
9
163
|
# end
|
10
|
-
|
164
|
+
PremisEventType = Class.new(RDF::StrictVocabulary("http://id.loc.gov/vocabulary/preservation/eventType/")) do
|
11
165
|
|
12
166
|
# Ontology definition
|
13
167
|
ontology :"http://id.loc.gov/vocabulary/preservation/eventType/",
|
14
|
-
comment:
|
168
|
+
comment: " Event Types are actions performed within or outside the repository that affect the long term preservation of digital objects.".freeze,
|
15
169
|
label: "Event Type".freeze,
|
16
170
|
"mads:adminMetadata": [term(
|
17
171
|
"http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2010-06-01T00:00:01".freeze,
|
data/lib/rdf/vocab/prov.rb
CHANGED
@@ -5,16 +5,631 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/ns/prov#>
|
8
|
+
# #
|
9
|
+
# # W3C PROVenance Interchange
|
10
|
+
# #
|
11
|
+
# # This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/ Archives/Public/public-prov-comments/). All feedback is welcome.
|
12
|
+
# # @see http://www.w3.org/TR/prov-overview/
|
13
|
+
# # @see http://www.w3.org/TR/prov-o/#names-of-inverse-properties
|
8
14
|
# class PROV < RDF::StrictVocabulary
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :Accept
|
17
|
+
#
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :Activity
|
20
|
+
#
|
21
|
+
# # ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity.
|
22
|
+
# #
|
23
|
+
# # It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :ActivityInfluence
|
26
|
+
#
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :Agent
|
29
|
+
#
|
30
|
+
# # AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent.
|
31
|
+
# #
|
32
|
+
# # It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses.
|
33
|
+
# # @return [RDF::Vocabulary::Term]
|
34
|
+
# attr_reader :AgentInfluence
|
35
|
+
#
|
36
|
+
# # An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ].
|
37
|
+
# # @return [RDF::Vocabulary::Term]
|
38
|
+
# attr_reader :Association
|
39
|
+
#
|
40
|
+
# # An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ].
|
41
|
+
# # @return [RDF::Vocabulary::Term]
|
42
|
+
# attr_reader :Attribution
|
43
|
+
#
|
44
|
+
# # Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O.
|
45
|
+
# # @return [RDF::Vocabulary::Term]
|
46
|
+
# attr_reader :Bundle
|
47
|
+
#
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :Collection
|
50
|
+
#
|
51
|
+
# # An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ].
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :Communication
|
54
|
+
#
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :Contribute
|
57
|
+
#
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :Contributor
|
60
|
+
#
|
61
|
+
# # @return [RDF::Vocabulary::Term]
|
62
|
+
# attr_reader :Copyright
|
63
|
+
#
|
64
|
+
# # @return [RDF::Vocabulary::Term]
|
65
|
+
# attr_reader :Create
|
66
|
+
#
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :Creator
|
69
|
+
#
|
70
|
+
# # An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ].
|
71
|
+
# # @return [RDF::Vocabulary::Term]
|
72
|
+
# attr_reader :Delegation
|
73
|
+
#
|
74
|
+
# # An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ].
|
75
|
+
# #
|
76
|
+
# # The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply.
|
77
|
+
# # @return [RDF::Vocabulary::Term]
|
78
|
+
# attr_reader :Derivation
|
79
|
+
#
|
80
|
+
# # This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays.
|
81
|
+
# #
|
82
|
+
# # A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary.
|
83
|
+
# # @return [RDF::Vocabulary::Term]
|
84
|
+
# attr_reader :Dictionary
|
85
|
+
#
|
86
|
+
# # Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.
|
87
|
+
# # @return [RDF::Vocabulary::Term]
|
88
|
+
# attr_reader :DirectQueryService
|
89
|
+
#
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :EmptyCollection
|
92
|
+
#
|
93
|
+
# # @return [RDF::Vocabulary::Term]
|
94
|
+
# attr_reader :EmptyDictionary
|
95
|
+
#
|
96
|
+
# # An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ].
|
97
|
+
# # @return [RDF::Vocabulary::Term]
|
98
|
+
# attr_reader :End
|
99
|
+
#
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :Entity
|
102
|
+
#
|
103
|
+
# # It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses.
|
104
|
+
# #
|
105
|
+
# # EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :EntityInfluence
|
108
|
+
#
|
109
|
+
# # An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ].
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :Generation
|
112
|
+
#
|
113
|
+
# # Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable.
|
114
|
+
# #
|
115
|
+
# # An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable.
|
116
|
+
# # @return [RDF::Vocabulary::Term]
|
117
|
+
# attr_reader :Influence
|
118
|
+
#
|
119
|
+
# # @return [RDF::Vocabulary::Term]
|
120
|
+
# attr_reader :Insertion
|
121
|
+
#
|
122
|
+
# # An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous.
|
123
|
+
# # @return [RDF::Vocabulary::Term]
|
124
|
+
# attr_reader :InstantaneousEvent
|
125
|
+
#
|
126
|
+
# # An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ].
|
127
|
+
# # @return [RDF::Vocabulary::Term]
|
128
|
+
# attr_reader :Invalidation
|
129
|
+
#
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :KeyEntityPair
|
132
|
+
#
|
133
|
+
# # @return [RDF::Vocabulary::Term]
|
134
|
+
# attr_reader :Location
|
135
|
+
#
|
136
|
+
# # @return [RDF::Vocabulary::Term]
|
137
|
+
# attr_reader :Modify
|
138
|
+
#
|
139
|
+
# # @return [RDF::Vocabulary::Term]
|
140
|
+
# attr_reader :Organization
|
141
|
+
#
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :Person
|
144
|
+
#
|
145
|
+
# # There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :Plan
|
148
|
+
#
|
149
|
+
# # An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] .
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :PrimarySource
|
152
|
+
#
|
153
|
+
# # @return [RDF::Vocabulary::Term]
|
154
|
+
# attr_reader :Publish
|
155
|
+
#
|
156
|
+
# # @return [RDF::Vocabulary::Term]
|
157
|
+
# attr_reader :Publisher
|
158
|
+
#
|
159
|
+
# # An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ].
|
160
|
+
# # @return [RDF::Vocabulary::Term]
|
161
|
+
# attr_reader :Quotation
|
162
|
+
#
|
163
|
+
# # @return [RDF::Vocabulary::Term]
|
164
|
+
# attr_reader :Removal
|
165
|
+
#
|
166
|
+
# # @return [RDF::Vocabulary::Term]
|
167
|
+
# attr_reader :Replace
|
168
|
+
#
|
169
|
+
# # An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ].
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :Revision
|
172
|
+
#
|
173
|
+
# # @return [RDF::Vocabulary::Term]
|
174
|
+
# attr_reader :RightsAssignment
|
175
|
+
#
|
176
|
+
# # @return [RDF::Vocabulary::Term]
|
177
|
+
# attr_reader :RightsHolder
|
178
|
+
#
|
179
|
+
# # @return [RDF::Vocabulary::Term]
|
180
|
+
# attr_reader :Role
|
181
|
+
#
|
182
|
+
# # Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.
|
183
|
+
# # @return [RDF::Vocabulary::Term]
|
184
|
+
# attr_reader :ServiceDescription
|
185
|
+
#
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :SoftwareAgent
|
188
|
+
#
|
189
|
+
# # An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] .
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :Start
|
192
|
+
#
|
193
|
+
# # @return [RDF::Vocabulary::Term]
|
194
|
+
# attr_reader :Submit
|
195
|
+
#
|
196
|
+
# # An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ].
|
197
|
+
# # @return [RDF::Vocabulary::Term]
|
198
|
+
# attr_reader :Usage
|
199
|
+
#
|
200
|
+
# # An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity.
|
201
|
+
# # @return [RDF::Vocabulary::Term]
|
202
|
+
# attr_reader :actedOnBehalfOf
|
203
|
+
#
|
204
|
+
# # @return [RDF::Vocabulary::Term]
|
205
|
+
# attr_reader :activity
|
206
|
+
#
|
207
|
+
# # @return [RDF::Vocabulary::Term]
|
208
|
+
# attr_reader :agent
|
209
|
+
#
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :alternateOf
|
212
|
+
#
|
213
|
+
# # @return [RDF::Vocabulary::Term]
|
214
|
+
# attr_reader :aq
|
215
|
+
#
|
216
|
+
# # prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described. When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.
|
217
|
+
# # @return [RDF::Vocabulary::Term]
|
218
|
+
# attr_reader :asInBundle
|
219
|
+
#
|
220
|
+
# # This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.
|
221
|
+
# #
|
222
|
+
# # The Location of any resource.
|
223
|
+
# # @return [RDF::Vocabulary::Term]
|
224
|
+
# attr_reader :atLocation
|
225
|
+
#
|
226
|
+
# # The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.
|
227
|
+
# # @return [RDF::Vocabulary::Term]
|
228
|
+
# attr_reader :atTime
|
229
|
+
#
|
230
|
+
# # Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users.
|
231
|
+
# # @return [RDF::Vocabulary::Term]
|
232
|
+
# attr_reader :category
|
233
|
+
#
|
234
|
+
# # Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.
|
235
|
+
# # @return [RDF::Vocabulary::Term]
|
236
|
+
# attr_reader :component
|
237
|
+
#
|
238
|
+
# # A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.
|
239
|
+
# # @return [RDF::Vocabulary::Term]
|
240
|
+
# attr_reader :constraints
|
241
|
+
#
|
242
|
+
# # A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.
|
243
|
+
# # @return [RDF::Vocabulary::Term]
|
244
|
+
# attr_reader :definition
|
245
|
+
#
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :derivedByInsertionFrom
|
248
|
+
#
|
249
|
+
# # @return [RDF::Vocabulary::Term]
|
250
|
+
# attr_reader :derivedByRemovalFrom
|
251
|
+
#
|
252
|
+
# # relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service).
|
253
|
+
# # @return [RDF::Vocabulary::Term]
|
254
|
+
# attr_reader :describesService
|
255
|
+
#
|
256
|
+
# # @return [RDF::Vocabulary::Term]
|
257
|
+
# attr_reader :dictionary
|
258
|
+
#
|
259
|
+
# # A reference to the principal section of the PROV-DM document that describes this concept.
|
260
|
+
# # @return [RDF::Vocabulary::Term]
|
261
|
+
# attr_reader :dm
|
262
|
+
#
|
263
|
+
# # A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.
|
264
|
+
# # @return [RDF::Vocabulary::Term]
|
265
|
+
# attr_reader :editorialNote
|
266
|
+
#
|
267
|
+
# # When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.
|
268
|
+
# # @return [RDF::Vocabulary::Term]
|
269
|
+
# attr_reader :editorsDefinition
|
270
|
+
#
|
271
|
+
# # The time at which an activity ended. See also prov:startedAtTime.
|
272
|
+
# # @return [RDF::Vocabulary::Term]
|
273
|
+
# attr_reader :endedAtTime
|
274
|
+
#
|
275
|
+
# # @return [RDF::Vocabulary::Term]
|
276
|
+
# attr_reader :entity
|
277
|
+
#
|
278
|
+
# # @return [RDF::Vocabulary::Term]
|
279
|
+
# attr_reader :generated
|
280
|
+
#
|
281
|
+
# # The time at which an entity was completely created and is available for use.
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :generatedAtTime
|
284
|
+
#
|
285
|
+
# # This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.
|
286
|
+
# #
|
287
|
+
# # The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).
|
288
|
+
# # @return [RDF::Vocabulary::Term]
|
289
|
+
# attr_reader :hadActivity
|
290
|
+
#
|
291
|
+
# # @return [RDF::Vocabulary::Term]
|
292
|
+
# attr_reader :hadDictionaryMember
|
293
|
+
#
|
294
|
+
# # The _optional_ Generation involved in an Entity's Derivation.
|
295
|
+
# # @return [RDF::Vocabulary::Term]
|
296
|
+
# attr_reader :hadGeneration
|
297
|
+
#
|
298
|
+
# # @return [RDF::Vocabulary::Term]
|
299
|
+
# attr_reader :hadMember
|
300
|
+
#
|
301
|
+
# # The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.
|
302
|
+
# # @return [RDF::Vocabulary::Term]
|
303
|
+
# attr_reader :hadPlan
|
304
|
+
#
|
305
|
+
# # @return [RDF::Vocabulary::Term]
|
306
|
+
# attr_reader :hadPrimarySource
|
307
|
+
#
|
308
|
+
# # This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.
|
309
|
+
# #
|
310
|
+
# # The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].
|
311
|
+
# # @return [RDF::Vocabulary::Term]
|
312
|
+
# attr_reader :hadRole
|
313
|
+
#
|
314
|
+
# # The _optional_ Usage involved in an Entity's Derivation.
|
315
|
+
# # @return [RDF::Vocabulary::Term]
|
316
|
+
# attr_reader :hadUsage
|
317
|
+
#
|
318
|
+
# # Indicates anchor URI for a potentially dynamic resource instance.
|
319
|
+
# # @return [RDF::Vocabulary::Term]
|
320
|
+
# attr_reader :has_anchor
|
321
|
+
#
|
322
|
+
# # Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource.
|
323
|
+
# # @return [RDF::Vocabulary::Term]
|
324
|
+
# attr_reader :has_provenance
|
325
|
+
#
|
326
|
+
# # Indicates a provenance query service that can access provenance related to its subject or anchor resource.
|
327
|
+
# # @return [RDF::Vocabulary::Term]
|
328
|
+
# attr_reader :has_query_service
|
329
|
+
#
|
330
|
+
# # @return [RDF::Vocabulary::Term]
|
331
|
+
# attr_reader :influenced
|
332
|
+
#
|
333
|
+
# # Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used.
|
334
|
+
# # @return [RDF::Vocabulary::Term]
|
335
|
+
# attr_reader :influencer
|
336
|
+
#
|
337
|
+
# # @return [RDF::Vocabulary::Term]
|
338
|
+
# attr_reader :insertedKeyEntityPair
|
339
|
+
#
|
340
|
+
# # @return [RDF::Vocabulary::Term]
|
341
|
+
# attr_reader :invalidated
|
342
|
+
#
|
343
|
+
# # The time at which an entity was invalidated (i.e., no longer usable).
|
344
|
+
# # @return [RDF::Vocabulary::Term]
|
345
|
+
# attr_reader :invalidatedAtTime
|
346
|
+
#
|
347
|
+
# # PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.
|
348
|
+
# # @return [RDF::Vocabulary::Term]
|
349
|
+
# attr_reader :inverse
|
350
|
+
#
|
351
|
+
# # prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle. prov:asInBundle is used to cite the Bundle in which the generalization was mentioned.
|
352
|
+
# # @return [RDF::Vocabulary::Term]
|
353
|
+
# attr_reader :mentionOf
|
354
|
+
#
|
355
|
+
# # A reference to the principal section of the PROV-DM document that describes this concept.
|
356
|
+
# #
|
357
|
+
# # A reference to the principal section of the PROV-M document that describes this concept.
|
358
|
+
# # @return [RDF::Vocabulary::Term]
|
359
|
+
# attr_reader :n
|
360
|
+
#
|
361
|
+
# # The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.
|
362
|
+
# # @return [RDF::Vocabulary::Term]
|
363
|
+
# attr_reader :order
|
364
|
+
#
|
365
|
+
# # @return [RDF::Vocabulary::Term]
|
366
|
+
# attr_reader :pairEntity
|
367
|
+
#
|
368
|
+
# # @return [RDF::Vocabulary::Term]
|
369
|
+
# attr_reader :pairKey
|
370
|
+
#
|
371
|
+
# # Relates a resource to a provenance pingback service that may receive additional provenance links about the resource.
|
372
|
+
# # @return [RDF::Vocabulary::Term]
|
373
|
+
# attr_reader :pingback
|
374
|
+
#
|
375
|
+
# # Relates a provenance service to a URI template string for constructing provenance-URIs.
|
376
|
+
# # @return [RDF::Vocabulary::Term]
|
377
|
+
# attr_reader :provenanceUriTemplate
|
378
|
+
#
|
379
|
+
# # If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ].
|
380
|
+
# # @return [RDF::Vocabulary::Term]
|
381
|
+
# attr_reader :qualifiedAssociation
|
382
|
+
#
|
383
|
+
# # If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ].
|
384
|
+
# # @return [RDF::Vocabulary::Term]
|
385
|
+
# attr_reader :qualifiedAttribution
|
386
|
+
#
|
387
|
+
# # If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ].
|
388
|
+
# # @return [RDF::Vocabulary::Term]
|
389
|
+
# attr_reader :qualifiedCommunication
|
390
|
+
#
|
391
|
+
# # If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ].
|
392
|
+
# # @return [RDF::Vocabulary::Term]
|
393
|
+
# attr_reader :qualifiedDelegation
|
394
|
+
#
|
395
|
+
# # If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ].
|
396
|
+
# # @return [RDF::Vocabulary::Term]
|
397
|
+
# attr_reader :qualifiedDerivation
|
398
|
+
#
|
399
|
+
# # If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ].
|
400
|
+
# # @return [RDF::Vocabulary::Term]
|
401
|
+
# attr_reader :qualifiedEnd
|
402
|
+
#
|
403
|
+
# # This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. Example annotation: prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation . Then this unqualified assertion: :entity1 prov:wasGeneratedBy :activity1 . can be qualified by adding: :entity1 prov:qualifiedGeneration :entity1Gen . :entity1Gen a prov:Generation, prov:Influence; prov:activity :activity1; :customValue 1337 . Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.
|
404
|
+
# # @return [RDF::Vocabulary::Term]
|
405
|
+
# attr_reader :qualifiedForm
|
406
|
+
#
|
407
|
+
# # If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ].
|
408
|
+
# # @return [RDF::Vocabulary::Term]
|
409
|
+
# attr_reader :qualifiedGeneration
|
410
|
+
#
|
411
|
+
# # Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable.
|
412
|
+
# # @return [RDF::Vocabulary::Term]
|
413
|
+
# attr_reader :qualifiedInfluence
|
414
|
+
#
|
415
|
+
# # @return [RDF::Vocabulary::Term]
|
416
|
+
# attr_reader :qualifiedInsertion
|
417
|
+
#
|
418
|
+
# # If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ].
|
419
|
+
# # @return [RDF::Vocabulary::Term]
|
420
|
+
# attr_reader :qualifiedInvalidation
|
421
|
+
#
|
422
|
+
# # If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ].
|
423
|
+
# # @return [RDF::Vocabulary::Term]
|
424
|
+
# attr_reader :qualifiedPrimarySource
|
425
|
+
#
|
426
|
+
# # If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ].
|
427
|
+
# # @return [RDF::Vocabulary::Term]
|
428
|
+
# attr_reader :qualifiedQuotation
|
429
|
+
#
|
430
|
+
# # @return [RDF::Vocabulary::Term]
|
431
|
+
# attr_reader :qualifiedRemoval
|
432
|
+
#
|
433
|
+
# # If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ].
|
434
|
+
# # @return [RDF::Vocabulary::Term]
|
435
|
+
# attr_reader :qualifiedRevision
|
436
|
+
#
|
437
|
+
# # If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ].
|
438
|
+
# # @return [RDF::Vocabulary::Term]
|
439
|
+
# attr_reader :qualifiedStart
|
440
|
+
#
|
441
|
+
# # If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ].
|
442
|
+
# # @return [RDF::Vocabulary::Term]
|
443
|
+
# attr_reader :qualifiedUsage
|
444
|
+
#
|
445
|
+
# # @return [RDF::Vocabulary::Term]
|
446
|
+
# attr_reader :removedKey
|
447
|
+
#
|
448
|
+
# # @return [RDF::Vocabulary::Term]
|
449
|
+
# attr_reader :sharesDefinitionWith
|
450
|
+
#
|
451
|
+
# # @return [RDF::Vocabulary::Term]
|
452
|
+
# attr_reader :specializationOf
|
453
|
+
#
|
454
|
+
# # The time at which an activity started. See also prov:endedAtTime.
|
455
|
+
# # @return [RDF::Vocabulary::Term]
|
456
|
+
# attr_reader :startedAtTime
|
457
|
+
#
|
458
|
+
# # @return [RDF::Vocabulary::Term]
|
459
|
+
# attr_reader :todo
|
460
|
+
#
|
461
|
+
# # Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.
|
462
|
+
# # @return [RDF::Vocabulary::Term]
|
463
|
+
# attr_reader :unqualifiedForm
|
464
|
+
#
|
465
|
+
# # A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .
|
466
|
+
# # @return [RDF::Vocabulary::Term]
|
467
|
+
# attr_reader :used
|
468
|
+
#
|
469
|
+
# # @return [RDF::Vocabulary::Term]
|
470
|
+
# attr_reader :value
|
471
|
+
#
|
472
|
+
# # An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.
|
473
|
+
# # @return [RDF::Vocabulary::Term]
|
474
|
+
# attr_reader :wasAssociatedWith
|
475
|
+
#
|
476
|
+
# # Attribution is the ascribing of an entity to an agent.
|
477
|
+
# # @return [RDF::Vocabulary::Term]
|
478
|
+
# attr_reader :wasAttributedTo
|
479
|
+
#
|
480
|
+
# # The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.
|
481
|
+
# # @return [RDF::Vocabulary::Term]
|
482
|
+
# attr_reader :wasDerivedFrom
|
483
|
+
#
|
484
|
+
# # End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.
|
485
|
+
# # @return [RDF::Vocabulary::Term]
|
486
|
+
# attr_reader :wasEndedBy
|
487
|
+
#
|
488
|
+
# # @return [RDF::Vocabulary::Term]
|
489
|
+
# attr_reader :wasGeneratedBy
|
490
|
+
#
|
491
|
+
# # This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.
|
492
|
+
# #
|
493
|
+
# # Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.
|
494
|
+
# # @return [RDF::Vocabulary::Term]
|
495
|
+
# attr_reader :wasInfluencedBy
|
496
|
+
#
|
497
|
+
# # An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2.
|
498
|
+
# # @return [RDF::Vocabulary::Term]
|
499
|
+
# attr_reader :wasInformedBy
|
500
|
+
#
|
501
|
+
# # @return [RDF::Vocabulary::Term]
|
502
|
+
# attr_reader :wasInvalidatedBy
|
503
|
+
#
|
504
|
+
# # An entity is derived from an original entity by copying, or 'quoting', some or all of it.
|
505
|
+
# # @return [RDF::Vocabulary::Term]
|
506
|
+
# attr_reader :wasQuotedFrom
|
507
|
+
#
|
508
|
+
# # A revision is a derivation that revises an entity into a revised version.
|
509
|
+
# # @return [RDF::Vocabulary::Term]
|
510
|
+
# attr_reader :wasRevisionOf
|
511
|
+
#
|
512
|
+
# # Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity.
|
513
|
+
# # @return [RDF::Vocabulary::Term]
|
514
|
+
# attr_reader :wasStartedBy
|
515
|
+
#
|
516
|
+
# # @return [RDF::Vocabulary::Term]
|
517
|
+
# attr_reader :activityOfInfluence
|
518
|
+
#
|
519
|
+
# # @return [RDF::Vocabulary::Term]
|
520
|
+
# attr_reader :agentOfInfluence
|
521
|
+
#
|
522
|
+
# # @return [RDF::Vocabulary::Term]
|
523
|
+
# attr_reader :contributed
|
524
|
+
#
|
525
|
+
# # @return [RDF::Vocabulary::Term]
|
526
|
+
# attr_reader :ended
|
527
|
+
#
|
528
|
+
# # @return [RDF::Vocabulary::Term]
|
529
|
+
# attr_reader :entityOfInfluence
|
530
|
+
#
|
531
|
+
# # @return [RDF::Vocabulary::Term]
|
532
|
+
# attr_reader :generalizationOf
|
533
|
+
#
|
534
|
+
# # @return [RDF::Vocabulary::Term]
|
535
|
+
# attr_reader :generatedAsDerivation
|
536
|
+
#
|
537
|
+
# # @return [RDF::Vocabulary::Term]
|
538
|
+
# attr_reader :hadDelegate
|
539
|
+
#
|
540
|
+
# # @return [RDF::Vocabulary::Term]
|
541
|
+
# attr_reader :hadDerivation
|
542
|
+
#
|
543
|
+
# # @return [RDF::Vocabulary::Term]
|
544
|
+
# attr_reader :hadInfluence
|
545
|
+
#
|
546
|
+
# # @return [RDF::Vocabulary::Term]
|
547
|
+
# attr_reader :hadRevision
|
548
|
+
#
|
549
|
+
# # @return [RDF::Vocabulary::Term]
|
550
|
+
# attr_reader :informed
|
551
|
+
#
|
552
|
+
# # @return [RDF::Vocabulary::Term]
|
553
|
+
# attr_reader :locationOf
|
554
|
+
#
|
555
|
+
# # @return [RDF::Vocabulary::Term]
|
556
|
+
# attr_reader :qualifiedAssociationOf
|
557
|
+
#
|
558
|
+
# # @return [RDF::Vocabulary::Term]
|
559
|
+
# attr_reader :qualifiedAttributionOf
|
560
|
+
#
|
561
|
+
# # @return [RDF::Vocabulary::Term]
|
562
|
+
# attr_reader :qualifiedCommunicationOf
|
563
|
+
#
|
564
|
+
# # @return [RDF::Vocabulary::Term]
|
565
|
+
# attr_reader :qualifiedDelegationOf
|
566
|
+
#
|
567
|
+
# # @return [RDF::Vocabulary::Term]
|
568
|
+
# attr_reader :qualifiedDerivationOf
|
569
|
+
#
|
570
|
+
# # @return [RDF::Vocabulary::Term]
|
571
|
+
# attr_reader :qualifiedEndOf
|
572
|
+
#
|
573
|
+
# # @return [RDF::Vocabulary::Term]
|
574
|
+
# attr_reader :qualifiedGenerationOf
|
575
|
+
#
|
576
|
+
# # @return [RDF::Vocabulary::Term]
|
577
|
+
# attr_reader :qualifiedInfluenceOf
|
578
|
+
#
|
579
|
+
# # @return [RDF::Vocabulary::Term]
|
580
|
+
# attr_reader :qualifiedInvalidationOf
|
581
|
+
#
|
582
|
+
# # @return [RDF::Vocabulary::Term]
|
583
|
+
# attr_reader :qualifiedQuotationOf
|
584
|
+
#
|
585
|
+
# # @return [RDF::Vocabulary::Term]
|
586
|
+
# attr_reader :qualifiedSourceOf
|
587
|
+
#
|
588
|
+
# # @return [RDF::Vocabulary::Term]
|
589
|
+
# attr_reader :qualifiedStartOf
|
590
|
+
#
|
591
|
+
# # @return [RDF::Vocabulary::Term]
|
592
|
+
# attr_reader :qualifiedUsingActivity
|
593
|
+
#
|
594
|
+
# # @return [RDF::Vocabulary::Term]
|
595
|
+
# attr_reader :quotedAs
|
596
|
+
#
|
597
|
+
# # @return [RDF::Vocabulary::Term]
|
598
|
+
# attr_reader :revisedEntity
|
599
|
+
#
|
600
|
+
# # @return [RDF::Vocabulary::Term]
|
601
|
+
# attr_reader :started
|
602
|
+
#
|
603
|
+
# # @return [RDF::Vocabulary::Term]
|
604
|
+
# attr_reader :wasActivityOfInfluence
|
605
|
+
#
|
606
|
+
# # @return [RDF::Vocabulary::Term]
|
607
|
+
# attr_reader :wasAssociateFor
|
608
|
+
#
|
609
|
+
# # @return [RDF::Vocabulary::Term]
|
610
|
+
# attr_reader :wasMemberOf
|
611
|
+
#
|
612
|
+
# # @return [RDF::Vocabulary::Term]
|
613
|
+
# attr_reader :wasPlanOf
|
614
|
+
#
|
615
|
+
# # @return [RDF::Vocabulary::Term]
|
616
|
+
# attr_reader :wasPrimarySourceOf
|
617
|
+
#
|
618
|
+
# # @return [RDF::Vocabulary::Term]
|
619
|
+
# attr_reader :wasRoleIn
|
620
|
+
#
|
621
|
+
# # @return [RDF::Vocabulary::Term]
|
622
|
+
# attr_reader :wasUsedBy
|
623
|
+
#
|
624
|
+
# # @return [RDF::Vocabulary::Term]
|
625
|
+
# attr_reader :wasUsedInDerivation
|
626
|
+
#
|
9
627
|
# end
|
10
|
-
|
628
|
+
PROV = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/prov#")) do
|
11
629
|
|
12
630
|
# Ontology definition
|
13
631
|
ontology :"http://www.w3.org/ns/prov#",
|
14
|
-
comment:
|
15
|
-
|
16
|
-
If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org \(subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/
|
17
|
-
Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
632
|
+
comment: "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page).\n\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/\nArchives/Public/public-prov-comments/). All feedback is welcome.".freeze,
|
18
633
|
isDefinedBy: "http://www.w3.org/ns/prov".freeze,
|
19
634
|
label: "W3C PROVenance Interchange".freeze,
|
20
635
|
"owl:imports": ["http://www.w3.org/ns/prov-aq#".freeze, "http://www.w3.org/ns/prov-dc#".freeze, "http://www.w3.org/ns/prov-dictionary#".freeze, "http://www.w3.org/ns/prov-links#".freeze, "http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
@@ -43,7 +658,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
43
658
|
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity".freeze,
|
44
659
|
type: "owl:Class".freeze
|
45
660
|
term :ActivityInfluence,
|
46
|
-
comment: [
|
661
|
+
comment: ["ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity.".freeze, "It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses.".freeze],
|
47
662
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
48
663
|
label: "ActivityInfluence".freeze,
|
49
664
|
"owl:disjointWith": "prov:EntityInfluence".freeze,
|
@@ -67,7 +682,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
67
682
|
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent".freeze,
|
68
683
|
type: "owl:Class".freeze
|
69
684
|
term :AgentInfluence,
|
70
|
-
comment: [
|
685
|
+
comment: ["AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent.".freeze, "It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses.".freeze],
|
71
686
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
72
687
|
label: "AgentInfluence".freeze,
|
73
688
|
"prov:category": "qualified".freeze,
|
@@ -76,7 +691,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
76
691
|
subClassOf: "prov:Influence".freeze,
|
77
692
|
type: "owl:Class".freeze
|
78
693
|
term :Association,
|
79
|
-
comment:
|
694
|
+
comment: "An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ].".freeze,
|
80
695
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
81
696
|
label: "Association".freeze,
|
82
697
|
"prov:category": "qualified".freeze,
|
@@ -88,7 +703,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
88
703
|
subClassOf: "prov:AgentInfluence".freeze,
|
89
704
|
type: "owl:Class".freeze
|
90
705
|
term :Attribution,
|
91
|
-
comment:
|
706
|
+
comment: "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ].".freeze,
|
92
707
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
93
708
|
label: "Attribution".freeze,
|
94
709
|
"prov:category": "qualified".freeze,
|
@@ -101,7 +716,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
101
716
|
subClassOf: "prov:AgentInfluence".freeze,
|
102
717
|
type: "owl:Class".freeze
|
103
718
|
term :Bundle,
|
104
|
-
comment:
|
719
|
+
comment: "Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O.".freeze,
|
105
720
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
106
721
|
label: "Bundle".freeze,
|
107
722
|
"prov:category": "expanded".freeze,
|
@@ -120,7 +735,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
120
735
|
subClassOf: "prov:Entity".freeze,
|
121
736
|
type: "owl:Class".freeze
|
122
737
|
term :Communication,
|
123
|
-
comment:
|
738
|
+
comment: "An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ].".freeze,
|
124
739
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
125
740
|
label: "Communication".freeze,
|
126
741
|
"prov:category": "qualified".freeze,
|
@@ -158,7 +773,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
158
773
|
subClassOf: "prov:Contributor".freeze,
|
159
774
|
type: "owl:Class".freeze
|
160
775
|
term :Delegation,
|
161
|
-
comment:
|
776
|
+
comment: "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ].".freeze,
|
162
777
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
163
778
|
label: "Delegation".freeze,
|
164
779
|
"prov:category": "qualified".freeze,
|
@@ -170,7 +785,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
170
785
|
subClassOf: "prov:AgentInfluence".freeze,
|
171
786
|
type: "owl:Class".freeze
|
172
787
|
term :Derivation,
|
173
|
-
comment: [
|
788
|
+
comment: ["An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ].".freeze, "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply.".freeze],
|
174
789
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
175
790
|
label: "Derivation".freeze,
|
176
791
|
"prov:category": "qualified".freeze,
|
@@ -183,7 +798,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
183
798
|
subClassOf: "prov:EntityInfluence".freeze,
|
184
799
|
type: "owl:Class".freeze
|
185
800
|
term :Dictionary,
|
186
|
-
comment: [
|
801
|
+
comment: ["A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary.".freeze, "This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays.".freeze],
|
187
802
|
isDefinedBy: "prov:".freeze,
|
188
803
|
label: "Dictionary".freeze,
|
189
804
|
"prov:category": "collections".freeze,
|
@@ -194,7 +809,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
194
809
|
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze,
|
195
810
|
type: "owl:Class".freeze
|
196
811
|
term :DirectQueryService,
|
197
|
-
comment:
|
812
|
+
comment: "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.".freeze,
|
198
813
|
isDefinedBy: "prov:".freeze,
|
199
814
|
label: "ProvenanceService".freeze,
|
200
815
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze,
|
@@ -221,7 +836,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
221
836
|
subClassOf: ["prov:Dictionary".freeze, "prov:EmptyCollection".freeze],
|
222
837
|
type: "owl:Class".freeze
|
223
838
|
term :End,
|
224
|
-
comment:
|
839
|
+
comment: "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ].".freeze,
|
225
840
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
226
841
|
label: "End".freeze,
|
227
842
|
"prov:category": "qualified".freeze,
|
@@ -245,7 +860,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
245
860
|
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity".freeze,
|
246
861
|
type: "owl:Class".freeze
|
247
862
|
term :EntityInfluence,
|
248
|
-
comment: [
|
863
|
+
comment: ["EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity.".freeze, "It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses.".freeze],
|
249
864
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
250
865
|
label: "EntityInfluence".freeze,
|
251
866
|
"prov:category": "qualified".freeze,
|
@@ -254,7 +869,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
254
869
|
subClassOf: "prov:Influence".freeze,
|
255
870
|
type: "owl:Class".freeze
|
256
871
|
term :Generation,
|
257
|
-
comment:
|
872
|
+
comment: "An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ].".freeze,
|
258
873
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
259
874
|
label: "Generation".freeze,
|
260
875
|
"prov:category": "qualified".freeze,
|
@@ -267,7 +882,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
267
882
|
subClassOf: ["prov:ActivityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
268
883
|
type: "owl:Class".freeze
|
269
884
|
term :Influence,
|
270
|
-
comment: [
|
885
|
+
comment: ["An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable.".freeze, "Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable.".freeze],
|
271
886
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
272
887
|
label: "Influence".freeze,
|
273
888
|
"prov:category": "qualified".freeze,
|
@@ -298,7 +913,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
298
913
|
)],
|
299
914
|
type: "owl:Class".freeze
|
300
915
|
term :InstantaneousEvent,
|
301
|
-
comment:
|
916
|
+
comment: "An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous.".freeze,
|
302
917
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
303
918
|
label: "InstantaneousEvent".freeze,
|
304
919
|
"prov:category": "qualified".freeze,
|
@@ -307,7 +922,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
307
922
|
"prov:definition": "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.".freeze,
|
308
923
|
type: "owl:Class".freeze
|
309
924
|
term :Invalidation,
|
310
|
-
comment:
|
925
|
+
comment: "An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ].".freeze,
|
311
926
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
312
927
|
label: "Invalidation".freeze,
|
313
928
|
"prov:category": "qualified".freeze,
|
@@ -373,7 +988,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
373
988
|
subClassOf: "prov:Agent".freeze,
|
374
989
|
type: "owl:Class".freeze
|
375
990
|
term :Plan,
|
376
|
-
comment:
|
991
|
+
comment: "There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations.".freeze,
|
377
992
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
378
993
|
label: "Plan".freeze,
|
379
994
|
"prov:category": ["expanded".freeze, "qualified".freeze],
|
@@ -384,7 +999,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
384
999
|
subClassOf: "prov:Entity".freeze,
|
385
1000
|
type: "owl:Class".freeze
|
386
1001
|
term :PrimarySource,
|
387
|
-
comment:
|
1002
|
+
comment: "An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] .".freeze,
|
388
1003
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
389
1004
|
label: "PrimarySource".freeze,
|
390
1005
|
"prov:category": "qualified".freeze,
|
@@ -406,7 +1021,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
406
1021
|
subClassOf: "prov:Role".freeze,
|
407
1022
|
type: "owl:Class".freeze
|
408
1023
|
term :Quotation,
|
409
|
-
comment:
|
1024
|
+
comment: "An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ].".freeze,
|
410
1025
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
411
1026
|
label: "Quotation".freeze,
|
412
1027
|
"prov:category": "qualified".freeze,
|
@@ -443,7 +1058,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
443
1058
|
subClassOf: "prov:Activity".freeze,
|
444
1059
|
type: "owl:Class".freeze
|
445
1060
|
term :Revision,
|
446
|
-
comment:
|
1061
|
+
comment: "An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ].".freeze,
|
447
1062
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
448
1063
|
label: "Revision".freeze,
|
449
1064
|
"prov:category": "qualified".freeze,
|
@@ -475,7 +1090,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
475
1090
|
"rdfs:seeAlso": "prov:hadRole".freeze,
|
476
1091
|
type: "owl:Class".freeze
|
477
1092
|
term :ServiceDescription,
|
478
|
-
comment:
|
1093
|
+
comment: "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.".freeze,
|
479
1094
|
isDefinedBy: "prov:".freeze,
|
480
1095
|
label: "ServiceDescription".freeze,
|
481
1096
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze,
|
@@ -493,7 +1108,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
493
1108
|
subClassOf: ["owl:Thing".freeze, "prov:Agent".freeze],
|
494
1109
|
type: "owl:Class".freeze
|
495
1110
|
term :Start,
|
496
|
-
comment:
|
1111
|
+
comment: "An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] .".freeze,
|
497
1112
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
498
1113
|
label: "Start".freeze,
|
499
1114
|
"prov:category": "qualified".freeze,
|
@@ -511,7 +1126,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
511
1126
|
subClassOf: "prov:Activity".freeze,
|
512
1127
|
type: "owl:Class".freeze
|
513
1128
|
term :Usage,
|
514
|
-
comment:
|
1129
|
+
comment: "An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ].".freeze,
|
515
1130
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
516
1131
|
label: "Usage".freeze,
|
517
1132
|
"prov:category": "qualified".freeze,
|
@@ -526,7 +1141,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
526
1141
|
|
527
1142
|
# Property definitions
|
528
1143
|
property :actedOnBehalfOf,
|
529
|
-
comment:
|
1144
|
+
comment: "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. ".freeze,
|
530
1145
|
domain: "prov:Agent".freeze,
|
531
1146
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
532
1147
|
label: "actedOnBehalfOf".freeze,
|
@@ -580,9 +1195,7 @@ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
|
580
1195
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
581
1196
|
type: "owl:AnnotationProperty".freeze
|
582
1197
|
property :asInBundle,
|
583
|
-
comment:
|
584
|
-
|
585
|
-
When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.).freeze,
|
1198
|
+
comment: "prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.\n\nWhen :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.".freeze,
|
586
1199
|
domain: "prov:Entity".freeze,
|
587
1200
|
isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze,
|
588
1201
|
label: "asInBundle".freeze,
|
@@ -591,7 +1204,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
591
1204
|
range: "prov:Bundle".freeze,
|
592
1205
|
type: "owl:ObjectProperty".freeze
|
593
1206
|
property :atLocation,
|
594
|
-
comment: [
|
1207
|
+
comment: ["The Location of any resource.".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>.".freeze],
|
595
1208
|
domain: term(
|
596
1209
|
type: "owl:Class".freeze,
|
597
1210
|
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze, "prov:InstantaneousEvent".freeze)
|
@@ -605,7 +1218,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
605
1218
|
range: "prov:Location".freeze,
|
606
1219
|
type: "owl:ObjectProperty".freeze
|
607
1220
|
property :atTime,
|
608
|
-
comment:
|
1221
|
+
comment: "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.".freeze,
|
609
1222
|
domain: "prov:InstantaneousEvent".freeze,
|
610
1223
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
611
1224
|
label: "atTime".freeze,
|
@@ -616,20 +1229,20 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
616
1229
|
range: "xsd:dateTime".freeze,
|
617
1230
|
type: "owl:DatatypeProperty".freeze
|
618
1231
|
property :category,
|
619
|
-
comment:
|
1232
|
+
comment: "Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. ".freeze,
|
620
1233
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
621
1234
|
type: "owl:AnnotationProperty".freeze
|
622
1235
|
property :component,
|
623
|
-
comment:
|
1236
|
+
comment: "Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.".freeze,
|
624
1237
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
625
1238
|
type: "owl:AnnotationProperty".freeze
|
626
1239
|
property :constraints,
|
627
|
-
comment:
|
1240
|
+
comment: "A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.".freeze,
|
628
1241
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
629
1242
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
630
1243
|
type: "owl:AnnotationProperty".freeze
|
631
1244
|
property :definition,
|
632
|
-
comment:
|
1245
|
+
comment: "A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.".freeze,
|
633
1246
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
634
1247
|
type: "owl:AnnotationProperty".freeze
|
635
1248
|
property :derivedByInsertionFrom,
|
@@ -659,7 +1272,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
659
1272
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
660
1273
|
type: "owl:ObjectProperty".freeze
|
661
1274
|
property :describesService,
|
662
|
-
comment:
|
1275
|
+
comment: "relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service).".freeze,
|
663
1276
|
isDefinedBy: "prov:".freeze,
|
664
1277
|
label: "describesService".freeze,
|
665
1278
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description".freeze,
|
@@ -680,21 +1293,21 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
680
1293
|
subPropertyOf: "prov:entity".freeze,
|
681
1294
|
type: "owl:ObjectProperty".freeze
|
682
1295
|
property :dm,
|
683
|
-
comment:
|
1296
|
+
comment: "A reference to the principal section of the PROV-DM document that describes this concept.".freeze,
|
684
1297
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
685
1298
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
686
1299
|
type: "owl:AnnotationProperty".freeze
|
687
1300
|
property :editorialNote,
|
688
|
-
comment:
|
1301
|
+
comment: "A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.".freeze,
|
689
1302
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
690
1303
|
type: "owl:AnnotationProperty".freeze
|
691
1304
|
property :editorsDefinition,
|
692
|
-
comment:
|
1305
|
+
comment: "When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.".freeze,
|
693
1306
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
694
1307
|
subPropertyOf: "prov:definition".freeze,
|
695
1308
|
type: "owl:AnnotationProperty".freeze
|
696
1309
|
property :endedAtTime,
|
697
|
-
comment:
|
1310
|
+
comment: "The time at which an activity ended. See also prov:startedAtTime.".freeze,
|
698
1311
|
domain: "prov:Activity".freeze,
|
699
1312
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
700
1313
|
label: "endedAtTime".freeze,
|
@@ -729,7 +1342,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
729
1342
|
subPropertyOf: "prov:influenced".freeze,
|
730
1343
|
type: "owl:ObjectProperty".freeze
|
731
1344
|
property :generatedAtTime,
|
732
|
-
comment:
|
1345
|
+
comment: "The time at which an entity was completely created and is available for use.".freeze,
|
733
1346
|
domain: "prov:Entity".freeze,
|
734
1347
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
735
1348
|
label: "generatedAtTime".freeze,
|
@@ -740,7 +1353,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
740
1353
|
range: "xsd:dateTime".freeze,
|
741
1354
|
type: "owl:DatatypeProperty".freeze
|
742
1355
|
property :hadActivity,
|
743
|
-
comment: [
|
1356
|
+
comment: ["The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>.".freeze],
|
744
1357
|
domain: ["prov:Influence".freeze, term(
|
745
1358
|
type: "owl:Class".freeze,
|
746
1359
|
unionOf: list("prov:Delegation".freeze, "prov:Derivation".freeze, "prov:End".freeze, "prov:Start".freeze)
|
@@ -767,7 +1380,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
767
1380
|
range: "prov:KeyEntityPair".freeze,
|
768
1381
|
type: "owl:ObjectProperty".freeze
|
769
1382
|
property :hadGeneration,
|
770
|
-
comment:
|
1383
|
+
comment: "The _optional_ Generation involved in an Entity's Derivation.".freeze,
|
771
1384
|
domain: "prov:Derivation".freeze,
|
772
1385
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
773
1386
|
label: "hadGeneration".freeze,
|
@@ -789,7 +1402,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
789
1402
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
790
1403
|
type: "owl:ObjectProperty".freeze
|
791
1404
|
property :hadPlan,
|
792
|
-
comment:
|
1405
|
+
comment: "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.".freeze,
|
793
1406
|
domain: "prov:Association".freeze,
|
794
1407
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
795
1408
|
label: "hadPlan".freeze,
|
@@ -812,7 +1425,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
812
1425
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
813
1426
|
type: "owl:ObjectProperty".freeze
|
814
1427
|
property :hadRole,
|
815
|
-
comment: [
|
1428
|
+
comment: ["The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>.".freeze],
|
816
1429
|
domain: ["prov:Influence".freeze, term(
|
817
1430
|
type: "owl:Class".freeze,
|
818
1431
|
unionOf: list("prov:Association".freeze, "prov:InstantaneousEvent".freeze)
|
@@ -827,7 +1440,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
827
1440
|
range: "prov:Role".freeze,
|
828
1441
|
type: "owl:ObjectProperty".freeze
|
829
1442
|
property :hadUsage,
|
830
|
-
comment:
|
1443
|
+
comment: "The _optional_ Usage involved in an Entity's Derivation.".freeze,
|
831
1444
|
domain: "prov:Derivation".freeze,
|
832
1445
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
833
1446
|
label: "hadUsage".freeze,
|
@@ -838,7 +1451,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
838
1451
|
range: "prov:Usage".freeze,
|
839
1452
|
type: "owl:ObjectProperty".freeze
|
840
1453
|
property :has_anchor,
|
841
|
-
comment:
|
1454
|
+
comment: "Indicates anchor URI for a potentially dynamic resource instance.".freeze,
|
842
1455
|
isDefinedBy: "prov:".freeze,
|
843
1456
|
label: "has_anchor".freeze,
|
844
1457
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze,
|
@@ -846,7 +1459,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
846
1459
|
"prov:inverse": "anchorOf".freeze,
|
847
1460
|
type: "owl:ObjectProperty".freeze
|
848
1461
|
property :has_provenance,
|
849
|
-
comment:
|
1462
|
+
comment: "Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource.".freeze,
|
850
1463
|
isDefinedBy: "prov:".freeze,
|
851
1464
|
label: "has_provenance".freeze,
|
852
1465
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze,
|
@@ -854,7 +1467,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
854
1467
|
"prov:inverse": "provenanceOf".freeze,
|
855
1468
|
type: "owl:ObjectProperty".freeze
|
856
1469
|
property :has_query_service,
|
857
|
-
comment:
|
1470
|
+
comment: "Indicates a provenance query service that can access provenance related to its subject or anchor resource.".freeze,
|
858
1471
|
isDefinedBy: "prov:".freeze,
|
859
1472
|
label: "hasProvenanceService".freeze,
|
860
1473
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze,
|
@@ -871,7 +1484,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
871
1484
|
"prov:sharesDefinitionWith": "prov:Influence".freeze,
|
872
1485
|
type: "owl:ObjectProperty".freeze
|
873
1486
|
property :influencer,
|
874
|
-
comment:
|
1487
|
+
comment: "Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used.".freeze,
|
875
1488
|
domain: "prov:Influence".freeze,
|
876
1489
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
877
1490
|
label: "influencer".freeze,
|
@@ -908,7 +1521,7 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
908
1521
|
subPropertyOf: "prov:influenced".freeze,
|
909
1522
|
type: "owl:ObjectProperty".freeze
|
910
1523
|
property :invalidatedAtTime,
|
911
|
-
comment:
|
1524
|
+
comment: "The time at which an entity was invalidated (i.e., no longer usable).".freeze,
|
912
1525
|
domain: "prov:Entity".freeze,
|
913
1526
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
914
1527
|
label: "invalidatedAtTime".freeze,
|
@@ -919,14 +1532,12 @@ When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:a
|
|
919
1532
|
range: "xsd:dateTime".freeze,
|
920
1533
|
type: "owl:DatatypeProperty".freeze
|
921
1534
|
property :inverse,
|
922
|
-
comment:
|
1535
|
+
comment: "PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.".freeze,
|
923
1536
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
924
1537
|
"rdfs:seeAlso": "http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze,
|
925
1538
|
type: "owl:AnnotationProperty".freeze
|
926
1539
|
property :mentionOf,
|
927
|
-
comment:
|
928
|
-
|
929
|
-
prov:asInBundle is used to cite the Bundle in which the generalization was mentioned.).freeze,
|
1540
|
+
comment: "prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.\n\nprov:asInBundle is used to cite the Bundle in which the generalization was mentioned.".freeze,
|
930
1541
|
domain: "prov:Entity".freeze,
|
931
1542
|
isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze,
|
932
1543
|
label: "mentionOf".freeze,
|
@@ -935,12 +1546,12 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
935
1546
|
subPropertyOf: "prov:specializationOf".freeze,
|
936
1547
|
type: "owl:ObjectProperty".freeze
|
937
1548
|
property :n,
|
938
|
-
comment: [
|
1549
|
+
comment: ["A reference to the principal section of the PROV-DM document that describes this concept.".freeze, "A reference to the principal section of the PROV-M document that describes this concept.".freeze],
|
939
1550
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
940
1551
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
941
1552
|
type: "owl:AnnotationProperty".freeze
|
942
1553
|
property :order,
|
943
|
-
comment:
|
1554
|
+
comment: "The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.".freeze,
|
944
1555
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
945
1556
|
type: "owl:AnnotationProperty".freeze
|
946
1557
|
property :pairEntity,
|
@@ -968,21 +1579,21 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
968
1579
|
range: "rdfs:Literal".freeze,
|
969
1580
|
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
970
1581
|
property :pingback,
|
971
|
-
comment:
|
1582
|
+
comment: "Relates a resource to a provenance pingback service that may receive additional provenance links about the resource.".freeze,
|
972
1583
|
isDefinedBy: "prov:".freeze,
|
973
1584
|
label: "provenance pingback".freeze,
|
974
1585
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback".freeze,
|
975
1586
|
"prov:category": "access-and-query".freeze,
|
976
1587
|
type: "owl:ObjectProperty".freeze
|
977
1588
|
property :provenanceUriTemplate,
|
978
|
-
comment:
|
1589
|
+
comment: "Relates a provenance service to a URI template string for constructing provenance-URIs.".freeze,
|
979
1590
|
isDefinedBy: "prov:".freeze,
|
980
1591
|
label: "provenanceUriTemplate".freeze,
|
981
1592
|
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze,
|
982
1593
|
"prov:category": "access-and-query".freeze,
|
983
1594
|
type: "owl:DatatypeProperty".freeze
|
984
1595
|
property :qualifiedAssociation,
|
985
|
-
comment:
|
1596
|
+
comment: "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ].".freeze,
|
986
1597
|
domain: "prov:Activity".freeze,
|
987
1598
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
988
1599
|
label: "qualifiedAssociation".freeze,
|
@@ -995,7 +1606,7 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
995
1606
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
996
1607
|
type: "owl:ObjectProperty".freeze
|
997
1608
|
property :qualifiedAttribution,
|
998
|
-
comment:
|
1609
|
+
comment: "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ].".freeze,
|
999
1610
|
domain: "prov:Entity".freeze,
|
1000
1611
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1001
1612
|
label: "qualifiedAttribution".freeze,
|
@@ -1008,7 +1619,7 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
1008
1619
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1009
1620
|
type: "owl:ObjectProperty".freeze
|
1010
1621
|
property :qualifiedCommunication,
|
1011
|
-
comment:
|
1622
|
+
comment: "If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ].".freeze,
|
1012
1623
|
domain: "prov:Activity".freeze,
|
1013
1624
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1014
1625
|
label: "qualifiedCommunication".freeze,
|
@@ -1021,7 +1632,7 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
1021
1632
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1022
1633
|
type: "owl:ObjectProperty".freeze
|
1023
1634
|
property :qualifiedDelegation,
|
1024
|
-
comment:
|
1635
|
+
comment: "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ].".freeze,
|
1025
1636
|
domain: "prov:Agent".freeze,
|
1026
1637
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1027
1638
|
label: "qualifiedDelegation".freeze,
|
@@ -1034,7 +1645,7 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
1034
1645
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1035
1646
|
type: "owl:ObjectProperty".freeze
|
1036
1647
|
property :qualifiedDerivation,
|
1037
|
-
comment:
|
1648
|
+
comment: "If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ].".freeze,
|
1038
1649
|
domain: "prov:Entity".freeze,
|
1039
1650
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1040
1651
|
label: "qualifiedDerivation".freeze,
|
@@ -1047,7 +1658,7 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
1047
1658
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1048
1659
|
type: "owl:ObjectProperty".freeze
|
1049
1660
|
property :qualifiedEnd,
|
1050
|
-
comment:
|
1661
|
+
comment: "If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ].".freeze,
|
1051
1662
|
domain: "prov:Activity".freeze,
|
1052
1663
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1053
1664
|
label: "qualifiedEnd".freeze,
|
@@ -1060,30 +1671,12 @@ prov:asInBundle is used to cite the Bundle in which the generalization was menti
|
|
1060
1671
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1061
1672
|
type: "owl:ObjectProperty".freeze
|
1062
1673
|
property :qualifiedForm,
|
1063
|
-
comment:
|
1064
|
-
|
1065
|
-
Example annotation:
|
1066
|
-
|
1067
|
-
prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
|
1068
|
-
|
1069
|
-
Then this unqualified assertion:
|
1070
|
-
|
1071
|
-
:entity1 prov:wasGeneratedBy :activity1 .
|
1072
|
-
|
1073
|
-
can be qualified by adding:
|
1074
|
-
|
1075
|
-
:entity1 prov:qualifiedGeneration :entity1Gen .
|
1076
|
-
:entity1Gen
|
1077
|
-
a prov:Generation, prov:Influence;
|
1078
|
-
prov:activity :activity1;
|
1079
|
-
:customValue 1337 .
|
1080
|
-
|
1081
|
-
Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1\) is mirrored as the value of the prov:activity \(or prov:entity, or prov:agent\) property on the influence class.).freeze,
|
1674
|
+
comment: "This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. \n\nExample annotation:\n\n prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .\n\nThen this unqualified assertion:\n\n :entity1 prov:wasGeneratedBy :activity1 .\n\ncan be qualified by adding:\n\n :entity1 prov:qualifiedGeneration :entity1Gen .\n :entity1Gen \n a prov:Generation, prov:Influence;\n prov:activity :activity1;\n :customValue 1337 .\n\nNote how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.".freeze,
|
1082
1675
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1083
1676
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
1084
1677
|
type: "owl:AnnotationProperty".freeze
|
1085
1678
|
property :qualifiedGeneration,
|
1086
|
-
comment:
|
1679
|
+
comment: "If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ].".freeze,
|
1087
1680
|
domain: "prov:Entity".freeze,
|
1088
1681
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1089
1682
|
label: "qualifiedGeneration".freeze,
|
@@ -1096,7 +1689,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1096
1689
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1097
1690
|
type: "owl:ObjectProperty".freeze
|
1098
1691
|
property :qualifiedInfluence,
|
1099
|
-
comment:
|
1692
|
+
comment: "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable.".freeze,
|
1100
1693
|
domain: term(
|
1101
1694
|
type: "owl:Class".freeze,
|
1102
1695
|
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze)
|
@@ -1124,7 +1717,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1124
1717
|
subPropertyOf: "prov:qualifiedDerivation".freeze,
|
1125
1718
|
type: "owl:ObjectProperty".freeze
|
1126
1719
|
property :qualifiedInvalidation,
|
1127
|
-
comment:
|
1720
|
+
comment: "If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ].".freeze,
|
1128
1721
|
domain: "prov:Entity".freeze,
|
1129
1722
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1130
1723
|
label: "qualifiedInvalidation".freeze,
|
@@ -1137,7 +1730,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1137
1730
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1138
1731
|
type: "owl:ObjectProperty".freeze
|
1139
1732
|
property :qualifiedPrimarySource,
|
1140
|
-
comment:
|
1733
|
+
comment: "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ].".freeze,
|
1141
1734
|
domain: "prov:Entity".freeze,
|
1142
1735
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1143
1736
|
label: "qualifiedPrimarySource".freeze,
|
@@ -1150,7 +1743,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1150
1743
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1151
1744
|
type: "owl:ObjectProperty".freeze
|
1152
1745
|
property :qualifiedQuotation,
|
1153
|
-
comment:
|
1746
|
+
comment: "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ].".freeze,
|
1154
1747
|
domain: "prov:Entity".freeze,
|
1155
1748
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1156
1749
|
label: "qualifiedQuotation".freeze,
|
@@ -1176,7 +1769,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1176
1769
|
subPropertyOf: "prov:qualifiedDerivation".freeze,
|
1177
1770
|
type: "owl:ObjectProperty".freeze
|
1178
1771
|
property :qualifiedRevision,
|
1179
|
-
comment:
|
1772
|
+
comment: "If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ].".freeze,
|
1180
1773
|
domain: "prov:Entity".freeze,
|
1181
1774
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1182
1775
|
label: "qualifiedRevision".freeze,
|
@@ -1189,7 +1782,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1189
1782
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1190
1783
|
type: "owl:ObjectProperty".freeze
|
1191
1784
|
property :qualifiedStart,
|
1192
|
-
comment:
|
1785
|
+
comment: "If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ].".freeze,
|
1193
1786
|
domain: "prov:Activity".freeze,
|
1194
1787
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1195
1788
|
label: "qualifiedStart".freeze,
|
@@ -1202,7 +1795,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1202
1795
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1203
1796
|
type: "owl:ObjectProperty".freeze
|
1204
1797
|
property :qualifiedUsage,
|
1205
|
-
comment:
|
1798
|
+
comment: "If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ].".freeze,
|
1206
1799
|
domain: "prov:Activity".freeze,
|
1207
1800
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1208
1801
|
label: "qualifiedUsage".freeze,
|
@@ -1246,7 +1839,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1246
1839
|
subPropertyOf: ["owl:topObjectProperty".freeze, "prov:alternateOf".freeze],
|
1247
1840
|
type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze]
|
1248
1841
|
property :startedAtTime,
|
1249
|
-
comment:
|
1842
|
+
comment: "The time at which an activity started. See also prov:endedAtTime.".freeze,
|
1250
1843
|
domain: "prov:Activity".freeze,
|
1251
1844
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1252
1845
|
label: "startedAtTime".freeze,
|
@@ -1259,12 +1852,12 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1259
1852
|
property :todo,
|
1260
1853
|
type: "owl:AnnotationProperty".freeze
|
1261
1854
|
property :unqualifiedForm,
|
1262
|
-
comment:
|
1855
|
+
comment: "Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.".freeze,
|
1263
1856
|
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1264
1857
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
1265
1858
|
type: "owl:AnnotationProperty".freeze
|
1266
1859
|
property :used,
|
1267
|
-
comment:
|
1860
|
+
comment: "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .".freeze,
|
1268
1861
|
domain: "prov:Activity".freeze,
|
1269
1862
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1270
1863
|
label: "used".freeze,
|
@@ -1287,7 +1880,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1287
1880
|
"prov:editorialNote": ["The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue".freeze, "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').".freeze],
|
1288
1881
|
type: "owl:DatatypeProperty".freeze
|
1289
1882
|
property :wasAssociatedWith,
|
1290
|
-
comment:
|
1883
|
+
comment: "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.".freeze,
|
1291
1884
|
domain: "prov:Activity".freeze,
|
1292
1885
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1293
1886
|
label: "wasAssociatedWith".freeze,
|
@@ -1300,7 +1893,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1300
1893
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1301
1894
|
type: "owl:ObjectProperty".freeze
|
1302
1895
|
property :wasAttributedTo,
|
1303
|
-
comment:
|
1896
|
+
comment: "Attribution is the ascribing of an entity to an agent.".freeze,
|
1304
1897
|
domain: "prov:Entity".freeze,
|
1305
1898
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1306
1899
|
label: "wasAttributedTo".freeze,
|
@@ -1314,7 +1907,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1314
1907
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1315
1908
|
type: "owl:ObjectProperty".freeze
|
1316
1909
|
property :wasDerivedFrom,
|
1317
|
-
comment:
|
1910
|
+
comment: "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.".freeze,
|
1318
1911
|
domain: "prov:Entity".freeze,
|
1319
1912
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1320
1913
|
label: "wasDerivedFrom".freeze,
|
@@ -1328,7 +1921,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1328
1921
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1329
1922
|
type: "owl:ObjectProperty".freeze
|
1330
1923
|
property :wasEndedBy,
|
1331
|
-
comment:
|
1924
|
+
comment: "End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.".freeze,
|
1332
1925
|
domain: "prov:Activity".freeze,
|
1333
1926
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1334
1927
|
label: "wasEndedBy".freeze,
|
@@ -1354,7 +1947,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1354
1947
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1355
1948
|
type: "owl:ObjectProperty".freeze
|
1356
1949
|
property :wasInfluencedBy,
|
1357
|
-
comment: [
|
1950
|
+
comment: ["Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>.".freeze],
|
1358
1951
|
domain: term(
|
1359
1952
|
type: "owl:Class".freeze,
|
1360
1953
|
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze)
|
@@ -1374,7 +1967,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1374
1967
|
),
|
1375
1968
|
type: "owl:ObjectProperty".freeze
|
1376
1969
|
property :wasInformedBy,
|
1377
|
-
comment:
|
1970
|
+
comment: "An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2.".freeze,
|
1378
1971
|
domain: "prov:Activity".freeze,
|
1379
1972
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1380
1973
|
label: "wasInformedBy".freeze,
|
@@ -1400,7 +1993,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1400
1993
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1401
1994
|
type: "owl:ObjectProperty".freeze
|
1402
1995
|
property :wasQuotedFrom,
|
1403
|
-
comment:
|
1996
|
+
comment: "An entity is derived from an original entity by copying, or 'quoting', some or all of it.".freeze,
|
1404
1997
|
domain: "prov:Entity".freeze,
|
1405
1998
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1406
1999
|
label: "wasQuotedFrom".freeze,
|
@@ -1413,7 +2006,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1413
2006
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
1414
2007
|
type: "owl:ObjectProperty".freeze
|
1415
2008
|
property :wasRevisionOf,
|
1416
|
-
comment:
|
2009
|
+
comment: "A revision is a derivation that revises an entity into a revised version.".freeze,
|
1417
2010
|
domain: "prov:Entity".freeze,
|
1418
2011
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1419
2012
|
label: "wasRevisionOf".freeze,
|
@@ -1426,7 +2019,7 @@ Note how the value of the unqualified influence \(prov:wasGeneratedBy :activity1
|
|
1426
2019
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
1427
2020
|
type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze]
|
1428
2021
|
property :wasStartedBy,
|
1429
|
-
comment:
|
2022
|
+
comment: "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity.".freeze,
|
1430
2023
|
domain: "prov:Activity".freeze,
|
1431
2024
|
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1432
2025
|
label: "wasStartedBy".freeze,
|