rdf-vocab 2.2.9 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +21 -2
- data/lib/rdf/vocab/acl.rb +21 -5
- data/lib/rdf/vocab/bf2.rb +812 -812
- data/lib/rdf/vocab/bibframe.rb +78 -78
- data/lib/rdf/vocab/bibo.rb +239 -247
- data/lib/rdf/vocab/cc.rb +4 -9
- data/lib/rdf/vocab/cert.rb +44 -45
- data/lib/rdf/vocab/cnt.rb +5 -5
- data/lib/rdf/vocab/crm.rb +344 -344
- data/lib/rdf/vocab/datacite.rb +152 -58
- data/lib/rdf/vocab/dc.rb +439 -439
- data/lib/rdf/vocab/dc11.rb +93 -93
- data/lib/rdf/vocab/dcat.rb +152 -101
- data/lib/rdf/vocab/dcmitype.rb +75 -75
- data/lib/rdf/vocab/disco.rb +169 -101
- data/lib/rdf/vocab/doap.rb +179 -159
- data/lib/rdf/vocab/dwc.rb +1648 -1648
- data/lib/rdf/vocab/ebucore.rb +373 -124
- data/lib/rdf/vocab/edm.rb +216 -139
- data/lib/rdf/vocab/exif.rb +208 -208
- data/lib/rdf/vocab/fcrepo4.rb +57 -134
- data/lib/rdf/vocab/foaf.rb +166 -166
- data/lib/rdf/vocab/geo.rb +3 -5
- data/lib/rdf/vocab/geojson.rb +16 -16
- data/lib/rdf/vocab/geonames.rb +2827 -3455
- data/lib/rdf/vocab/gr.rb +699 -254
- data/lib/rdf/vocab/gs1.rb +1765 -1761
- data/lib/rdf/vocab/ht.rb +23 -23
- data/lib/rdf/vocab/hydra.rb +104 -104
- data/lib/rdf/vocab/ical.rb +674 -127
- data/lib/rdf/vocab/identifiers.rb +120 -212
- data/lib/rdf/vocab/iiif.rb +25 -37
- data/lib/rdf/vocab/jsonld.rb +11 -11
- data/lib/rdf/vocab/ldp.rb +79 -69
- data/lib/rdf/vocab/lrmi.rb +63 -63
- data/lib/rdf/vocab/ma.rb +47 -132
- data/lib/rdf/vocab/mads.rb +83 -28
- data/lib/rdf/vocab/marc_relators.rb +12 -2201
- data/lib/rdf/vocab/mo.rb +920 -836
- data/lib/rdf/vocab/mods.rb +6 -13
- data/lib/rdf/vocab/oa.rb +82 -72
- data/lib/rdf/vocab/og.rb +50 -50
- data/lib/rdf/vocab/ogc.rb +9 -8
- data/lib/rdf/vocab/ore.rb +22 -19
- data/lib/rdf/vocab/org.rb +217 -167
- data/lib/rdf/vocab/pplan.rb +45 -45
- data/lib/rdf/vocab/premis.rb +855 -582
- data/lib/rdf/vocab/premis_event_type.rb +148 -70
- data/lib/rdf/vocab/prov.rb +842 -806
- data/lib/rdf/vocab/rightsstatements.rb +140 -157
- data/lib/rdf/vocab/rsa.rb +16 -13
- data/lib/rdf/vocab/rss.rb +10 -10
- data/lib/rdf/vocab/schema.rb +1448 -1448
- data/lib/rdf/vocab/sioc.rb +158 -159
- data/lib/rdf/vocab/sioc_services.rb +14 -14
- data/lib/rdf/vocab/sioct.rb +70 -70
- data/lib/rdf/vocab/skos.rb +97 -93
- data/lib/rdf/vocab/skosxl.rb +29 -24
- data/lib/rdf/vocab/v.rb +88 -90
- data/lib/rdf/vocab/vcard.rb +340 -196
- data/lib/rdf/vocab/vmd.rb +88 -90
- data/lib/rdf/vocab/vs.rb +15 -15
- data/lib/rdf/vocab/wdrs.rb +30 -30
- data/lib/rdf/vocab/wot.rb +47 -47
- data/lib/rdf/vocab/xhtml.rb +3 -3
- data/lib/rdf/vocab/xhv.rb +37 -123
- data/lib/rdf/vocab/xkos.rb +110 -107
- data/spec/vocab_spec.rb +6 -6
- metadata +19 -31
@@ -10,95 +10,173 @@ module RDF::Vocab
|
|
10
10
|
class PremisEventType < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/preservation/eventType/")
|
11
11
|
|
12
12
|
# Ontology definition
|
13
|
-
ontology :"http://id.loc.gov/vocabulary/preservation/eventType",
|
14
|
-
comment: %(Event types are actions performed on digital objects within a
|
13
|
+
ontology :"http://id.loc.gov/vocabulary/preservation/eventType/",
|
14
|
+
comment: %( Event types are actions performed on digital objects within a preservation repository. ).freeze,
|
15
15
|
label: "Event Type".freeze,
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
"mads:adminMetadata": [term(
|
17
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2010-06-01T00:00:00".freeze,
|
18
|
+
type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze,
|
19
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze,
|
20
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordStatus": "new".freeze
|
21
|
+
), term(
|
22
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2012-06-01T00:00:00".freeze,
|
23
|
+
type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze,
|
24
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze,
|
25
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze
|
26
|
+
), term(
|
27
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2017-12-01T00:00:00".freeze,
|
28
|
+
type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze,
|
29
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze,
|
30
|
+
"http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze
|
31
|
+
)],
|
32
|
+
"mads:hasMADSSchemeMember": ["premiseventtype:acc".freeze, "premiseventtype:app".freeze, "premiseventtype:cap".freeze, "premiseventtype:com".freeze, "premiseventtype:cre".freeze, "premiseventtype:dea".freeze, "premiseventtype:dec".freeze, "premiseventtype:del".freeze, "premiseventtype:der".freeze, "premiseventtype:dig".freeze, "premiseventtype:dis".freeze, "premiseventtype:dsg".freeze, "premiseventtype:enc".freeze, "premiseventtype:ffa".freeze, "premiseventtype:fil".freeze, "premiseventtype:fix".freeze, "premiseventtype:for".freeze, "premiseventtype:ima".freeze, "premiseventtype:ine".freeze, "premiseventtype:ing".freeze, "premiseventtype:ins".freeze, "premiseventtype:ipc".freeze, "premiseventtype:ipm".freeze, "premiseventtype:ips".freeze, "premiseventtype:mee".freeze, "premiseventtype:mem".freeze, "premiseventtype:mes".freeze, "premiseventtype:mig".freeze, "premiseventtype:mod".freeze, "premiseventtype:nor".freeze, "premiseventtype:pac".freeze, "premiseventtype:poa".freeze, "premiseventtype:qua".freeze, "premiseventtype:rec".freeze, "premiseventtype:red".freeze, "premiseventtype:ref".freeze, "premiseventtype:rep".freeze, "premiseventtype:tra".freeze, "premiseventtype:unp".freeze, "premiseventtype:unq".freeze, "premiseventtype:val".freeze, "premiseventtype:vir".freeze],
|
33
|
+
"skos:changeNote": [term(
|
34
|
+
"http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze,
|
35
|
+
"http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze,
|
36
|
+
type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze,
|
37
|
+
"http://purl.org/vocab/changeset/schema#createdDate": "2010-06-01T00:00:00".freeze,
|
38
|
+
"http://purl.org/vocab/changeset/schema#changeReason": "new".freeze
|
39
|
+
), term(
|
40
|
+
"http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze,
|
41
|
+
"http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze,
|
42
|
+
type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze,
|
43
|
+
"http://purl.org/vocab/changeset/schema#createdDate": "2012-06-01T00:00:00".freeze,
|
44
|
+
"http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze
|
45
|
+
), term(
|
46
|
+
"http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze,
|
47
|
+
"http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze,
|
48
|
+
type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze,
|
49
|
+
"http://purl.org/vocab/changeset/schema#createdDate": "2017-12-01T00:00:00".freeze,
|
50
|
+
"http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze
|
51
|
+
)],
|
20
52
|
type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze]
|
21
53
|
|
22
54
|
# Extra definitions
|
55
|
+
term :acc,
|
56
|
+
"mads:authoritativeLabel": "accession".freeze,
|
57
|
+
type: "mads:Authority".freeze
|
58
|
+
term :app,
|
59
|
+
"mads:authoritativeLabel": "appraisal".freeze,
|
60
|
+
type: "mads:Authority".freeze
|
23
61
|
term :cap,
|
24
|
-
|
25
|
-
:"mads:
|
26
|
-
:"skos:prefLabel" => %(capture).freeze,
|
27
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
62
|
+
"mads:authoritativeLabel": "capture".freeze,
|
63
|
+
type: "mads:Authority".freeze
|
28
64
|
term :com,
|
29
|
-
|
30
|
-
:"mads:
|
31
|
-
:"skos:prefLabel" => %(compression).freeze,
|
32
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
65
|
+
"mads:authoritativeLabel": "compression".freeze,
|
66
|
+
type: "mads:Authority".freeze
|
33
67
|
term :cre,
|
34
|
-
|
35
|
-
:"mads:
|
36
|
-
:"skos:prefLabel" => %(creation).freeze,
|
37
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
68
|
+
"mads:authoritativeLabel": "creation".freeze,
|
69
|
+
type: "mads:Authority".freeze
|
38
70
|
term :dea,
|
39
|
-
|
40
|
-
:"mads:
|
41
|
-
:"skos:prefLabel" => %(deaccession).freeze,
|
42
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
71
|
+
"mads:authoritativeLabel": "deaccession".freeze,
|
72
|
+
type: "mads:Authority".freeze
|
43
73
|
term :dec,
|
44
|
-
|
45
|
-
:"mads:
|
46
|
-
:"skos:prefLabel" => %(decompression).freeze,
|
47
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
74
|
+
"mads:authoritativeLabel": "decompression".freeze,
|
75
|
+
type: "mads:Authority".freeze
|
48
76
|
term :del,
|
49
|
-
|
50
|
-
:"mads:
|
51
|
-
:"skos:prefLabel" => %(deletion).freeze,
|
52
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
77
|
+
"mads:authoritativeLabel": "deletion".freeze,
|
78
|
+
type: "mads:Authority".freeze
|
53
79
|
term :der,
|
54
|
-
|
55
|
-
:"mads:
|
56
|
-
:"skos:prefLabel" => %(decryption).freeze,
|
57
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
80
|
+
"mads:authoritativeLabel": "decryption".freeze,
|
81
|
+
type: "mads:Authority".freeze
|
58
82
|
term :dig,
|
59
|
-
|
60
|
-
:"mads:
|
61
|
-
|
62
|
-
|
83
|
+
"mads:authoritativeLabel": "digital signature validation".freeze,
|
84
|
+
type: "mads:Authority".freeze
|
85
|
+
term :dis,
|
86
|
+
"mads:authoritativeLabel": "dissemination".freeze,
|
87
|
+
type: "mads:Authority".freeze
|
88
|
+
term :dsg,
|
89
|
+
"mads:authoritativeLabel": "digital signature generation".freeze,
|
90
|
+
type: "mads:Authority".freeze
|
91
|
+
term :enc,
|
92
|
+
"mads:authoritativeLabel": "encryption".freeze,
|
93
|
+
type: "mads:Authority".freeze
|
94
|
+
term :ffa,
|
95
|
+
"mads:authoritativeLabel": "forensic feature analysis".freeze,
|
96
|
+
type: "mads:Authority".freeze
|
97
|
+
term :fil,
|
98
|
+
"mads:authoritativeLabel": "filename change".freeze,
|
99
|
+
type: "mads:Authority".freeze
|
63
100
|
term :fix,
|
64
|
-
|
65
|
-
:"mads:
|
66
|
-
|
67
|
-
|
101
|
+
"mads:authoritativeLabel": "fixity check".freeze,
|
102
|
+
type: "mads:Authority".freeze
|
103
|
+
term :for,
|
104
|
+
"mads:authoritativeLabel": "format identification".freeze,
|
105
|
+
type: "mads:Authority".freeze
|
106
|
+
term :ima,
|
107
|
+
"mads:authoritativeLabel": "imaging".freeze,
|
108
|
+
type: "mads:Authority".freeze
|
109
|
+
term :ine,
|
110
|
+
"mads:authoritativeLabel": "ingestion end".freeze,
|
111
|
+
type: "mads:Authority".freeze
|
68
112
|
term :ing,
|
69
|
-
|
70
|
-
:"mads:
|
71
|
-
|
72
|
-
|
113
|
+
"mads:authoritativeLabel": "ingestion".freeze,
|
114
|
+
type: "mads:Authority".freeze
|
115
|
+
term :ins,
|
116
|
+
"mads:authoritativeLabel": "ingestion start".freeze,
|
117
|
+
type: "mads:Authority".freeze
|
118
|
+
term :ipc,
|
119
|
+
"mads:authoritativeLabel": "information package creation".freeze,
|
120
|
+
type: "mads:Authority".freeze
|
121
|
+
term :ipm,
|
122
|
+
"mads:authoritativeLabel": "information package merging".freeze,
|
123
|
+
type: "mads:Authority".freeze
|
124
|
+
term :ips,
|
125
|
+
"mads:authoritativeLabel": "information package splitting".freeze,
|
126
|
+
type: "mads:Authority".freeze
|
127
|
+
term :mee,
|
128
|
+
"mads:authoritativeLabel": "metadata extraction".freeze,
|
129
|
+
type: "mads:Authority".freeze
|
130
|
+
term :mem,
|
131
|
+
"mads:authoritativeLabel": "metadata modification".freeze,
|
132
|
+
type: "mads:Authority".freeze
|
73
133
|
term :mes,
|
74
|
-
|
75
|
-
:"mads:
|
76
|
-
:"skos:prefLabel" => %(message digest calculation).freeze,
|
77
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
134
|
+
"mads:authoritativeLabel": "message digest calculation".freeze,
|
135
|
+
type: "mads:Authority".freeze
|
78
136
|
term :mig,
|
79
|
-
|
80
|
-
:"mads:
|
81
|
-
|
82
|
-
|
137
|
+
"mads:authoritativeLabel": "migration".freeze,
|
138
|
+
type: "mads:Authority".freeze
|
139
|
+
term :mod,
|
140
|
+
"mads:authoritativeLabel": "modification".freeze,
|
141
|
+
type: "mads:Authority".freeze
|
83
142
|
term :nor,
|
84
|
-
|
85
|
-
:"mads:
|
86
|
-
|
87
|
-
|
143
|
+
"mads:authoritativeLabel": "normalization".freeze,
|
144
|
+
type: "mads:Authority".freeze
|
145
|
+
term :pac,
|
146
|
+
"mads:authoritativeLabel": "packing".freeze,
|
147
|
+
type: "mads:Authority".freeze
|
148
|
+
term :poa,
|
149
|
+
"mads:authoritativeLabel": "policy assignment".freeze,
|
150
|
+
type: "mads:Authority".freeze
|
151
|
+
term :qua,
|
152
|
+
"mads:authoritativeLabel": "quarantine".freeze,
|
153
|
+
type: "mads:Authority".freeze
|
154
|
+
term :rec,
|
155
|
+
"mads:authoritativeLabel": "recovery".freeze,
|
156
|
+
type: "mads:Authority".freeze
|
157
|
+
term :red,
|
158
|
+
"mads:authoritativeLabel": "redaction".freeze,
|
159
|
+
type: "mads:Authority".freeze
|
160
|
+
term :ref,
|
161
|
+
"mads:authoritativeLabel": "refreshment".freeze,
|
162
|
+
type: "mads:Authority".freeze
|
88
163
|
term :rep,
|
89
|
-
|
90
|
-
:"mads:
|
91
|
-
|
92
|
-
|
164
|
+
"mads:authoritativeLabel": "replication".freeze,
|
165
|
+
type: "mads:Authority".freeze
|
166
|
+
term :tra,
|
167
|
+
"mads:authoritativeLabel": "transfer".freeze,
|
168
|
+
type: "mads:Authority".freeze
|
169
|
+
term :unp,
|
170
|
+
"mads:authoritativeLabel": "unpacking".freeze,
|
171
|
+
type: "mads:Authority".freeze
|
172
|
+
term :unq,
|
173
|
+
"mads:authoritativeLabel": "unquarantine".freeze,
|
174
|
+
type: "mads:Authority".freeze
|
93
175
|
term :val,
|
94
|
-
|
95
|
-
:"mads:
|
96
|
-
:"skos:prefLabel" => %(validation).freeze,
|
97
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
176
|
+
"mads:authoritativeLabel": "validation".freeze,
|
177
|
+
type: "mads:Authority".freeze
|
98
178
|
term :vir,
|
99
|
-
|
100
|
-
:"mads:
|
101
|
-
:"skos:prefLabel" => %(virus check).freeze,
|
102
|
-
type: ["mads:Authority".freeze, "skos:Concept".freeze]
|
179
|
+
"mads:authoritativeLabel": "virus check".freeze,
|
180
|
+
type: "mads:Authority".freeze
|
103
181
|
end
|
104
182
|
end
|
data/lib/rdf/vocab/prov.rb
CHANGED
@@ -15,491 +15,512 @@ module RDF::Vocab
|
|
15
15
|
|
16
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
17
|
Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
|
18
|
+
isDefinedBy: "http://www.w3.org/ns/prov".freeze,
|
18
19
|
label: "W3C PROVenance Interchange".freeze,
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
:"rdfs:seeAlso" => [%(http://www.w3.org/TR/prov-o/#names-of-inverse-properties).freeze, %(http://www.w3.org/TR/prov-overview/).freeze],
|
20
|
+
"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],
|
21
|
+
"owl:versionIRI": ["http://www.w3.org/ns/prov-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses-20130430".freeze],
|
22
|
+
"prov:specializationOf": "http://www.w3.org/ns/prov-o-inverses".freeze,
|
23
|
+
"prov:wasDerivedFrom": ["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-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
24
|
+
"prov:wasRevisionOf": ["http://www.w3.org/ns/prov-20130312".freeze, "http://www.w3.org/ns/prov-o-inverses-20120312".freeze],
|
25
|
+
"rdfs:seeAlso": ["http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze, "http://www.w3.org/TR/prov-overview/".freeze],
|
26
26
|
type: "owl:Ontology".freeze
|
27
27
|
|
28
28
|
# Class definitions
|
29
29
|
term :Accept,
|
30
30
|
label: "Accept".freeze,
|
31
|
-
|
31
|
+
"prov:definition": "Activity that identifies the acceptance of a resource (e.g., an article in a conference)".freeze,
|
32
32
|
subClassOf: "prov:Activity".freeze,
|
33
33
|
type: "owl:Class".freeze
|
34
34
|
term :Activity,
|
35
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
35
36
|
label: "Activity".freeze,
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
37
|
+
"owl:disjointWith": "prov:Entity".freeze,
|
38
|
+
"prov:category": "starting-point".freeze,
|
39
|
+
"prov:component": "entities-activities".freeze,
|
40
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
41
|
+
"prov:definition": "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.".freeze,
|
42
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity".freeze,
|
43
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity".freeze,
|
44
44
|
type: "owl:Class".freeze
|
45
45
|
term :ActivityInfluence,
|
46
46
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
47
48
|
label: "ActivityInfluence".freeze,
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
:"
|
53
|
-
|
49
|
+
"owl:disjointWith": "prov:EntityInfluence".freeze,
|
50
|
+
"prov:category": "qualified".freeze,
|
51
|
+
"prov:editorsDefinition": "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.".freeze,
|
52
|
+
"rdfs:seeAlso": "prov:activity".freeze,
|
53
|
+
subClassOf: ["prov:Influence".freeze, term(
|
54
|
+
onProperty: "prov:hadActivity".freeze,
|
55
|
+
maxCardinality: "0".freeze,
|
56
|
+
type: "owl:Restriction".freeze
|
57
|
+
)],
|
54
58
|
type: "owl:Class".freeze
|
55
59
|
term :Agent,
|
60
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
56
61
|
label: "Agent".freeze,
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
62
|
+
"owl:disjointWith": "prov:InstantaneousEvent".freeze,
|
63
|
+
"prov:category": "starting-point".freeze,
|
64
|
+
"prov:component": "agents-responsibility".freeze,
|
65
|
+
"prov:definition": "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ".freeze,
|
66
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze,
|
67
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent".freeze,
|
64
68
|
type: "owl:Class".freeze
|
65
69
|
term :AgentInfluence,
|
66
70
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
67
72
|
label: "AgentInfluence".freeze,
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
:"rdfs:seeAlso" => %(prov:agent).freeze,
|
73
|
+
"prov:category": "qualified".freeze,
|
74
|
+
"prov:editorsDefinition": "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.".freeze,
|
75
|
+
"rdfs:seeAlso": "prov:agent".freeze,
|
72
76
|
subClassOf: "prov:Influence".freeze,
|
73
77
|
type: "owl:Class".freeze
|
74
78
|
term :Association,
|
75
79
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
76
81
|
label: "Association".freeze,
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
82
|
+
"prov:category": "qualified".freeze,
|
83
|
+
"prov:component": "agents-responsibility".freeze,
|
84
|
+
"prov:definition": "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.".freeze,
|
85
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze,
|
86
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze,
|
87
|
+
"prov:unqualifiedForm": "prov:wasAssociatedWith".freeze,
|
84
88
|
subClassOf: "prov:AgentInfluence".freeze,
|
85
89
|
type: "owl:Class".freeze
|
86
90
|
term :Attribution,
|
87
91
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
88
93
|
label: "Attribution".freeze,
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
:"prov:n" => %(http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution).freeze,
|
97
|
-
:"prov:unqualifiedForm" => %(prov:wasAttributedTo).freeze,
|
98
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
94
|
+
"prov:category": "qualified".freeze,
|
95
|
+
"prov:component": "agents-responsibility".freeze,
|
96
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
97
|
+
"prov:definition": "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.".freeze,
|
98
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution".freeze,
|
99
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution".freeze,
|
100
|
+
"prov:unqualifiedForm": "prov:wasAttributedTo".freeze,
|
99
101
|
subClassOf: "prov:AgentInfluence".freeze,
|
100
102
|
type: "owl:Class".freeze
|
101
103
|
term :Bundle,
|
102
104
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
103
106
|
label: "Bundle".freeze,
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
107
|
+
"prov:category": "expanded".freeze,
|
108
|
+
"prov:definition": "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.".freeze,
|
109
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity".freeze,
|
110
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration".freeze,
|
109
111
|
subClassOf: "prov:Entity".freeze,
|
110
112
|
type: "owl:Class".freeze
|
111
113
|
term :Collection,
|
114
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
112
115
|
label: "Collection".freeze,
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
116
|
+
"prov:category": "expanded".freeze,
|
117
|
+
"prov:component": "collections".freeze,
|
118
|
+
"prov:definition": "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.".freeze,
|
119
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection".freeze,
|
118
120
|
subClassOf: "prov:Entity".freeze,
|
119
121
|
type: "owl:Class".freeze
|
120
122
|
term :Communication,
|
121
123
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
122
125
|
label: "Communication".freeze,
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
126
|
+
"prov:category": "qualified".freeze,
|
127
|
+
"prov:component": "entities-activities".freeze,
|
128
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
129
|
+
"prov:definition": "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.".freeze,
|
130
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication".freeze,
|
131
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy".freeze,
|
132
|
+
"prov:unqualifiedForm": "prov:wasInformedBy".freeze,
|
131
133
|
subClassOf: "prov:ActivityInfluence".freeze,
|
132
134
|
type: "owl:Class".freeze
|
133
135
|
term :Contribute,
|
134
136
|
label: "Contribute\n".freeze,
|
135
|
-
|
137
|
+
"prov:definition": "Activity that identifies any contribution of an agent to a resource. ".freeze,
|
136
138
|
subClassOf: "prov:Activity".freeze,
|
137
139
|
type: "owl:Class".freeze
|
138
140
|
term :Contributor,
|
139
141
|
label: "Contributor".freeze,
|
140
|
-
|
142
|
+
"prov:definition": "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities".freeze,
|
141
143
|
subClassOf: "prov:Role".freeze,
|
142
144
|
type: "owl:Class".freeze
|
143
145
|
term :Copyright,
|
144
146
|
label: "Copyright".freeze,
|
145
|
-
|
147
|
+
"prov:definition": "Activity that identifies the Copyrighting activity associated to a resource.".freeze,
|
146
148
|
subClassOf: "prov:Activity".freeze,
|
147
149
|
type: "owl:Class".freeze
|
148
150
|
term :Create,
|
149
151
|
label: "Create".freeze,
|
150
|
-
|
152
|
+
"prov:definition": "Activity that identifies the creation of a resource".freeze,
|
151
153
|
subClassOf: "prov:Contribute".freeze,
|
152
154
|
type: "owl:Class".freeze
|
153
155
|
term :Creator,
|
154
156
|
label: "Creator".freeze,
|
155
|
-
|
157
|
+
"prov:definition": "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity".freeze,
|
156
158
|
subClassOf: "prov:Contributor".freeze,
|
157
159
|
type: "owl:Class".freeze
|
158
160
|
term :Delegation,
|
159
161
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
160
163
|
label: "Delegation".freeze,
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
:"prov:n" => %(http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation).freeze,
|
168
|
-
:"prov:unqualifiedForm" => %(prov:actedOnBehalfOf).freeze,
|
169
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
164
|
+
"prov:category": "qualified".freeze,
|
165
|
+
"prov:component": "agents-responsibility".freeze,
|
166
|
+
"prov:definition": "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.".freeze,
|
167
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation".freeze,
|
168
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation".freeze,
|
169
|
+
"prov:unqualifiedForm": "prov:actedOnBehalfOf".freeze,
|
170
170
|
subClassOf: "prov:AgentInfluence".freeze,
|
171
171
|
type: "owl:Class".freeze
|
172
172
|
term :Derivation,
|
173
173
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
174
175
|
label: "Derivation".freeze,
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
176
|
+
"prov:category": "qualified".freeze,
|
177
|
+
"prov:component": "derivations".freeze,
|
178
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
179
|
+
"prov:definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze,
|
180
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation".freeze,
|
181
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation".freeze,
|
182
|
+
"prov:unqualifiedForm": "prov:wasDerivedFrom".freeze,
|
183
183
|
subClassOf: "prov:EntityInfluence".freeze,
|
184
184
|
type: "owl:Class".freeze
|
185
185
|
term :Dictionary,
|
186
186
|
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
|
+
isDefinedBy: "prov:".freeze,
|
187
188
|
label: "Dictionary".freeze,
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
189
|
+
"prov:category": "collections".freeze,
|
190
|
+
"prov:component": "collections".freeze,
|
191
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
192
|
+
"prov:definition": "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.".freeze,
|
193
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze,
|
194
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze,
|
195
195
|
type: "owl:Class".freeze
|
196
196
|
term :DirectQueryService,
|
197
197
|
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
|
+
isDefinedBy: "prov:".freeze,
|
198
199
|
label: "ProvenanceService".freeze,
|
199
|
-
|
200
|
-
|
201
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
200
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze,
|
201
|
+
"prov:category": "access-and-query".freeze,
|
202
202
|
subClassOf: "prov:SoftwareAgent".freeze,
|
203
203
|
type: "owl:Class".freeze
|
204
204
|
term :EmptyCollection,
|
205
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
205
206
|
label: "EmptyCollection".freeze,
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
207
|
+
"prov:category": "expanded".freeze,
|
208
|
+
"prov:component": "collections".freeze,
|
209
|
+
"prov:definition": "An empty collection is a collection without members.".freeze,
|
210
210
|
subClassOf: "prov:Collection".freeze,
|
211
211
|
type: ["owl:Class".freeze, "owl:NamedIndividual".freeze]
|
212
212
|
term :EmptyDictionary,
|
213
|
+
isDefinedBy: "prov:".freeze,
|
213
214
|
label: "Empty Dictionary".freeze,
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
215
|
+
"prov:category": "collections".freeze,
|
216
|
+
"prov:component": "collections".freeze,
|
217
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
218
|
+
"prov:definition": "An empty dictionary (i.e. has no members).".freeze,
|
219
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze,
|
220
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze,
|
221
221
|
subClassOf: ["prov:Dictionary".freeze, "prov:EmptyCollection".freeze],
|
222
222
|
type: "owl:Class".freeze
|
223
223
|
term :End,
|
224
224
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
225
226
|
label: "End".freeze,
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
227
|
+
"prov:category": "qualified".freeze,
|
228
|
+
"prov:component": "entities-activities".freeze,
|
229
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
230
|
+
"prov:definition": "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.".freeze,
|
231
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End".freeze,
|
232
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End".freeze,
|
233
|
+
"prov:unqualifiedForm": "prov:wasEndedBy".freeze,
|
234
234
|
subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
235
235
|
type: "owl:Class".freeze
|
236
236
|
term :Entity,
|
237
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
237
238
|
label: "Entity".freeze,
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
239
|
+
"owl:disjointWith": "prov:InstantaneousEvent".freeze,
|
240
|
+
"prov:category": "starting-point".freeze,
|
241
|
+
"prov:component": "entities-activities".freeze,
|
242
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
243
|
+
"prov:definition": "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ".freeze,
|
244
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity".freeze,
|
245
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity".freeze,
|
246
246
|
type: "owl:Class".freeze
|
247
247
|
term :EntityInfluence,
|
248
248
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
249
250
|
label: "EntityInfluence".freeze,
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
:"rdfs:seeAlso" => %(prov:entity).freeze,
|
251
|
+
"prov:category": "qualified".freeze,
|
252
|
+
"prov:editorsDefinition": "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ".freeze,
|
253
|
+
"rdfs:seeAlso": "prov:entity".freeze,
|
254
254
|
subClassOf: "prov:Influence".freeze,
|
255
255
|
type: "owl:Class".freeze
|
256
256
|
term :Generation,
|
257
257
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
258
259
|
label: "Generation".freeze,
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
260
|
+
"prov:category": "qualified".freeze,
|
261
|
+
"prov:component": "entities-activities".freeze,
|
262
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
263
|
+
"prov:definition": "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.".freeze,
|
264
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation".freeze,
|
265
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation".freeze,
|
266
|
+
"prov:unqualifiedForm": "prov:wasGeneratedBy".freeze,
|
267
267
|
subClassOf: ["prov:ActivityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
268
268
|
type: "owl:Class".freeze
|
269
269
|
term :Influence,
|
270
270
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
271
272
|
label: "Influence".freeze,
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
273
|
+
"prov:category": "qualified".freeze,
|
274
|
+
"prov:component": "derivations".freeze,
|
275
|
+
"prov:definition": "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.".freeze,
|
276
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze,
|
277
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence".freeze,
|
278
|
+
"prov:unqualifiedForm": "prov:wasInfluencedBy".freeze,
|
279
279
|
type: "owl:Class".freeze
|
280
280
|
term :Insertion,
|
281
|
+
isDefinedBy: "prov:".freeze,
|
281
282
|
label: "Insertion".freeze,
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
:"
|
290
|
-
|
283
|
+
"prov:category": "collections".freeze,
|
284
|
+
"prov:component": "collections".freeze,
|
285
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
286
|
+
"prov:definition": "Insertion is a derivation that transforms a dictionary into another, by insertion of one or more key-entity pairs.".freeze,
|
287
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze,
|
288
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze,
|
289
|
+
"prov:unqualifiedForm": "prov:derivedByInsertionFrom".freeze,
|
290
|
+
subClassOf: ["prov:Derivation".freeze, term(
|
291
|
+
onProperty: "prov:dictionary".freeze,
|
292
|
+
cardinality: "1".freeze,
|
293
|
+
type: "owl:Restriction".freeze
|
294
|
+
), term(
|
295
|
+
onProperty: "prov:insertedKeyEntityPair".freeze,
|
296
|
+
type: "owl:Restriction".freeze,
|
297
|
+
minCardinality: "1".freeze
|
298
|
+
)],
|
291
299
|
type: "owl:Class".freeze
|
292
300
|
term :InstantaneousEvent,
|
293
301
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
294
303
|
label: "InstantaneousEvent".freeze,
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
304
|
+
"prov:category": "qualified".freeze,
|
305
|
+
"prov:component": "entities-activities".freeze,
|
306
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event".freeze,
|
307
|
+
"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,
|
300
308
|
type: "owl:Class".freeze
|
301
309
|
term :Invalidation,
|
302
310
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
303
312
|
label: "Invalidation".freeze,
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
313
|
+
"prov:category": "qualified".freeze,
|
314
|
+
"prov:component": "entities-activities".freeze,
|
315
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
316
|
+
"prov:definition": "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.".freeze,
|
317
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation".freeze,
|
318
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation".freeze,
|
319
|
+
"prov:unqualifiedForm": "prov:wasInvalidatedBy".freeze,
|
312
320
|
subClassOf: ["prov:ActivityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
313
321
|
type: "owl:Class".freeze
|
314
322
|
term :KeyEntityPair,
|
323
|
+
isDefinedBy: "prov:".freeze,
|
315
324
|
label: "Key-Entity Pair".freeze,
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
:
|
325
|
+
"prov:category": "collections".freeze,
|
326
|
+
"prov:component": "collections".freeze,
|
327
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
328
|
+
"prov:definition": "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.".freeze,
|
329
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze,
|
330
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze,
|
331
|
+
subClassOf: [term(
|
332
|
+
onProperty: "prov:pairEntity".freeze,
|
333
|
+
cardinality: "1".freeze,
|
334
|
+
type: "owl:Restriction".freeze
|
335
|
+
), term(
|
336
|
+
onProperty: "prov:pairKey".freeze,
|
337
|
+
cardinality: "1".freeze,
|
338
|
+
type: "owl:Restriction".freeze
|
339
|
+
)],
|
323
340
|
type: "owl:Class".freeze
|
324
341
|
term :Location,
|
342
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
325
343
|
label: "Location".freeze,
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
:"rdfs:seeAlso" => %(prov:atLocation).freeze,
|
344
|
+
"prov:category": "expanded".freeze,
|
345
|
+
"prov:definition": "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.".freeze,
|
346
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location".freeze,
|
347
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze,
|
348
|
+
"rdfs:seeAlso": "prov:atLocation".freeze,
|
332
349
|
type: "owl:Class".freeze
|
333
350
|
term :Modify,
|
334
351
|
label: "Modify".freeze,
|
335
|
-
|
352
|
+
"prov:definition": "Activity that identifies the modification of a resource. ".freeze,
|
336
353
|
subClassOf: "prov:Activity".freeze,
|
337
354
|
type: "owl:Class".freeze
|
338
355
|
term :Organization,
|
356
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
339
357
|
label: "Organization".freeze,
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
358
|
+
"prov:category": "expanded".freeze,
|
359
|
+
"prov:component": "agents-responsibility".freeze,
|
360
|
+
"prov:definition": "An organization is a social or legal institution such as a company, society, etc.".freeze,
|
361
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze,
|
362
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze,
|
346
363
|
subClassOf: "prov:Agent".freeze,
|
347
364
|
type: "owl:Class".freeze
|
348
365
|
term :Person,
|
366
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
349
367
|
label: "Person".freeze,
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
368
|
+
"prov:category": "expanded".freeze,
|
369
|
+
"prov:component": "agents-responsibility".freeze,
|
370
|
+
"prov:definition": "Person agents are people.".freeze,
|
371
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze,
|
372
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze,
|
356
373
|
subClassOf: "prov:Agent".freeze,
|
357
374
|
type: "owl:Class".freeze
|
358
375
|
term :Plan,
|
359
376
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
360
378
|
label: "Plan".freeze,
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
379
|
+
"prov:category": ["expanded".freeze, "qualified".freeze],
|
380
|
+
"prov:component": "agents-responsibility".freeze,
|
381
|
+
"prov:definition": "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.".freeze,
|
382
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze,
|
383
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze,
|
367
384
|
subClassOf: "prov:Entity".freeze,
|
368
385
|
type: "owl:Class".freeze
|
369
386
|
term :PrimarySource,
|
370
387
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
371
389
|
label: "PrimarySource".freeze,
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
A primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.).freeze,
|
379
|
-
:"prov:dm" => %(http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source).freeze,
|
380
|
-
:"prov:n" => %(http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source).freeze,
|
381
|
-
:"prov:unqualifiedForm" => %(prov:hadPrimarySource).freeze,
|
382
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
390
|
+
"prov:category": "qualified".freeze,
|
391
|
+
"prov:component": "derivations".freeze,
|
392
|
+
"prov:definition": "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.".freeze,
|
393
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source".freeze,
|
394
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source".freeze,
|
395
|
+
"prov:unqualifiedForm": "prov:hadPrimarySource".freeze,
|
383
396
|
subClassOf: "prov:Derivation".freeze,
|
384
397
|
type: "owl:Class".freeze
|
385
398
|
term :Publish,
|
386
399
|
label: "Publish".freeze,
|
387
|
-
|
400
|
+
"prov:definition": "Activity that identifies the publication of a resource".freeze,
|
388
401
|
subClassOf: "prov:Activity".freeze,
|
389
402
|
type: "owl:Class".freeze
|
390
403
|
term :Publisher,
|
391
404
|
label: "Publisher".freeze,
|
392
|
-
|
405
|
+
"prov:definition": "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity".freeze,
|
393
406
|
subClassOf: "prov:Role".freeze,
|
394
407
|
type: "owl:Class".freeze
|
395
408
|
term :Quotation,
|
396
409
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
397
411
|
label: "Quotation".freeze,
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
412
|
+
"prov:category": "qualified".freeze,
|
413
|
+
"prov:component": "derivations".freeze,
|
414
|
+
"prov:definition": "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.".freeze,
|
415
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation".freeze,
|
416
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation".freeze,
|
417
|
+
"prov:unqualifiedForm": "prov:wasQuotedFrom".freeze,
|
405
418
|
subClassOf: "prov:Derivation".freeze,
|
406
419
|
type: "owl:Class".freeze
|
407
420
|
term :Removal,
|
421
|
+
isDefinedBy: "prov:".freeze,
|
408
422
|
label: "Removal".freeze,
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
:"
|
417
|
-
|
423
|
+
"prov:category": "collections".freeze,
|
424
|
+
"prov:component": "collections".freeze,
|
425
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
426
|
+
"prov:definition": "Removal is a derivation that transforms a dictionary into another, by removing one or more key-entity pairs.".freeze,
|
427
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze,
|
428
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze,
|
429
|
+
"prov:unqualifiedForm": "prov:derivedByRemovalFrom".freeze,
|
430
|
+
subClassOf: ["prov:Derivation".freeze, term(
|
431
|
+
onProperty: "prov:dictionary".freeze,
|
432
|
+
cardinality: "1".freeze,
|
433
|
+
type: "owl:Restriction".freeze
|
434
|
+
), term(
|
435
|
+
onProperty: "prov:removedKey".freeze,
|
436
|
+
type: "owl:Restriction".freeze,
|
437
|
+
minCardinality: "1".freeze
|
438
|
+
)],
|
418
439
|
type: "owl:Class".freeze
|
419
440
|
term :Replace,
|
420
441
|
label: "Replace".freeze,
|
421
|
-
|
442
|
+
"prov:definition": "Activity that identifies the replacement of a resource.".freeze,
|
422
443
|
subClassOf: "prov:Activity".freeze,
|
423
444
|
type: "owl:Class".freeze
|
424
445
|
term :Revision,
|
425
446
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
426
448
|
label: "Revision".freeze,
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
449
|
+
"prov:category": "qualified".freeze,
|
450
|
+
"prov:component": "derivations".freeze,
|
451
|
+
"prov:definition": "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.".freeze,
|
452
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision".freeze,
|
453
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision".freeze,
|
454
|
+
"prov:unqualifiedForm": "prov:wasRevisionOf".freeze,
|
434
455
|
subClassOf: "prov:Derivation".freeze,
|
435
456
|
type: "owl:Class".freeze
|
436
457
|
term :RightsAssignment,
|
437
458
|
label: "RightsAssignment".freeze,
|
438
|
-
|
459
|
+
"prov:definition": "Activity that identifies the rights assignment of a resource.".freeze,
|
439
460
|
subClassOf: "prov:Activity".freeze,
|
440
461
|
type: "owl:Class".freeze
|
441
462
|
term :RightsHolder,
|
442
463
|
label: "RightsHolder".freeze,
|
443
|
-
|
464
|
+
"prov:definition": "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity".freeze,
|
444
465
|
subClassOf: "prov:Role".freeze,
|
445
466
|
type: "owl:Class".freeze
|
446
467
|
term :Role,
|
468
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
447
469
|
label: "Role".freeze,
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
:"rdfs:seeAlso" => %(prov:hadRole).freeze,
|
470
|
+
"prov:category": "qualified".freeze,
|
471
|
+
"prov:component": "agents-responsibility".freeze,
|
472
|
+
"prov:definition": "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.".freeze,
|
473
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role".freeze,
|
474
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze,
|
475
|
+
"rdfs:seeAlso": "prov:hadRole".freeze,
|
455
476
|
type: "owl:Class".freeze
|
456
477
|
term :ServiceDescription,
|
457
478
|
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
|
+
isDefinedBy: "prov:".freeze,
|
458
480
|
label: "ServiceDescription".freeze,
|
459
|
-
|
460
|
-
|
461
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
481
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze,
|
482
|
+
"prov:category": "access-and-query".freeze,
|
462
483
|
subClassOf: "prov:SoftwareAgent".freeze,
|
463
484
|
type: "owl:Class".freeze
|
464
485
|
term :SoftwareAgent,
|
486
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
465
487
|
label: "SoftwareAgent".freeze,
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
488
|
+
"prov:category": "expanded".freeze,
|
489
|
+
"prov:component": "agents-responsibility".freeze,
|
490
|
+
"prov:definition": "A software agent is running software.".freeze,
|
491
|
+
"prov:dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze],
|
492
|
+
"prov:n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze],
|
472
493
|
subClassOf: ["owl:Thing".freeze, "prov:Agent".freeze],
|
473
494
|
type: "owl:Class".freeze
|
474
495
|
term :Start,
|
475
496
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
476
498
|
label: "Start".freeze,
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
499
|
+
"prov:category": "qualified".freeze,
|
500
|
+
"prov:component": "entities-activities".freeze,
|
501
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
502
|
+
"prov:definition": "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.".freeze,
|
503
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start".freeze,
|
504
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start".freeze,
|
505
|
+
"prov:unqualifiedForm": "prov:wasStartedBy".freeze,
|
485
506
|
subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
486
507
|
type: "owl:Class".freeze
|
487
508
|
term :Submit,
|
488
509
|
label: "Submit".freeze,
|
489
|
-
|
510
|
+
"prov:definition": "Activity that identifies the issuance (e.g., publication) of a resource. ".freeze,
|
490
511
|
subClassOf: "prov:Activity".freeze,
|
491
512
|
type: "owl:Class".freeze
|
492
513
|
term :Usage,
|
493
514
|
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
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
494
516
|
label: "Usage".freeze,
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
517
|
+
"prov:category": "qualified".freeze,
|
518
|
+
"prov:component": "entities-activities".freeze,
|
519
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
520
|
+
"prov:definition": "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.".freeze,
|
521
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage".freeze,
|
522
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage".freeze,
|
523
|
+
"prov:unqualifiedForm": "prov:used".freeze,
|
503
524
|
subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze],
|
504
525
|
type: "owl:Class".freeze
|
505
526
|
|
@@ -507,55 +528,55 @@ A primary source relation is a particular case of derivation of secondary materi
|
|
507
528
|
property :actedOnBehalfOf,
|
508
529
|
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,
|
509
530
|
domain: "prov:Agent".freeze,
|
531
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
510
532
|
label: "actedOnBehalfOf".freeze,
|
511
|
-
:"prov:
|
512
|
-
|
513
|
-
|
514
|
-
|
533
|
+
"owl:propertyChainAxiom": ["prov:agent".freeze, "prov:qualifiedDelegation".freeze],
|
534
|
+
"prov:category": "starting-point".freeze,
|
535
|
+
"prov:component": "agents-responsibility".freeze,
|
536
|
+
"prov:inverse": "hadDelegate".freeze,
|
537
|
+
"prov:qualifiedForm": ["prov:Delegation".freeze, "prov:qualifiedDelegation".freeze],
|
515
538
|
range: "prov:Agent".freeze,
|
516
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
517
539
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
518
540
|
type: "owl:ObjectProperty".freeze
|
519
541
|
property :activity,
|
520
542
|
domain: "prov:ActivityInfluence".freeze,
|
543
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
521
544
|
label: "activity".freeze,
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
545
|
+
"prov:category": "qualified".freeze,
|
546
|
+
"prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze,
|
547
|
+
"prov:editorsDefinition": "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze,
|
548
|
+
"prov:inverse": "activityOfInfluence".freeze,
|
526
549
|
range: "prov:Activity".freeze,
|
527
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
528
550
|
subPropertyOf: "prov:influencer".freeze,
|
529
551
|
type: "owl:ObjectProperty".freeze
|
530
552
|
property :agent,
|
531
553
|
domain: "prov:AgentInfluence".freeze,
|
554
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
532
555
|
label: "agent".freeze,
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
556
|
+
"prov:category": "qualified".freeze,
|
557
|
+
"prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze,
|
558
|
+
"prov:editorsDefinition": "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze,
|
559
|
+
"prov:inverse": "agentOfInfluence".freeze,
|
537
560
|
range: "prov:Agent".freeze,
|
538
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
539
561
|
subPropertyOf: "prov:influencer".freeze,
|
540
562
|
type: "owl:ObjectProperty".freeze
|
541
563
|
property :alternateOf,
|
542
564
|
domain: "prov:Entity".freeze,
|
565
|
+
inverseOf: "prov:alternateOf".freeze,
|
566
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
543
567
|
label: "alternateOf".freeze,
|
544
|
-
:"
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
:"prov:n" => %(http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate).freeze,
|
568
|
+
"prov:category": "expanded".freeze,
|
569
|
+
"prov:component": "alternate".freeze,
|
570
|
+
"prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze,
|
571
|
+
"prov:definition": "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.".freeze,
|
572
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate".freeze,
|
573
|
+
"prov:inverse": "alternateOf".freeze,
|
574
|
+
"prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate".freeze,
|
552
575
|
range: "prov:Entity".freeze,
|
553
|
-
|
554
|
-
:"rdfs:seeAlso" => %(prov:specializationOf).freeze,
|
576
|
+
"rdfs:seeAlso": "prov:specializationOf".freeze,
|
555
577
|
type: "owl:ObjectProperty".freeze
|
556
578
|
property :aq,
|
557
|
-
|
558
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
579
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
559
580
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
560
581
|
type: "owl:AnnotationProperty".freeze
|
561
582
|
property :asInBundle,
|
@@ -563,478 +584,479 @@ A primary source relation is a particular case of derivation of secondary materi
|
|
563
584
|
|
564
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,
|
565
586
|
domain: "prov:Entity".freeze,
|
587
|
+
isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze,
|
566
588
|
label: "asInBundle".freeze,
|
567
|
-
|
568
|
-
|
589
|
+
"prov:inverse": "contextOf".freeze,
|
590
|
+
"prov:sharesDefinitionWith": "prov:mentionOf".freeze,
|
569
591
|
range: "prov:Bundle".freeze,
|
570
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-links#).freeze,
|
571
592
|
type: "owl:ObjectProperty".freeze
|
572
593
|
property :atLocation,
|
573
594
|
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
|
+
domain: term(
|
596
|
+
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze, "prov:InstantaneousEvent".freeze),
|
597
|
+
type: "owl:Class".freeze
|
598
|
+
),
|
599
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
574
600
|
label: "atLocation".freeze,
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
601
|
+
"prov:category": "expanded".freeze,
|
602
|
+
"prov:editorialNote": ["The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.".freeze, "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).".freeze],
|
603
|
+
"prov:inverse": "locationOf".freeze,
|
604
|
+
"prov:sharesDefinitionWith": "prov:Location".freeze,
|
579
605
|
range: "prov:Location".freeze,
|
580
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
581
606
|
type: "owl:ObjectProperty".freeze
|
582
607
|
property :atTime,
|
583
608
|
comment: %(The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.).freeze,
|
584
609
|
domain: "prov:InstantaneousEvent".freeze,
|
610
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
585
611
|
label: "atTime".freeze,
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
612
|
+
"prov:category": "qualified".freeze,
|
613
|
+
"prov:component": "entities-activities".freeze,
|
614
|
+
"prov:sharesDefinitionWith": "prov:InstantaneousEvent".freeze,
|
615
|
+
"prov:unqualifiedForm": ["prov:endedAtTime".freeze, "prov:generatedAtTime".freeze, "prov:invalidatedAtTime".freeze, "prov:startedAtTime".freeze],
|
590
616
|
range: "xsd:dateTime".freeze,
|
591
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
592
617
|
type: "owl:DatatypeProperty".freeze
|
593
618
|
property :category,
|
594
619
|
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,
|
595
|
-
|
596
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
620
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
597
621
|
type: "owl:AnnotationProperty".freeze
|
598
622
|
property :component,
|
599
623
|
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,
|
600
|
-
|
601
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
624
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
602
625
|
type: "owl:AnnotationProperty".freeze
|
603
626
|
property :constraints,
|
604
627
|
comment: %(A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.).freeze,
|
605
|
-
|
606
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
628
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
607
629
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
608
630
|
type: "owl:AnnotationProperty".freeze
|
609
631
|
property :definition,
|
610
632
|
comment: %(A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.).freeze,
|
611
|
-
|
612
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
633
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
613
634
|
type: "owl:AnnotationProperty".freeze
|
614
635
|
property :derivedByInsertionFrom,
|
615
636
|
domain: "prov:Dictionary".freeze,
|
637
|
+
isDefinedBy: "prov:".freeze,
|
616
638
|
label: "derivedByInsertionFrom".freeze,
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
639
|
+
"prov:category": "collections".freeze,
|
640
|
+
"prov:component": "collections".freeze,
|
641
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
642
|
+
"prov:definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze,
|
643
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze,
|
644
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze,
|
623
645
|
range: "prov:Dictionary".freeze,
|
624
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
625
646
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
626
647
|
type: "owl:ObjectProperty".freeze
|
627
648
|
property :derivedByRemovalFrom,
|
628
649
|
domain: "prov:Dictionary".freeze,
|
650
|
+
isDefinedBy: "prov:".freeze,
|
629
651
|
label: "derivedByRemovalFrom".freeze,
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
652
|
+
"prov:category": "collections".freeze,
|
653
|
+
"prov:component": "collections".freeze,
|
654
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
655
|
+
"prov:definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed key-entity pairs.".freeze,
|
656
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze,
|
657
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze,
|
636
658
|
range: "prov:Dictionary".freeze,
|
637
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
638
659
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
639
660
|
type: "owl:ObjectProperty".freeze
|
640
661
|
property :describesService,
|
641
662
|
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
|
+
isDefinedBy: "prov:".freeze,
|
642
664
|
label: "describesService".freeze,
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
665
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description".freeze,
|
666
|
+
"prov:category": "access-and-query".freeze,
|
667
|
+
"prov:inverse": "serviceDescribedBy".freeze,
|
647
668
|
type: "owl:ObjectProperty".freeze
|
648
669
|
property :dictionary,
|
649
670
|
domain: ["prov:Insertion".freeze, "prov:Removal".freeze],
|
671
|
+
isDefinedBy: "prov:".freeze,
|
650
672
|
label: "dictionary".freeze,
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
673
|
+
"prov:category": "collections".freeze,
|
674
|
+
"prov:component": "collections".freeze,
|
675
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
676
|
+
"prov:definition": "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.".freeze,
|
677
|
+
"prov:dm": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze],
|
678
|
+
"prov:n": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze],
|
657
679
|
range: "prov:Dictionary".freeze,
|
658
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
659
680
|
subPropertyOf: "prov:entity".freeze,
|
660
681
|
type: "owl:ObjectProperty".freeze
|
661
682
|
property :dm,
|
662
683
|
comment: %(A reference to the principal section of the PROV-DM document that describes this concept.).freeze,
|
663
|
-
|
664
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
684
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
665
685
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
666
686
|
type: "owl:AnnotationProperty".freeze
|
667
687
|
property :editorialNote,
|
668
688
|
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,
|
669
|
-
|
670
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
689
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
671
690
|
type: "owl:AnnotationProperty".freeze
|
672
691
|
property :editorsDefinition,
|
673
692
|
comment: %(When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.).freeze,
|
674
|
-
|
675
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
693
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
676
694
|
subPropertyOf: "prov:definition".freeze,
|
677
695
|
type: "owl:AnnotationProperty".freeze
|
678
696
|
property :endedAtTime,
|
679
697
|
comment: %(The time at which an activity ended. See also prov:startedAtTime.).freeze,
|
680
698
|
domain: "prov:Activity".freeze,
|
699
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
681
700
|
label: "endedAtTime".freeze,
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
701
|
+
"prov:category": "starting-point".freeze,
|
702
|
+
"prov:component": "entities-activities".freeze,
|
703
|
+
"prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.".freeze,
|
704
|
+
"prov:qualifiedForm": ["prov:End".freeze, "prov:atTime".freeze],
|
686
705
|
range: "xsd:dateTime".freeze,
|
687
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
688
706
|
type: "owl:DatatypeProperty".freeze
|
689
707
|
property :entity,
|
690
708
|
domain: "prov:EntityInfluence".freeze,
|
709
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
691
710
|
label: "entity".freeze,
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
711
|
+
"prov:category": "qualified".freeze,
|
712
|
+
"prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze,
|
713
|
+
"prov:editorsDefinition": "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze,
|
714
|
+
"prov:inverse": "entityOfInfluence".freeze,
|
696
715
|
range: "prov:Entity".freeze,
|
697
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
698
716
|
subPropertyOf: "prov:influencer".freeze,
|
699
717
|
type: "owl:ObjectProperty".freeze
|
700
718
|
property :generated,
|
701
719
|
domain: "prov:Activity".freeze,
|
720
|
+
inverseOf: "prov:wasGeneratedBy".freeze,
|
721
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
702
722
|
label: "generated".freeze,
|
703
|
-
:"
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
:"prov:
|
708
|
-
:"prov:sharesDefinitionWith" => %(prov:Generation).freeze,
|
723
|
+
"prov:category": "expanded".freeze,
|
724
|
+
"prov:component": "entities-activities".freeze,
|
725
|
+
"prov:editorialNote": "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze,
|
726
|
+
"prov:inverse": "wasGeneratedBy".freeze,
|
727
|
+
"prov:sharesDefinitionWith": "prov:Generation".freeze,
|
709
728
|
range: "prov:Entity".freeze,
|
710
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
711
729
|
subPropertyOf: "prov:influenced".freeze,
|
712
730
|
type: "owl:ObjectProperty".freeze
|
713
731
|
property :generatedAtTime,
|
714
732
|
comment: %(The time at which an entity was completely created and is available for use.).freeze,
|
715
733
|
domain: "prov:Entity".freeze,
|
734
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
716
735
|
label: "generatedAtTime".freeze,
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
736
|
+
"prov:category": "expanded".freeze,
|
737
|
+
"prov:component": "entities-activities".freeze,
|
738
|
+
"prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.".freeze,
|
739
|
+
"prov:qualifiedForm": ["prov:Generation".freeze, "prov:atTime".freeze],
|
721
740
|
range: "xsd:dateTime".freeze,
|
722
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
723
741
|
type: "owl:DatatypeProperty".freeze
|
724
742
|
property :hadActivity,
|
725
743
|
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],
|
726
|
-
domain: "prov:Influence".freeze,
|
744
|
+
domain: ["prov:Influence".freeze, term(
|
745
|
+
unionOf: list("prov:Delegation".freeze, "prov:Derivation".freeze, "prov:End".freeze, "prov:Start".freeze),
|
746
|
+
type: "owl:Class".freeze
|
747
|
+
)],
|
748
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
727
749
|
label: "hadActivity".freeze,
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
750
|
+
"prov:category": "qualified".freeze,
|
751
|
+
"prov:component": "derivations".freeze,
|
752
|
+
"prov:editorialNote": "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.".freeze,
|
753
|
+
"prov:inverse": "wasActivityOfInfluence".freeze,
|
754
|
+
"prov:sharesDefinitionWith": "prov:Activity".freeze,
|
733
755
|
range: "prov:Activity".freeze,
|
734
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
735
756
|
type: "owl:ObjectProperty".freeze
|
736
757
|
property :hadDictionaryMember,
|
737
758
|
domain: "prov:Dictionary".freeze,
|
759
|
+
isDefinedBy: "prov:".freeze,
|
738
760
|
label: "hadDictionaryMember".freeze,
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
761
|
+
"prov:category": "collections".freeze,
|
762
|
+
"prov:component": "collections".freeze,
|
763
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
764
|
+
"prov:definition": "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.".freeze,
|
765
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze,
|
766
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze,
|
745
767
|
range: "prov:KeyEntityPair".freeze,
|
746
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
747
768
|
type: "owl:ObjectProperty".freeze
|
748
769
|
property :hadGeneration,
|
749
770
|
comment: %(The _optional_ Generation involved in an Entity's Derivation.).freeze,
|
750
771
|
domain: "prov:Derivation".freeze,
|
772
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
751
773
|
label: "hadGeneration".freeze,
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
774
|
+
"prov:category": "qualified".freeze,
|
775
|
+
"prov:component": "derivations".freeze,
|
776
|
+
"prov:inverse": "generatedAsDerivation".freeze,
|
777
|
+
"prov:sharesDefinitionWith": "prov:Generation".freeze,
|
756
778
|
range: "prov:Generation".freeze,
|
757
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
758
779
|
type: "owl:ObjectProperty".freeze
|
759
780
|
property :hadMember,
|
760
781
|
domain: "prov:Collection".freeze,
|
782
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
761
783
|
label: "hadMember".freeze,
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
784
|
+
"prov:category": "expanded".freeze,
|
785
|
+
"prov:component": "expanded".freeze,
|
786
|
+
"prov:inverse": "wasMemberOf".freeze,
|
787
|
+
"prov:sharesDefinitionWith": "prov:Collection".freeze,
|
766
788
|
range: "prov:Entity".freeze,
|
767
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
768
789
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
769
790
|
type: "owl:ObjectProperty".freeze
|
770
791
|
property :hadPlan,
|
771
792
|
comment: %(The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.).freeze,
|
772
793
|
domain: "prov:Association".freeze,
|
794
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
773
795
|
label: "hadPlan".freeze,
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
796
|
+
"prov:category": "qualified".freeze,
|
797
|
+
"prov:component": "agents-responsibility".freeze,
|
798
|
+
"prov:inverse": "wasPlanOf".freeze,
|
799
|
+
"prov:sharesDefinitionWith": "prov:Plan".freeze,
|
778
800
|
range: "prov:Plan".freeze,
|
779
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
780
801
|
type: "owl:ObjectProperty".freeze
|
781
802
|
property :hadPrimarySource,
|
782
803
|
domain: "prov:Entity".freeze,
|
804
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
783
805
|
label: "hadPrimarySource".freeze,
|
784
|
-
:"prov:
|
785
|
-
|
786
|
-
|
787
|
-
|
806
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedPrimarySource".freeze],
|
807
|
+
"prov:category": "expanded".freeze,
|
808
|
+
"prov:component": "derivations".freeze,
|
809
|
+
"prov:inverse": "wasPrimarySourceOf".freeze,
|
810
|
+
"prov:qualifiedForm": ["prov:PrimarySource".freeze, "prov:qualifiedPrimarySource".freeze],
|
788
811
|
range: "prov:Entity".freeze,
|
789
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
790
812
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
791
813
|
type: "owl:ObjectProperty".freeze
|
792
814
|
property :hadRole,
|
793
815
|
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],
|
794
|
-
domain: "prov:Influence".freeze,
|
816
|
+
domain: ["prov:Influence".freeze, term(
|
817
|
+
unionOf: list("prov:Association".freeze, "prov:InstantaneousEvent".freeze),
|
818
|
+
type: "owl:Class".freeze
|
819
|
+
)],
|
820
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
795
821
|
label: "hadRole".freeze,
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
822
|
+
"prov:category": "qualified".freeze,
|
823
|
+
"prov:component": "agents-responsibility".freeze,
|
824
|
+
"prov:editorsDefinition": "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.".freeze,
|
825
|
+
"prov:inverse": "wasRoleIn".freeze,
|
826
|
+
"prov:sharesDefinitionWith": "prov:Role".freeze,
|
801
827
|
range: "prov:Role".freeze,
|
802
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
803
828
|
type: "owl:ObjectProperty".freeze
|
804
829
|
property :hadUsage,
|
805
830
|
comment: %(The _optional_ Usage involved in an Entity's Derivation.).freeze,
|
806
831
|
domain: "prov:Derivation".freeze,
|
832
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
807
833
|
label: "hadUsage".freeze,
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
834
|
+
"prov:category": "qualified".freeze,
|
835
|
+
"prov:component": "derivations".freeze,
|
836
|
+
"prov:inverse": "wasUsedInDerivation".freeze,
|
837
|
+
"prov:sharesDefinitionWith": "prov:Usage".freeze,
|
812
838
|
range: "prov:Usage".freeze,
|
813
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
814
839
|
type: "owl:ObjectProperty".freeze
|
815
840
|
property :has_anchor,
|
816
841
|
comment: %(Indicates anchor URI for a potentially dynamic resource instance.).freeze,
|
842
|
+
isDefinedBy: "prov:".freeze,
|
817
843
|
label: "has_anchor".freeze,
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
844
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze,
|
845
|
+
"prov:category": "access-and-query".freeze,
|
846
|
+
"prov:inverse": "anchorOf".freeze,
|
822
847
|
type: "owl:ObjectProperty".freeze
|
823
848
|
property :has_provenance,
|
824
849
|
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
|
+
isDefinedBy: "prov:".freeze,
|
825
851
|
label: "has_provenance".freeze,
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
852
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze,
|
853
|
+
"prov:category": "access-and-query".freeze,
|
854
|
+
"prov:inverse": "provenanceOf".freeze,
|
830
855
|
type: "owl:ObjectProperty".freeze
|
831
856
|
property :has_query_service,
|
832
857
|
comment: %(Indicates a provenance query service that can access provenance related to its subject or anchor resource.).freeze,
|
858
|
+
isDefinedBy: "prov:".freeze,
|
833
859
|
label: "hasProvenanceService".freeze,
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
860
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze,
|
861
|
+
"prov:category": "access-and-query".freeze,
|
862
|
+
"prov:inverse": "provenanceQueryServiceOf".freeze,
|
838
863
|
type: "owl:ObjectProperty".freeze
|
839
864
|
property :influenced,
|
865
|
+
inverseOf: "prov:wasInfluencedBy".freeze,
|
866
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
840
867
|
label: "influenced".freeze,
|
841
|
-
:"
|
842
|
-
|
843
|
-
|
844
|
-
:"prov:
|
845
|
-
:"prov:sharesDefinitionWith" => %(prov:Influence).freeze,
|
846
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
868
|
+
"prov:category": "expanded".freeze,
|
869
|
+
"prov:component": "agents-responsibility".freeze,
|
870
|
+
"prov:inverse": "wasInfluencedBy".freeze,
|
871
|
+
"prov:sharesDefinitionWith": "prov:Influence".freeze,
|
847
872
|
type: "owl:ObjectProperty".freeze
|
848
873
|
property :influencer,
|
849
874
|
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,
|
850
875
|
domain: "prov:Influence".freeze,
|
876
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
851
877
|
label: "influencer".freeze,
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
878
|
+
"prov:category": "qualified".freeze,
|
879
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze,
|
880
|
+
"prov:editorialNote": "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.".freeze,
|
881
|
+
"prov:editorsDefinition": "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.".freeze,
|
882
|
+
"prov:inverse": "hadInfluence".freeze,
|
857
883
|
range: "owl:Thing".freeze,
|
858
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
859
884
|
type: "owl:ObjectProperty".freeze
|
860
885
|
property :insertedKeyEntityPair,
|
861
886
|
domain: "prov:Insertion".freeze,
|
887
|
+
isDefinedBy: "prov:".freeze,
|
862
888
|
label: "insertedKeyEntityPair".freeze,
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
889
|
+
"prov:category": "collections".freeze,
|
890
|
+
"prov:component": "collections".freeze,
|
891
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
892
|
+
"prov:definition": "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.".freeze,
|
893
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze,
|
894
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze,
|
869
895
|
range: "prov:KeyEntityPair".freeze,
|
870
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
871
896
|
type: "owl:ObjectProperty".freeze
|
872
897
|
property :invalidated,
|
873
898
|
domain: "prov:Activity".freeze,
|
899
|
+
inverseOf: "prov:wasInvalidatedBy".freeze,
|
900
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
874
901
|
label: "invalidated".freeze,
|
875
|
-
:"
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
:"prov:
|
880
|
-
:"prov:sharesDefinitionWith" => %(prov:Invalidation).freeze,
|
902
|
+
"prov:category": "expanded".freeze,
|
903
|
+
"prov:component": "entities-activities".freeze,
|
904
|
+
"prov:editorialNote": "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze,
|
905
|
+
"prov:inverse": "wasInvalidatedBy".freeze,
|
906
|
+
"prov:sharesDefinitionWith": "prov:Invalidation".freeze,
|
881
907
|
range: "prov:Entity".freeze,
|
882
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
883
908
|
subPropertyOf: "prov:influenced".freeze,
|
884
909
|
type: "owl:ObjectProperty".freeze
|
885
910
|
property :invalidatedAtTime,
|
886
911
|
comment: %(The time at which an entity was invalidated \(i.e., no longer usable\).).freeze,
|
887
912
|
domain: "prov:Entity".freeze,
|
913
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
888
914
|
label: "invalidatedAtTime".freeze,
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
915
|
+
"prov:category": "expanded".freeze,
|
916
|
+
"prov:component": "entities-activities".freeze,
|
917
|
+
"prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.".freeze,
|
918
|
+
"prov:qualifiedForm": ["prov:Invalidation".freeze, "prov:atTime".freeze],
|
893
919
|
range: "xsd:dateTime".freeze,
|
894
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
895
920
|
type: "owl:DatatypeProperty".freeze
|
896
921
|
property :inverse,
|
897
922
|
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,
|
898
|
-
|
899
|
-
|
900
|
-
:"rdfs:seeAlso" => %(http://www.w3.org/TR/prov-o/#names-of-inverse-properties).freeze,
|
923
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
924
|
+
"rdfs:seeAlso": "http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze,
|
901
925
|
type: "owl:AnnotationProperty".freeze
|
902
926
|
property :mentionOf,
|
903
927
|
comment: %(prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.
|
904
928
|
|
905
929
|
prov:asInBundle is used to cite the Bundle in which the generalization was mentioned.).freeze,
|
906
930
|
domain: "prov:Entity".freeze,
|
931
|
+
isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze,
|
907
932
|
label: "mentionOf".freeze,
|
908
|
-
|
933
|
+
"prov:inverse": "hadMention".freeze,
|
909
934
|
range: "prov:Entity".freeze,
|
910
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-links#).freeze,
|
911
935
|
subPropertyOf: "prov:specializationOf".freeze,
|
912
936
|
type: "owl:ObjectProperty".freeze
|
913
937
|
property :n,
|
914
938
|
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],
|
915
|
-
|
916
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
939
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
917
940
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
918
941
|
type: "owl:AnnotationProperty".freeze
|
919
942
|
property :order,
|
920
943
|
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,
|
921
|
-
|
922
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
944
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
923
945
|
type: "owl:AnnotationProperty".freeze
|
924
946
|
property :pairEntity,
|
925
947
|
domain: "prov:KeyEntityPair".freeze,
|
948
|
+
isDefinedBy: "prov:".freeze,
|
926
949
|
label: "pairKey".freeze,
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
950
|
+
"prov:category": "collections".freeze,
|
951
|
+
"prov:component": "collections".freeze,
|
952
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
953
|
+
"prov:definition": "The value of a KeyEntityPair.".freeze,
|
954
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze,
|
955
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze,
|
933
956
|
range: "prov:Entity".freeze,
|
934
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
935
957
|
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
936
958
|
property :pairKey,
|
937
959
|
domain: "prov:KeyEntityPair".freeze,
|
960
|
+
isDefinedBy: "prov:".freeze,
|
938
961
|
label: "pairKey".freeze,
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
962
|
+
"prov:category": "collections".freeze,
|
963
|
+
"prov:component": "collections".freeze,
|
964
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
965
|
+
"prov:definition": "The key of a KeyEntityPair, which is an element of a prov:Dictionary.".freeze,
|
966
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze,
|
967
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze,
|
945
968
|
range: "rdfs:Literal".freeze,
|
946
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
947
969
|
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
948
970
|
property :pingback,
|
949
971
|
comment: %(Relates a resource to a provenance pingback service that may receive additional provenance links about the resource.).freeze,
|
972
|
+
isDefinedBy: "prov:".freeze,
|
950
973
|
label: "provenance pingback".freeze,
|
951
|
-
|
952
|
-
|
953
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
974
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback".freeze,
|
975
|
+
"prov:category": "access-and-query".freeze,
|
954
976
|
type: "owl:ObjectProperty".freeze
|
955
977
|
property :provenanceUriTemplate,
|
956
978
|
comment: %(Relates a provenance service to a URI template string for constructing provenance-URIs.).freeze,
|
979
|
+
isDefinedBy: "prov:".freeze,
|
957
980
|
label: "provenanceUriTemplate".freeze,
|
958
|
-
|
959
|
-
|
960
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
981
|
+
"prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze,
|
982
|
+
"prov:category": "access-and-query".freeze,
|
961
983
|
type: "owl:DatatypeProperty".freeze
|
962
984
|
property :qualifiedAssociation,
|
963
985
|
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,
|
964
986
|
domain: "prov:Activity".freeze,
|
987
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
965
988
|
label: "qualifiedAssociation".freeze,
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
989
|
+
"prov:category": "qualified".freeze,
|
990
|
+
"prov:component": "agents-responsibility".freeze,
|
991
|
+
"prov:inverse": "qualifiedAssociationOf".freeze,
|
992
|
+
"prov:sharesDefinitionWith": "prov:Association".freeze,
|
993
|
+
"prov:unqualifiedForm": "prov:wasAssociatedWith".freeze,
|
971
994
|
range: "prov:Association".freeze,
|
972
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
973
995
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
974
996
|
type: "owl:ObjectProperty".freeze
|
975
997
|
property :qualifiedAttribution,
|
976
998
|
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,
|
977
999
|
domain: "prov:Entity".freeze,
|
1000
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
978
1001
|
label: "qualifiedAttribution".freeze,
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
1002
|
+
"prov:category": "qualified".freeze,
|
1003
|
+
"prov:component": "agents-responsibility".freeze,
|
1004
|
+
"prov:inverse": "qualifiedAttributionOf".freeze,
|
1005
|
+
"prov:sharesDefinitionWith": "prov:Attribution".freeze,
|
1006
|
+
"prov:unqualifiedForm": "prov:wasAttributedTo".freeze,
|
984
1007
|
range: "prov:Attribution".freeze,
|
985
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
986
1008
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
987
1009
|
type: "owl:ObjectProperty".freeze
|
988
1010
|
property :qualifiedCommunication,
|
989
1011
|
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,
|
990
1012
|
domain: "prov:Activity".freeze,
|
1013
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
991
1014
|
label: "qualifiedCommunication".freeze,
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
1015
|
+
"prov:category": "qualified".freeze,
|
1016
|
+
"prov:component": "entities-activities".freeze,
|
1017
|
+
"prov:inverse": "qualifiedCommunicationOf".freeze,
|
1018
|
+
"prov:qualifiedForm": "prov:Communication".freeze,
|
1019
|
+
"prov:sharesDefinitionWith": "prov:Communication".freeze,
|
997
1020
|
range: "prov:Communication".freeze,
|
998
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
999
1021
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1000
1022
|
type: "owl:ObjectProperty".freeze
|
1001
1023
|
property :qualifiedDelegation,
|
1002
1024
|
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,
|
1003
1025
|
domain: "prov:Agent".freeze,
|
1026
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1004
1027
|
label: "qualifiedDelegation".freeze,
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1028
|
+
"prov:category": "qualified".freeze,
|
1029
|
+
"prov:component": "agents-responsibility".freeze,
|
1030
|
+
"prov:inverse": "qualifiedDelegationOf".freeze,
|
1031
|
+
"prov:sharesDefinitionWith": "prov:Delegation".freeze,
|
1032
|
+
"prov:unqualifiedForm": "prov:actedOnBehalfOf".freeze,
|
1010
1033
|
range: "prov:Delegation".freeze,
|
1011
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1012
1034
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1013
1035
|
type: "owl:ObjectProperty".freeze
|
1014
1036
|
property :qualifiedDerivation,
|
1015
1037
|
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,
|
1016
1038
|
domain: "prov:Entity".freeze,
|
1039
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1017
1040
|
label: "qualifiedDerivation".freeze,
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1041
|
+
"prov:category": "qualified".freeze,
|
1042
|
+
"prov:component": "derivations".freeze,
|
1043
|
+
"prov:inverse": "qualifiedDerivationOf".freeze,
|
1044
|
+
"prov:sharesDefinitionWith": "prov:Derivation".freeze,
|
1045
|
+
"prov:unqualifiedForm": "prov:wasDerivedFrom".freeze,
|
1023
1046
|
range: "prov:Derivation".freeze,
|
1024
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1025
1047
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1026
1048
|
type: "owl:ObjectProperty".freeze
|
1027
1049
|
property :qualifiedEnd,
|
1028
1050
|
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,
|
1029
1051
|
domain: "prov:Activity".freeze,
|
1052
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1030
1053
|
label: "qualifiedEnd".freeze,
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1054
|
+
"prov:category": "qualified".freeze,
|
1055
|
+
"prov:component": "entities-activities".freeze,
|
1056
|
+
"prov:inverse": "qualifiedEndOf".freeze,
|
1057
|
+
"prov:sharesDefinitionWith": "prov:End".freeze,
|
1058
|
+
"prov:unqualifiedForm": "prov:wasEndedBy".freeze,
|
1036
1059
|
range: "prov:End".freeze,
|
1037
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1038
1060
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1039
1061
|
type: "owl:ObjectProperty".freeze
|
1040
1062
|
property :qualifiedForm,
|
@@ -1057,500 +1079,514 @@ can be qualified by adding:
|
|
1057
1079
|
:customValue 1337 .
|
1058
1080
|
|
1059
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,
|
1060
|
-
|
1061
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
1082
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1062
1083
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
1063
1084
|
type: "owl:AnnotationProperty".freeze
|
1064
1085
|
property :qualifiedGeneration,
|
1065
1086
|
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,
|
1066
1087
|
domain: "prov:Entity".freeze,
|
1088
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1067
1089
|
label: "qualifiedGeneration".freeze,
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1090
|
+
"prov:category": "qualified".freeze,
|
1091
|
+
"prov:component": "entities-activities".freeze,
|
1092
|
+
"prov:inverse": "qualifiedGenerationOf".freeze,
|
1093
|
+
"prov:sharesDefinitionWith": "prov:Generation".freeze,
|
1094
|
+
"prov:unqualifiedForm": "prov:wasGeneratedBy".freeze,
|
1073
1095
|
range: "prov:Generation".freeze,
|
1074
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1075
1096
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1076
1097
|
type: "owl:ObjectProperty".freeze
|
1077
1098
|
property :qualifiedInfluence,
|
1078
1099
|
comment: %(Because prov:qualifiedInfluence is a broad relation, the more specific relations \(qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.\) should be used when applicable.).freeze,
|
1100
|
+
domain: term(
|
1101
|
+
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze),
|
1102
|
+
type: "owl:Class".freeze
|
1103
|
+
),
|
1104
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1079
1105
|
label: "qualifiedInfluence".freeze,
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1106
|
+
"prov:category": "qualified".freeze,
|
1107
|
+
"prov:component": "derivations".freeze,
|
1108
|
+
"prov:inverse": "qualifiedInfluenceOf".freeze,
|
1109
|
+
"prov:sharesDefinitionWith": "prov:Influence".freeze,
|
1110
|
+
"prov:unqualifiedForm": "prov:wasInfluencedBy".freeze,
|
1085
1111
|
range: "prov:Influence".freeze,
|
1086
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1087
1112
|
type: "owl:ObjectProperty".freeze
|
1088
1113
|
property :qualifiedInsertion,
|
1089
1114
|
domain: "prov:Dictionary".freeze,
|
1115
|
+
isDefinedBy: "prov:".freeze,
|
1090
1116
|
label: "qualifiedInsertion".freeze,
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1117
|
+
"prov:category": "collections".freeze,
|
1118
|
+
"prov:component": "collections".freeze,
|
1119
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
1120
|
+
"prov:definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze,
|
1121
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze,
|
1122
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze,
|
1097
1123
|
range: "prov:Insertion".freeze,
|
1098
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
1099
1124
|
subPropertyOf: "prov:qualifiedDerivation".freeze,
|
1100
1125
|
type: "owl:ObjectProperty".freeze
|
1101
1126
|
property :qualifiedInvalidation,
|
1102
1127
|
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,
|
1103
1128
|
domain: "prov:Entity".freeze,
|
1129
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1104
1130
|
label: "qualifiedInvalidation".freeze,
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1131
|
+
"prov:category": "qualified".freeze,
|
1132
|
+
"prov:component": "entities-activities".freeze,
|
1133
|
+
"prov:inverse": "qualifiedInvalidationOf".freeze,
|
1134
|
+
"prov:sharesDefinitionWith": "prov:Invalidation".freeze,
|
1135
|
+
"prov:unqualifiedForm": "prov:wasInvalidatedBy".freeze,
|
1110
1136
|
range: "prov:Invalidation".freeze,
|
1111
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1112
1137
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1113
1138
|
type: "owl:ObjectProperty".freeze
|
1114
1139
|
property :qualifiedPrimarySource,
|
1115
1140
|
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,
|
1116
1141
|
domain: "prov:Entity".freeze,
|
1142
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1117
1143
|
label: "qualifiedPrimarySource".freeze,
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1144
|
+
"prov:category": "qualified".freeze,
|
1145
|
+
"prov:component": "derivations".freeze,
|
1146
|
+
"prov:inverse": "qualifiedSourceOf".freeze,
|
1147
|
+
"prov:sharesDefinitionWith": "prov:PrimarySource".freeze,
|
1148
|
+
"prov:unqualifiedForm": "prov:hadPrimarySource".freeze,
|
1123
1149
|
range: "prov:PrimarySource".freeze,
|
1124
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1125
1150
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1126
1151
|
type: "owl:ObjectProperty".freeze
|
1127
1152
|
property :qualifiedQuotation,
|
1128
1153
|
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,
|
1129
1154
|
domain: "prov:Entity".freeze,
|
1155
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1130
1156
|
label: "qualifiedQuotation".freeze,
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1157
|
+
"prov:category": "qualified".freeze,
|
1158
|
+
"prov:component": "derivations".freeze,
|
1159
|
+
"prov:inverse": "qualifiedQuotationOf".freeze,
|
1160
|
+
"prov:sharesDefinitionWith": "prov:Quotation".freeze,
|
1161
|
+
"prov:unqualifiedForm": "prov:wasQuotedFrom".freeze,
|
1136
1162
|
range: "prov:Quotation".freeze,
|
1137
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1138
1163
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1139
1164
|
type: "owl:ObjectProperty".freeze
|
1140
1165
|
property :qualifiedRemoval,
|
1141
1166
|
domain: "prov:Dictionary".freeze,
|
1167
|
+
isDefinedBy: "prov:".freeze,
|
1142
1168
|
label: "qualifiedRemoval".freeze,
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1169
|
+
"prov:category": "collections".freeze,
|
1170
|
+
"prov:component": "collections".freeze,
|
1171
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
1172
|
+
"prov:definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed keys.".freeze,
|
1173
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze,
|
1174
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze,
|
1149
1175
|
range: "prov:Removal".freeze,
|
1150
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
1151
1176
|
subPropertyOf: "prov:qualifiedDerivation".freeze,
|
1152
1177
|
type: "owl:ObjectProperty".freeze
|
1153
1178
|
property :qualifiedRevision,
|
1154
1179
|
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,
|
1155
1180
|
domain: "prov:Entity".freeze,
|
1181
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1156
1182
|
label: "qualifiedRevision".freeze,
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1183
|
+
"prov:category": "qualified".freeze,
|
1184
|
+
"prov:component": "derivations".freeze,
|
1185
|
+
"prov:inverse": "revisedEntity".freeze,
|
1186
|
+
"prov:sharesDefinitionWith": "prov:Revision".freeze,
|
1187
|
+
"prov:unqualifiedForm": "prov:wasRevisionOf".freeze,
|
1162
1188
|
range: "prov:Revision".freeze,
|
1163
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1164
1189
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1165
1190
|
type: "owl:ObjectProperty".freeze
|
1166
1191
|
property :qualifiedStart,
|
1167
1192
|
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,
|
1168
1193
|
domain: "prov:Activity".freeze,
|
1194
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1169
1195
|
label: "qualifiedStart".freeze,
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1196
|
+
"prov:category": "qualified".freeze,
|
1197
|
+
"prov:component": "entities-activities".freeze,
|
1198
|
+
"prov:inverse": "qualifiedStartOf".freeze,
|
1199
|
+
"prov:sharesDefinitionWith": "prov:Start".freeze,
|
1200
|
+
"prov:unqualifiedForm": "prov:wasStartedBy".freeze,
|
1175
1201
|
range: "prov:Start".freeze,
|
1176
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1177
1202
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1178
1203
|
type: "owl:ObjectProperty".freeze
|
1179
1204
|
property :qualifiedUsage,
|
1180
1205
|
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,
|
1181
1206
|
domain: "prov:Activity".freeze,
|
1207
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1182
1208
|
label: "qualifiedUsage".freeze,
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1209
|
+
"prov:category": "qualified".freeze,
|
1210
|
+
"prov:component": "entities-activities".freeze,
|
1211
|
+
"prov:inverse": "qualifiedUsingActivity".freeze,
|
1212
|
+
"prov:sharesDefinitionWith": "prov:Usage".freeze,
|
1213
|
+
"prov:unqualifiedForm": "prov:used".freeze,
|
1188
1214
|
range: "prov:Usage".freeze,
|
1189
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1190
1215
|
subPropertyOf: "prov:qualifiedInfluence".freeze,
|
1191
1216
|
type: "owl:ObjectProperty".freeze
|
1192
1217
|
property :removedKey,
|
1193
1218
|
domain: "prov:Removal".freeze,
|
1219
|
+
isDefinedBy: "prov:".freeze,
|
1194
1220
|
label: "removedKey".freeze,
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1221
|
+
"prov:category": "collections".freeze,
|
1222
|
+
"prov:component": "collections".freeze,
|
1223
|
+
"prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze,
|
1224
|
+
"prov:definition": "The key removed in a Removal.".freeze,
|
1225
|
+
"prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze,
|
1226
|
+
"prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze,
|
1201
1227
|
range: "rdfs:Literal".freeze,
|
1202
|
-
:"rdfs:isDefinedBy" => %(prov:).freeze,
|
1203
1228
|
type: "owl:DatatypeProperty".freeze
|
1204
1229
|
property :sharesDefinitionWith,
|
1205
|
-
|
1206
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
1230
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1207
1231
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
1208
1232
|
type: "owl:AnnotationProperty".freeze
|
1209
1233
|
property :specializationOf,
|
1210
1234
|
domain: "prov:Entity".freeze,
|
1235
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1211
1236
|
label: "specializationOf".freeze,
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1237
|
+
"prov:category": "expanded".freeze,
|
1238
|
+
"prov:component": "alternate".freeze,
|
1239
|
+
"prov:constraints": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig".freeze, "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze],
|
1240
|
+
"prov:definition": "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.".freeze,
|
1241
|
+
"prov:dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization".freeze],
|
1242
|
+
"prov:inverse": "generalizationOf".freeze,
|
1243
|
+
"prov:n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization".freeze],
|
1219
1244
|
range: "prov:Entity".freeze,
|
1220
|
-
|
1221
|
-
:"rdfs:seeAlso" => %(prov:alternateOf).freeze,
|
1245
|
+
"rdfs:seeAlso": "prov:alternateOf".freeze,
|
1222
1246
|
subPropertyOf: ["owl:topObjectProperty".freeze, "prov:alternateOf".freeze],
|
1223
1247
|
type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze]
|
1224
1248
|
property :startedAtTime,
|
1225
1249
|
comment: %(The time at which an activity started. See also prov:endedAtTime.).freeze,
|
1226
1250
|
domain: "prov:Activity".freeze,
|
1251
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1227
1252
|
label: "startedAtTime".freeze,
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1253
|
+
"prov:category": "starting-point".freeze,
|
1254
|
+
"prov:component": "entities-activities".freeze,
|
1255
|
+
"prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.".freeze,
|
1256
|
+
"prov:qualifiedForm": ["prov:Start".freeze, "prov:atTime".freeze],
|
1232
1257
|
range: "xsd:dateTime".freeze,
|
1233
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1234
1258
|
type: "owl:DatatypeProperty".freeze
|
1235
1259
|
property :todo,
|
1236
|
-
label: "todo".freeze,
|
1237
1260
|
type: "owl:AnnotationProperty".freeze
|
1238
1261
|
property :unqualifiedForm,
|
1239
1262
|
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,
|
1240
|
-
|
1241
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(prov:).freeze],
|
1263
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze],
|
1242
1264
|
subPropertyOf: "rdfs:seeAlso".freeze,
|
1243
1265
|
type: "owl:AnnotationProperty".freeze
|
1244
1266
|
property :used,
|
1245
1267
|
comment: %(A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .).freeze,
|
1246
1268
|
domain: "prov:Activity".freeze,
|
1269
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1247
1270
|
label: "used".freeze,
|
1248
|
-
:"prov:
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1271
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedUsage".freeze],
|
1272
|
+
"prov:category": "starting-point".freeze,
|
1273
|
+
"prov:component": "entities-activities".freeze,
|
1274
|
+
"prov:inverse": "wasUsedBy".freeze,
|
1275
|
+
"prov:qualifiedForm": ["prov:Usage".freeze, "prov:qualifiedUsage".freeze],
|
1252
1276
|
range: "prov:Entity".freeze,
|
1253
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1254
1277
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1255
1278
|
type: "owl:ObjectProperty".freeze
|
1256
1279
|
property :value,
|
1257
1280
|
domain: "prov:Entity".freeze,
|
1281
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1258
1282
|
label: "value".freeze,
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1283
|
+
"prov:category": "expanded".freeze,
|
1284
|
+
"prov:component": "entities-activities".freeze,
|
1285
|
+
"prov:definition": "Provides a value that is a direct representation of an entity.".freeze,
|
1286
|
+
"prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value".freeze,
|
1287
|
+
"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],
|
1265
1288
|
type: "owl:DatatypeProperty".freeze
|
1266
1289
|
property :wasAssociatedWith,
|
1267
1290
|
comment: %(An prov:Agent that had some \(unspecified\) responsibility for the occurrence of this prov:Activity.).freeze,
|
1268
1291
|
domain: "prov:Activity".freeze,
|
1292
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1269
1293
|
label: "wasAssociatedWith".freeze,
|
1270
|
-
:"prov:
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1294
|
+
"owl:propertyChainAxiom": ["prov:agent".freeze, "prov:qualifiedAssociation".freeze],
|
1295
|
+
"prov:category": "starting-point".freeze,
|
1296
|
+
"prov:component": "agents-responsibility".freeze,
|
1297
|
+
"prov:inverse": "wasAssociateFor".freeze,
|
1298
|
+
"prov:qualifiedForm": ["prov:Association".freeze, "prov:qualifiedAssociation".freeze],
|
1274
1299
|
range: "prov:Agent".freeze,
|
1275
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1276
1300
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1277
1301
|
type: "owl:ObjectProperty".freeze
|
1278
1302
|
property :wasAttributedTo,
|
1279
1303
|
comment: %(Attribution is the ascribing of an entity to an agent.).freeze,
|
1280
1304
|
domain: "prov:Entity".freeze,
|
1305
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1281
1306
|
label: "wasAttributedTo".freeze,
|
1282
|
-
:"prov:
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1307
|
+
"owl:propertyChainAxiom": ["prov:agent".freeze, "prov:qualifiedAttribution".freeze],
|
1308
|
+
"prov:category": "starting-point".freeze,
|
1309
|
+
"prov:component": "agents-responsibility".freeze,
|
1310
|
+
"prov:definition": "Attribution is the ascribing of an entity to an agent.".freeze,
|
1311
|
+
"prov:inverse": "contributed".freeze,
|
1312
|
+
"prov:qualifiedForm": ["prov:Attribution".freeze, "prov:qualifiedAttribution".freeze],
|
1287
1313
|
range: "prov:Agent".freeze,
|
1288
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1289
1314
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1290
1315
|
type: "owl:ObjectProperty".freeze
|
1291
1316
|
property :wasDerivedFrom,
|
1292
1317
|
comment: %(The more specific subproperties of prov:wasDerivedFrom \(i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource\) should be used when applicable.).freeze,
|
1293
1318
|
domain: "prov:Entity".freeze,
|
1319
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1294
1320
|
label: "wasDerivedFrom".freeze,
|
1295
|
-
:"prov:
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1321
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedDerivation".freeze],
|
1322
|
+
"prov:category": "starting-point".freeze,
|
1323
|
+
"prov:component": "derivations".freeze,
|
1324
|
+
"prov:definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze,
|
1325
|
+
"prov:inverse": "hadDerivation".freeze,
|
1326
|
+
"prov:qualifiedForm": ["prov:Derivation".freeze, "prov:qualifiedDerivation".freeze],
|
1300
1327
|
range: "prov:Entity".freeze,
|
1301
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1302
1328
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1303
1329
|
type: "owl:ObjectProperty".freeze
|
1304
1330
|
property :wasEndedBy,
|
1305
1331
|
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,
|
1306
1332
|
domain: "prov:Activity".freeze,
|
1333
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1307
1334
|
label: "wasEndedBy".freeze,
|
1308
|
-
:"prov:
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1335
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedEnd".freeze],
|
1336
|
+
"prov:category": "expanded".freeze,
|
1337
|
+
"prov:component": "entities-activities".freeze,
|
1338
|
+
"prov:inverse": "ended".freeze,
|
1339
|
+
"prov:qualifiedForm": ["prov:End".freeze, "prov:qualifiedEnd".freeze],
|
1312
1340
|
range: "prov:Entity".freeze,
|
1313
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1314
1341
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1315
1342
|
type: "owl:ObjectProperty".freeze
|
1316
1343
|
property :wasGeneratedBy,
|
1317
1344
|
domain: "prov:Entity".freeze,
|
1345
|
+
inverseOf: "prov:generated".freeze,
|
1346
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
1318
1347
|
label: "wasGeneratedBy".freeze,
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1348
|
+
"owl:propertyChainAxiom": ["prov:activity".freeze, "prov:qualifiedGeneration".freeze],
|
1349
|
+
"prov:category": "starting-point".freeze,
|
1350
|
+
"prov:component": "entities-activities".freeze,
|
1351
|
+
"prov:inverse": "generated".freeze,
|
1352
|
+
"prov:qualifiedForm": ["prov:Generation".freeze, "prov:qualifiedGeneration".freeze],
|
1324
1353
|
range: "prov:Activity".freeze,
|
1325
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
1326
1354
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1327
1355
|
type: "owl:ObjectProperty".freeze
|
1328
1356
|
property :wasInfluencedBy,
|
1329
1357
|
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
|
+
domain: term(
|
1359
|
+
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze),
|
1360
|
+
type: "owl:Class".freeze
|
1361
|
+
),
|
1362
|
+
inverseOf: "prov:influenced".freeze,
|
1363
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
1330
1364
|
label: "wasInfluencedBy".freeze,
|
1331
|
-
:"
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
prov:
|
1339
|
-
|
1340
|
-
|
1341
|
-
:"prov:qualifiedForm" => [%(prov:Influence).freeze, %(prov:qualifiedInfluence).freeze],
|
1342
|
-
:"prov:sharesDefinitionWith" => %(prov:Influence).freeze,
|
1343
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
1365
|
+
"prov:category": "qualified".freeze,
|
1366
|
+
"prov:component": "agents-responsibility".freeze,
|
1367
|
+
"prov:editorialNote": "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n".freeze,
|
1368
|
+
"prov:inverse": "influenced".freeze,
|
1369
|
+
"prov:qualifiedForm": ["prov:Influence".freeze, "prov:qualifiedInfluence".freeze],
|
1370
|
+
"prov:sharesDefinitionWith": "prov:Influence".freeze,
|
1371
|
+
range: term(
|
1372
|
+
unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze),
|
1373
|
+
type: "owl:Class".freeze
|
1374
|
+
),
|
1344
1375
|
type: "owl:ObjectProperty".freeze
|
1345
1376
|
property :wasInformedBy,
|
1346
1377
|
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,
|
1347
1378
|
domain: "prov:Activity".freeze,
|
1379
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1348
1380
|
label: "wasInformedBy".freeze,
|
1349
|
-
:"prov:
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1381
|
+
"owl:propertyChainAxiom": ["prov:activity".freeze, "prov:qualifiedCommunication".freeze],
|
1382
|
+
"prov:category": "starting-point".freeze,
|
1383
|
+
"prov:component": "entities-activities".freeze,
|
1384
|
+
"prov:inverse": "informed".freeze,
|
1385
|
+
"prov:qualifiedForm": ["prov:Communication".freeze, "prov:qualifiedCommunication".freeze],
|
1353
1386
|
range: "prov:Activity".freeze,
|
1354
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1355
1387
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1356
1388
|
type: "owl:ObjectProperty".freeze
|
1357
1389
|
property :wasInvalidatedBy,
|
1358
1390
|
domain: "prov:Entity".freeze,
|
1391
|
+
inverseOf: "prov:invalidated".freeze,
|
1392
|
+
isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze],
|
1359
1393
|
label: "wasInvalidatedBy".freeze,
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1394
|
+
"owl:propertyChainAxiom": ["prov:activity".freeze, "prov:qualifiedInvalidation".freeze],
|
1395
|
+
"prov:category": "expanded".freeze,
|
1396
|
+
"prov:component": "entities-activities".freeze,
|
1397
|
+
"prov:inverse": "invalidated".freeze,
|
1398
|
+
"prov:qualifiedForm": ["prov:Invalidation".freeze, "prov:qualifiedInvalidation".freeze],
|
1365
1399
|
range: "prov:Activity".freeze,
|
1366
|
-
:"rdfs:isDefinedBy" => [%(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
|
1367
1400
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1368
1401
|
type: "owl:ObjectProperty".freeze
|
1369
1402
|
property :wasQuotedFrom,
|
1370
1403
|
comment: %(An entity is derived from an original entity by copying, or 'quoting', some or all of it.).freeze,
|
1371
1404
|
domain: "prov:Entity".freeze,
|
1405
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1372
1406
|
label: "wasQuotedFrom".freeze,
|
1373
|
-
:"prov:
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1407
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedQuotation".freeze],
|
1408
|
+
"prov:category": "expanded".freeze,
|
1409
|
+
"prov:component": "derivations".freeze,
|
1410
|
+
"prov:inverse": "quotedAs".freeze,
|
1411
|
+
"prov:qualifiedForm": ["prov:Quotation".freeze, "prov:qualifiedQuotation".freeze],
|
1377
1412
|
range: "prov:Entity".freeze,
|
1378
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1379
1413
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
1380
1414
|
type: "owl:ObjectProperty".freeze
|
1381
1415
|
property :wasRevisionOf,
|
1382
1416
|
comment: %(A revision is a derivation that revises an entity into a revised version.).freeze,
|
1383
1417
|
domain: "prov:Entity".freeze,
|
1418
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1384
1419
|
label: "wasRevisionOf".freeze,
|
1385
|
-
:"prov:
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1420
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedRevision".freeze],
|
1421
|
+
"prov:category": "expanded".freeze,
|
1422
|
+
"prov:component": "derivations".freeze,
|
1423
|
+
"prov:inverse": "hadRevision".freeze,
|
1424
|
+
"prov:qualifiedForm": ["prov:Revision".freeze, "prov:qualifiedRevision".freeze],
|
1389
1425
|
range: "prov:Entity".freeze,
|
1390
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1391
1426
|
subPropertyOf: "prov:wasDerivedFrom".freeze,
|
1392
1427
|
type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze]
|
1393
1428
|
property :wasStartedBy,
|
1394
1429
|
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,
|
1395
1430
|
domain: "prov:Activity".freeze,
|
1431
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze,
|
1396
1432
|
label: "wasStartedBy".freeze,
|
1397
|
-
:"prov:
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1433
|
+
"owl:propertyChainAxiom": ["prov:entity".freeze, "prov:qualifiedStart".freeze],
|
1434
|
+
"prov:category": "expanded".freeze,
|
1435
|
+
"prov:component": "entities-activities".freeze,
|
1436
|
+
"prov:inverse": "started".freeze,
|
1437
|
+
"prov:qualifiedForm": ["prov:Start".freeze, "prov:qualifiedStart".freeze],
|
1401
1438
|
range: "prov:Entity".freeze,
|
1402
|
-
:"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov-o#).freeze,
|
1403
1439
|
subPropertyOf: "prov:wasInfluencedBy".freeze,
|
1404
1440
|
type: "owl:ObjectProperty".freeze
|
1405
1441
|
|
1406
1442
|
# Extra definitions
|
1407
1443
|
term :activityOfInfluence,
|
1408
|
-
|
1409
|
-
:"
|
1410
|
-
:"
|
1444
|
+
inverseOf: "prov:activity".freeze,
|
1445
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1446
|
+
label: "activityOfInfluence".freeze
|
1411
1447
|
term :agentOfInfluence,
|
1412
|
-
|
1413
|
-
:"
|
1414
|
-
:"
|
1448
|
+
inverseOf: "prov:agent".freeze,
|
1449
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1450
|
+
label: "agentOfInfluence".freeze
|
1415
1451
|
term :contributed,
|
1416
|
-
|
1417
|
-
:"
|
1418
|
-
:"
|
1452
|
+
inverseOf: "prov:wasAttributedTo".freeze,
|
1453
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1454
|
+
label: "contributed".freeze
|
1419
1455
|
term :ended,
|
1420
|
-
|
1421
|
-
:"
|
1422
|
-
:"
|
1456
|
+
inverseOf: "prov:wasEndedBy".freeze,
|
1457
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1458
|
+
label: "ended".freeze
|
1423
1459
|
term :entityOfInfluence,
|
1424
|
-
|
1425
|
-
:"
|
1426
|
-
:"
|
1460
|
+
inverseOf: "prov:entity".freeze,
|
1461
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1462
|
+
label: "entityOfInfluence".freeze
|
1427
1463
|
term :generalizationOf,
|
1428
|
-
|
1429
|
-
:"
|
1430
|
-
:"
|
1464
|
+
inverseOf: "prov:specializationOf".freeze,
|
1465
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1466
|
+
label: "generalizationOf".freeze
|
1431
1467
|
term :generatedAsDerivation,
|
1432
|
-
|
1433
|
-
:"
|
1434
|
-
:"
|
1468
|
+
inverseOf: "prov:hadGeneration".freeze,
|
1469
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1470
|
+
label: "generatedAsDerivation".freeze
|
1435
1471
|
term :hadDelegate,
|
1436
|
-
|
1437
|
-
:"
|
1438
|
-
:"
|
1472
|
+
inverseOf: "prov:actedOnBehalfOf".freeze,
|
1473
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1474
|
+
label: "hadDelegate".freeze
|
1439
1475
|
term :hadDerivation,
|
1440
|
-
|
1441
|
-
:"
|
1442
|
-
:"
|
1476
|
+
inverseOf: "prov:wasDerivedFrom".freeze,
|
1477
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1478
|
+
label: "hadDerivation".freeze
|
1443
1479
|
term :hadInfluence,
|
1444
|
-
|
1445
|
-
:"
|
1446
|
-
:"
|
1480
|
+
inverseOf: "prov:influencer".freeze,
|
1481
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1482
|
+
label: "hadInfluence".freeze
|
1447
1483
|
term :hadRevision,
|
1448
|
-
|
1449
|
-
:"
|
1450
|
-
:"
|
1484
|
+
inverseOf: "prov:wasRevisionOf".freeze,
|
1485
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1486
|
+
label: "hadRevision".freeze
|
1451
1487
|
term :informed,
|
1452
|
-
|
1453
|
-
:"
|
1454
|
-
:"
|
1488
|
+
inverseOf: "prov:wasInformedBy".freeze,
|
1489
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1490
|
+
label: "informed".freeze
|
1455
1491
|
term :locationOf,
|
1456
|
-
|
1457
|
-
:"
|
1458
|
-
:"
|
1492
|
+
inverseOf: "prov:atLocation".freeze,
|
1493
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1494
|
+
label: "locationOf".freeze
|
1459
1495
|
term :qualifiedAssociationOf,
|
1460
|
-
|
1461
|
-
:"
|
1462
|
-
:"
|
1496
|
+
inverseOf: "prov:qualifiedAssociation".freeze,
|
1497
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1498
|
+
label: "qualifiedAssociationOf".freeze
|
1463
1499
|
term :qualifiedAttributionOf,
|
1464
|
-
|
1465
|
-
:"
|
1466
|
-
:"
|
1500
|
+
inverseOf: "prov:qualifiedAttribution".freeze,
|
1501
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1502
|
+
label: "qualifiedAttributionOf".freeze
|
1467
1503
|
term :qualifiedCommunicationOf,
|
1468
|
-
|
1469
|
-
:"
|
1470
|
-
:"
|
1504
|
+
inverseOf: "prov:qualifiedCommunication".freeze,
|
1505
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1506
|
+
label: "qualifiedCommunicationOf".freeze
|
1471
1507
|
term :qualifiedDelegationOf,
|
1472
|
-
|
1473
|
-
:"
|
1474
|
-
:"
|
1508
|
+
inverseOf: "prov:qualifiedDelegation".freeze,
|
1509
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1510
|
+
label: "qualifiedDelegationOf".freeze
|
1475
1511
|
term :qualifiedDerivationOf,
|
1476
|
-
|
1477
|
-
:"
|
1478
|
-
:"
|
1512
|
+
inverseOf: "prov:qualifiedDerivation".freeze,
|
1513
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1514
|
+
label: "qualifiedDerivationOf".freeze
|
1479
1515
|
term :qualifiedEndOf,
|
1480
|
-
|
1481
|
-
:"
|
1482
|
-
:"
|
1516
|
+
inverseOf: "prov:qualifiedEnd".freeze,
|
1517
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1518
|
+
label: "qualifiedEndOf".freeze
|
1483
1519
|
term :qualifiedGenerationOf,
|
1484
|
-
|
1485
|
-
:"
|
1486
|
-
:"
|
1520
|
+
inverseOf: "prov:qualifiedGeneration".freeze,
|
1521
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1522
|
+
label: "qualifiedGenerationOf".freeze
|
1487
1523
|
term :qualifiedInfluenceOf,
|
1488
|
-
|
1489
|
-
:"
|
1490
|
-
:"
|
1524
|
+
inverseOf: "prov:qualifiedInfluence".freeze,
|
1525
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1526
|
+
label: "qualifiedInfluenceOf".freeze
|
1491
1527
|
term :qualifiedInvalidationOf,
|
1492
|
-
|
1493
|
-
:"
|
1494
|
-
:"
|
1528
|
+
inverseOf: "prov:qualifiedInvalidation".freeze,
|
1529
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1530
|
+
label: "qualifiedInvalidationOf".freeze
|
1495
1531
|
term :qualifiedQuotationOf,
|
1496
|
-
|
1497
|
-
:"
|
1498
|
-
:"
|
1532
|
+
inverseOf: "prov:qualifiedQuotation".freeze,
|
1533
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1534
|
+
label: "qualifiedQuotationOf".freeze
|
1499
1535
|
term :qualifiedSourceOf,
|
1500
|
-
|
1501
|
-
:"
|
1502
|
-
:"
|
1536
|
+
inverseOf: "prov:qualifiedPrimarySource".freeze,
|
1537
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1538
|
+
label: "qualifiedSourceOf".freeze
|
1503
1539
|
term :qualifiedStartOf,
|
1504
|
-
|
1505
|
-
:"
|
1506
|
-
:"
|
1540
|
+
inverseOf: "prov:qualifiedStart".freeze,
|
1541
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1542
|
+
label: "qualifiedStartOf".freeze
|
1507
1543
|
term :qualifiedUsingActivity,
|
1508
|
-
|
1509
|
-
:"
|
1510
|
-
:"
|
1544
|
+
inverseOf: "prov:qualifiedUsage".freeze,
|
1545
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1546
|
+
label: "qualifiedUsingActivity".freeze
|
1511
1547
|
term :quotedAs,
|
1512
|
-
|
1513
|
-
:"
|
1514
|
-
:"
|
1548
|
+
inverseOf: "prov:wasQuotedFrom".freeze,
|
1549
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1550
|
+
label: "quotedAs".freeze
|
1515
1551
|
term :revisedEntity,
|
1516
|
-
|
1517
|
-
:"
|
1518
|
-
:"
|
1552
|
+
inverseOf: "prov:qualifiedRevision".freeze,
|
1553
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1554
|
+
label: "revisedEntity".freeze
|
1519
1555
|
term :started,
|
1520
|
-
|
1521
|
-
:"
|
1522
|
-
:"
|
1556
|
+
inverseOf: "prov:wasStartedBy".freeze,
|
1557
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1558
|
+
label: "started".freeze
|
1523
1559
|
term :wasActivityOfInfluence,
|
1524
|
-
|
1525
|
-
:"
|
1526
|
-
:"
|
1560
|
+
inverseOf: "prov:hadActivity".freeze,
|
1561
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1562
|
+
label: "wasActivityOfInfluence".freeze
|
1527
1563
|
term :wasAssociateFor,
|
1528
|
-
|
1529
|
-
:"
|
1530
|
-
:"
|
1564
|
+
inverseOf: "prov:wasAssociatedWith".freeze,
|
1565
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1566
|
+
label: "wasAssociateFor".freeze
|
1531
1567
|
term :wasMemberOf,
|
1532
|
-
|
1533
|
-
:"
|
1534
|
-
:"
|
1568
|
+
inverseOf: "prov:hadMember".freeze,
|
1569
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1570
|
+
label: "wasMemberOf".freeze
|
1535
1571
|
term :wasPlanOf,
|
1536
|
-
|
1537
|
-
:"
|
1538
|
-
:"
|
1572
|
+
inverseOf: "prov:hadPlan".freeze,
|
1573
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1574
|
+
label: "wasPlanOf".freeze
|
1539
1575
|
term :wasPrimarySourceOf,
|
1540
|
-
|
1541
|
-
:"
|
1542
|
-
:"
|
1576
|
+
inverseOf: "prov:hadPrimarySource".freeze,
|
1577
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1578
|
+
label: "wasPrimarySourceOf".freeze
|
1543
1579
|
term :wasRoleIn,
|
1544
|
-
|
1545
|
-
:"
|
1546
|
-
:"
|
1580
|
+
inverseOf: "prov:hadRole".freeze,
|
1581
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1582
|
+
label: "wasRoleIn".freeze
|
1547
1583
|
term :wasUsedBy,
|
1548
|
-
|
1549
|
-
:"
|
1550
|
-
:"
|
1584
|
+
inverseOf: "prov:used".freeze,
|
1585
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1586
|
+
label: "wasUsedBy".freeze
|
1551
1587
|
term :wasUsedInDerivation,
|
1552
|
-
|
1553
|
-
:"
|
1554
|
-
:"
|
1588
|
+
inverseOf: "prov:hadUsage".freeze,
|
1589
|
+
isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze,
|
1590
|
+
label: "wasUsedInDerivation".freeze
|
1555
1591
|
end
|
1556
1592
|
end
|