rdf-vocab 0.8.8 → 2.0.0.beta1

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