rdf-vocab 3.1.7 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/rdf/vocab.rb +5 -1
  4. data/lib/rdf/vocab/acl.rb +20 -60
  5. data/lib/rdf/vocab/as.rb +90 -90
  6. data/lib/rdf/vocab/bf2.rb +488 -488
  7. data/lib/rdf/vocab/bibo.rb +120 -123
  8. data/lib/rdf/vocab/cc.rb +18 -47
  9. data/lib/rdf/vocab/crm.rb +240 -775
  10. data/lib/rdf/vocab/dc.rb +98 -98
  11. data/lib/rdf/vocab/dc11.rb +30 -30
  12. data/lib/rdf/vocab/dcat.rb +85 -85
  13. data/lib/rdf/vocab/dcmitype.rb +12 -12
  14. data/lib/rdf/vocab/disco.rb +58 -58
  15. data/lib/rdf/vocab/dwc.rb +188 -188
  16. data/lib/rdf/vocab/earl.rb +27 -27
  17. data/lib/rdf/vocab/ebucore.rb +1232 -1522
  18. data/lib/rdf/vocab/edm.rb +52 -75
  19. data/lib/rdf/vocab/fcrepo4.rb +21 -21
  20. data/lib/rdf/vocab/foaf.rb +75 -75
  21. data/lib/rdf/vocab/geo.rb +8 -109
  22. data/lib/rdf/vocab/geojson.rb +16 -16
  23. data/lib/rdf/vocab/geonames.rb +1344 -1352
  24. data/lib/rdf/vocab/gr.rb +177 -564
  25. data/lib/rdf/vocab/ht.rb +40 -40
  26. data/lib/rdf/vocab/hydra.rb +99 -58
  27. data/lib/rdf/vocab/iana.rb +71 -113
  28. data/lib/rdf/vocab/ical.rb +123 -171
  29. data/lib/rdf/vocab/identifiers.rb +161 -662
  30. data/lib/rdf/vocab/iiif.rb +25 -25
  31. data/lib/rdf/vocab/jsonld.rb +33 -51
  32. data/lib/rdf/vocab/lrmi.rb +16 -16
  33. data/lib/rdf/vocab/ma.rb +79 -79
  34. data/lib/rdf/vocab/marcrelators.rb +4 -3
  35. data/lib/rdf/vocab/mo.rb +196 -539
  36. data/lib/rdf/vocab/mods.rb +119 -123
  37. data/lib/rdf/vocab/oa.rb +68 -72
  38. data/lib/rdf/vocab/ogc.rb +8 -8
  39. data/lib/rdf/vocab/ore.rb +13 -13
  40. data/lib/rdf/vocab/org.rb +46 -46
  41. data/lib/rdf/vocab/pcdm.rb +11 -33
  42. data/lib/rdf/vocab/pplan.rb +18 -196
  43. data/lib/rdf/vocab/premis.rb +321 -416
  44. data/lib/rdf/vocab/premiseventtype.rb +1 -1
  45. data/lib/rdf/vocab/prov.rb +90 -115
  46. data/lib/rdf/vocab/ptr.rb +34 -36
  47. data/lib/rdf/vocab/rightsstatements.rb +12 -12
  48. data/lib/rdf/vocab/rss.rb +10 -10
  49. data/lib/rdf/vocab/schema.rb +3131 -3445
  50. data/lib/rdf/vocab/schemas.rb +27066 -0
  51. data/lib/rdf/vocab/sd.rb +38 -38
  52. data/lib/rdf/vocab/sh.rb +183 -183
  53. data/lib/rdf/vocab/sioc.rb +97 -97
  54. data/lib/rdf/vocab/siocservices.rb +8 -8
  55. data/lib/rdf/vocab/sioctypes.rb +38 -38
  56. data/lib/rdf/vocab/skos.rb +45 -47
  57. data/lib/rdf/vocab/skosxl.rb +10 -10
  58. data/lib/rdf/vocab/v.rb +32 -36
  59. data/lib/rdf/vocab/vcard.rb +117 -118
  60. data/lib/rdf/vocab/vmd.rb +32 -36
  61. data/lib/rdf/vocab/void.rb +26 -26
  62. data/lib/rdf/vocab/vs.rb +4 -4
  63. data/lib/rdf/vocab/wdrs.rb +22 -22
  64. data/lib/rdf/vocab/wot.rb +18 -18
  65. data/lib/rdf/vocab/xhv.rb +84 -200
  66. data/lib/rdf/vocab/xkos.rb +10 -10
  67. metadata +6 -5
@@ -44,50 +44,50 @@ module RDF::Vocab
44
44
 
45
45
  # Datatype definitions
46
46
  term :boolean_str,
47
- comment: %(A string representation of a true or false value. The lexical space contains: "true", "false", "1", and "0".).freeze,
47
+ comment: "A string representation of a true or false value. The lexical space contains: \"true\", \"false\", \"1\", and \"0\".".freeze,
48
48
  isDefinedBy: "ogc:".freeze,
49
49
  label: "boolean string".freeze,
50
50
  subClassOf: "xsd:string".freeze,
51
51
  type: "rdfs:Datatype".freeze
52
52
  term :date_time_str,
53
- comment: %(A string representation of a temporal value composed of a date \(year, month, day\) and an optional time component \(hours, minutes\). The lexical space is defined by ISO 8601.).freeze,
53
+ comment: "A string representation of a temporal value composed of a date (year, month, day) and an optional time component (hours, minutes). The lexical space is defined by ISO 8601.".freeze,
54
54
  isDefinedBy: "ogc:".freeze,
55
55
  label: "date/time string".freeze,
56
56
  subClassOf: "xsd:string".freeze,
57
57
  type: "rdfs:Datatype".freeze
58
58
  term :determiner_str,
59
- comment: %(The lexical space: "", "the", "a", "an", and "auto".).freeze,
59
+ comment: "The lexical space: \"\", \"the\", \"a\", \"an\", and \"auto\".".freeze,
60
60
  isDefinedBy: "ogc:".freeze,
61
61
  label: "determiner".freeze,
62
62
  "owl:oneOf": list("".freeze, "the".freeze, "a".freeze, "an".freeze, "auto".freeze),
63
63
  subClassOf: "xsd:string".freeze,
64
64
  type: "rdfs:Datatype".freeze
65
65
  term :float_str,
66
- comment: %(A string representation of a 64-bit signed floating point number. Example lexical values include "1.234", "-1.234", "1.2e3", "-1.2e3", and "7E-10".).freeze,
66
+ comment: "A string representation of a 64-bit signed floating point number. Example lexical values include \"1.234\", \"-1.234\", \"1.2e3\", \"-1.2e3\", and \"7E-10\".".freeze,
67
67
  isDefinedBy: "ogc:".freeze,
68
68
  label: "float string".freeze,
69
69
  subClassOf: "xsd:string".freeze,
70
70
  type: "rdfs:Datatype".freeze
71
71
  term :integer_str,
72
- comment: %(A string representation of a 32-bit signed integer. Example lexical values include "1234" and "-123".).freeze,
72
+ comment: "A string representation of a 32-bit signed integer. Example lexical values include \"1234\" and \"-123\".".freeze,
73
73
  isDefinedBy: "ogc:".freeze,
74
74
  label: "integer string".freeze,
75
75
  subClassOf: "xsd:string".freeze,
76
76
  type: "rdfs:Datatype".freeze
77
77
  term :mime_type_str,
78
- comment: %(Valid mime type strings \(e.g., "application/mp3"\).).freeze,
78
+ comment: "Valid mime type strings (e.g., \"application/mp3\").".freeze,
79
79
  isDefinedBy: "og:".freeze,
80
80
  label: "mime type string".freeze,
81
81
  subClassOf: "xsd:string".freeze,
82
82
  type: "rdfs:Datatype".freeze
83
83
  term :string,
84
- comment: %(A string of Unicode characters.).freeze,
84
+ comment: "A string of Unicode characters.".freeze,
85
85
  isDefinedBy: "ogc:".freeze,
86
86
  label: "Unicode string".freeze,
87
87
  subClassOf: "xsd:string".freeze,
88
88
  type: "rdfs:Datatype".freeze
89
89
  term :url,
90
- comment: %(A string of Unicode characters forming a valid URL having the http or https scheme.).freeze,
90
+ comment: "A string of Unicode characters forming a valid URL having the http or https scheme.".freeze,
91
91
  isDefinedBy: "ogc:".freeze,
92
92
  label: "URL".freeze,
93
93
  subClassOf: "ogc:string".freeze,
@@ -66,7 +66,7 @@ module RDF::Vocab
66
66
 
67
67
  # Ontology definition
68
68
  ontology :"http://www.openarchives.org/ore/terms/",
69
- comment: %(The set of terms provided by the OAI ORE initiative).freeze,
69
+ comment: "The set of terms provided by the OAI ORE initiative".freeze,
70
70
  "dc:license": "http://creativecommons.org/licenses/by-sa/3.0/".freeze,
71
71
  "dc:publisher": term(
72
72
  label: "The Open Archives Initiative ORE Project".freeze
@@ -77,23 +77,23 @@ module RDF::Vocab
77
77
 
78
78
  # Class definitions
79
79
  term :AggregatedResource,
80
- comment: %(A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation.).freeze,
80
+ comment: "A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation.".freeze,
81
81
  isDefinedBy: "ore:".freeze,
82
82
  label: "Aggregated Resource".freeze,
83
83
  type: "rdfs:Class".freeze
84
84
  term :Aggregation,
85
- comment: %(A set of related resources \(Aggregated Resources\), grouped together such that the set can be treated as a single resource. This is the entity described within the ORE interoperability framework by a Resource Map.).freeze,
85
+ comment: "A set of related resources (Aggregated Resources), grouped together such that the set can be treated as a single resource. This is the entity described within the ORE interoperability framework by a Resource Map.".freeze,
86
86
  isDefinedBy: "ore:".freeze,
87
87
  label: "Aggregation".freeze,
88
88
  subClassOf: "dcmitype:Collection".freeze,
89
89
  type: "rdfs:Class".freeze
90
90
  term :Proxy,
91
- comment: %(A Proxy represents an Aggregated Resource as it exists in a specific Aggregation. All assertions made about an entity are globally true, not only within the context of the Aggregation. As such, in order to make assertions which are only true of a resource as it exists in an Aggregation, a Proxy object is required. For example, one might want to cite an article as it appears in a specific journal, or assign aggregation-specific metadata to a Resource.).freeze,
91
+ comment: "A Proxy represents an Aggregated Resource as it exists in a specific Aggregation. All assertions made about an entity are globally true, not only within the context of the Aggregation. As such, in order to make assertions which are only true of a resource as it exists in an Aggregation, a Proxy object is required. For example, one might want to cite an article as it appears in a specific journal, or assign aggregation-specific metadata to a Resource.".freeze,
92
92
  isDefinedBy: "ore:".freeze,
93
93
  label: "Proxy".freeze,
94
94
  type: "rdfs:Class".freeze
95
95
  term :ResourceMap,
96
- comment: %(A description of an Aggregation according to the OAI-ORE data model. Resource Maps are serialised to a machine readable format according to the implementation guidelines.).freeze,
96
+ comment: "A description of an Aggregation according to the OAI-ORE data model. Resource Maps are serialised to a machine readable format according to the implementation guidelines.".freeze,
97
97
  isDefinedBy: "ore:".freeze,
98
98
  label: "Resource Map".freeze,
99
99
  subClassOf: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze,
@@ -101,7 +101,7 @@ module RDF::Vocab
101
101
 
102
102
  # Property definitions
103
103
  property :aggregates,
104
- comment: %(Aggregations, by definition, aggregate resources. The ore:aggregates relationship expresses that the object resource is a member of the set of Aggregated Resources of the subject \(the Aggregation\). This relationship between the Aggregation and its Aggregated Resources is thus more specific than a simple part/whole relationship, as expressed by dcterms:hasPart for example.).freeze,
104
+ comment: "Aggregations, by definition, aggregate resources. The ore:aggregates relationship expresses that the object resource is a member of the set of Aggregated Resources of the subject (the Aggregation). This relationship between the Aggregation and its Aggregated Resources is thus more specific than a simple part/whole relationship, as expressed by dcterms:hasPart for example.".freeze,
105
105
  domain: "ore:Aggregation".freeze,
106
106
  inverseOf: "ore:isAggregatedBy".freeze,
107
107
  isDefinedBy: "ore:".freeze,
@@ -110,7 +110,7 @@ module RDF::Vocab
110
110
  subPropertyOf: "dc:hasPart".freeze,
111
111
  type: "rdf:Property".freeze
112
112
  property :describes,
113
- comment: %(This relationship asserts that the subject \(a Resource Map\) describes the object \(an Aggregation\).).freeze,
113
+ comment: "This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation).".freeze,
114
114
  domain: "ore:ResourceMap".freeze,
115
115
  inverseOf: "ore:isDescribedBy".freeze,
116
116
  isDefinedBy: "ore:".freeze,
@@ -118,7 +118,7 @@ module RDF::Vocab
118
118
  range: "ore:Aggregation".freeze,
119
119
  type: "rdf:Property".freeze
120
120
  property :isAggregatedBy,
121
- comment: %(The inverse relationship of ore:aggregates, ore:isAggregatedBy asserts that an Aggregated Resource is aggregated by an Aggregation.).freeze,
121
+ comment: "The inverse relationship of ore:aggregates, ore:isAggregatedBy asserts that an Aggregated Resource is aggregated by an Aggregation.".freeze,
122
122
  domain: "ore:AggregatedResource".freeze,
123
123
  inverseOf: "ore:aggregates".freeze,
124
124
  isDefinedBy: "ore:".freeze,
@@ -127,7 +127,7 @@ module RDF::Vocab
127
127
  subPropertyOf: "dc:isPartOf".freeze,
128
128
  type: "rdf:Property".freeze
129
129
  property :isDescribedBy,
130
- comment: %(The inverse relationship of ore:describes, in this case the object of the relationship is the Resource Map and the subject is the Aggregation which it describes.).freeze,
130
+ comment: "The inverse relationship of ore:describes, in this case the object of the relationship is the Resource Map and the subject is the Aggregation which it describes.".freeze,
131
131
  domain: "ore:Aggregation".freeze,
132
132
  inverseOf: "ore:describes".freeze,
133
133
  isDefinedBy: "ore:".freeze,
@@ -135,28 +135,28 @@ module RDF::Vocab
135
135
  range: "ore:ResourceMap".freeze,
136
136
  type: "rdf:Property".freeze
137
137
  property :lineage,
138
- comment: %(ore:lineage is a relationship between two Proxy objects, both of which MUST have the same Resource for which they are proxies. The meaning is that the Resource for which the subject of the relationship is a Proxy was discovered in the Aggregation in which the object Proxy's resource is aggregated.).freeze,
138
+ comment: "ore:lineage is a relationship between two Proxy objects, both of which MUST have the same Resource for which they are proxies. The meaning is that the Resource for which the subject of the relationship is a Proxy was discovered in the Aggregation in which the object Proxy's resource is aggregated.".freeze,
139
139
  domain: "ore:Proxy".freeze,
140
140
  isDefinedBy: "ore:".freeze,
141
141
  label: "Lineage".freeze,
142
142
  range: "ore:Proxy".freeze,
143
143
  type: "rdf:Property".freeze
144
144
  property :proxyFor,
145
- comment: %(Proxy objects are used to represent a Resource as it is aggregated in a particular Aggregation. The ore:proxyFor relationship is used to link the proxy to the Aggregated Resource it is a proxy for. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregated Resource.).freeze,
145
+ comment: "Proxy objects are used to represent a Resource as it is aggregated in a particular Aggregation. The ore:proxyFor relationship is used to link the proxy to the Aggregated Resource it is a proxy for. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregated Resource.".freeze,
146
146
  domain: "ore:Proxy".freeze,
147
147
  isDefinedBy: "ore:".freeze,
148
148
  label: "Proxy For".freeze,
149
149
  range: "ore:AggregatedResource".freeze,
150
150
  type: "rdf:Property".freeze
151
151
  property :proxyIn,
152
- comment: %(Proxy objects must link to the Aggregation in which the resource being proxied is aggregated. The ore:proxyIn relationship is used for this purpose. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregation.).freeze,
152
+ comment: "Proxy objects must link to the Aggregation in which the resource being proxied is aggregated. The ore:proxyIn relationship is used for this purpose. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregation.".freeze,
153
153
  domain: "ore:Proxy".freeze,
154
154
  isDefinedBy: "ore:".freeze,
155
155
  label: "Proxy In".freeze,
156
156
  range: "ore:Aggregation".freeze,
157
157
  type: "rdf:Property".freeze
158
158
  property :similarTo,
159
- comment: %(The subject of this relationship MUST be an Aggregation. This Aggregation should be considered an expression within the ORE context of the object of the relationship, as it is broadly equivalent to the resource. For example, the Aggregation may consist of the resources which, together, make up a journal article which has a DOI assigned to it. The Aggregation is not the article to which the DOI was assigned, but is a representation of it in some manner.).freeze,
159
+ comment: "The subject of this relationship MUST be an Aggregation. This Aggregation should be considered an expression within the ORE context of the object of the relationship, as it is broadly equivalent to the resource. For example, the Aggregation may consist of the resources which, together, make up a journal article which has a DOI assigned to it. The Aggregation is not the article to which the DOI was assigned, but is a representation of it in some manner.".freeze,
160
160
  domain: "ore:Aggregation".freeze,
161
161
  isDefinedBy: "ore:".freeze,
162
162
  label: "Similar To".freeze,
@@ -199,7 +199,7 @@ module RDF::Vocab
199
199
 
200
200
  # Ontology definition
201
201
  ontology :"http://www.w3.org/ns/org#",
202
- comment: %(Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.).freeze,
202
+ comment: "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.".freeze,
203
203
  "dc:contributor": [term(
204
204
  "foaf:homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze,
205
205
  "foaf:name": "Shuji Kamitsuna".freeze
@@ -239,25 +239,25 @@ module RDF::Vocab
239
239
 
240
240
  # Class definitions
241
241
  term :ChangeEvent,
242
- comment: %(Represents an event which resulted in a major change to an organization such as a merger or complete restructuring. It is intended for situations where the resulting organization is sufficient distinct from the original organizations that it has a distinct identity and distinct URI. Extension vocabularies should define sub-classes of this to denote particular categories of event. The instant or interval at which the event occurred should be given by `prov:startAtTime` and `prov:endedAtTime`, a description should be given by `dct:description`. ).freeze,
242
+ comment: "Represents an event which resulted in a major change to an organization such as a merger or complete restructuring. It is intended for situations where the resulting organization is sufficient distinct from the original organizations that it has a distinct identity and distinct URI. Extension vocabularies should define sub-classes of this to denote particular categories of event. The instant or interval at which the event occurred should be given by `prov:startAtTime` and `prov:endedAtTime`, a description should be given by `dct:description`. ".freeze,
243
243
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
244
244
  label: "Change Event".freeze,
245
245
  subClassOf: "prov:Activity".freeze,
246
246
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
247
247
  term :FormalOrganization,
248
- comment: %(An Organization which is recognized in the world at large, in particular in legal jurisdictions, with associated rights and responsibilities. Examples include a Corporation, Charity, Government or Church. Note that this is a super class of `gr:BusinessEntity` and it is recommended to use the GoodRelations vocabulary to denote Business classifications such as DUNS or NAICS.).freeze,
248
+ comment: "An Organization which is recognized in the world at large, in particular in legal jurisdictions, with associated rights and responsibilities. Examples include a Corporation, Charity, Government or Church. Note that this is a super class of `gr:BusinessEntity` and it is recommended to use the GoodRelations vocabulary to denote Business classifications such as DUNS or NAICS.".freeze,
249
249
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
250
250
  label: "Formal Organization".freeze,
251
251
  subClassOf: ["foaf:Organization".freeze, "org:Organization".freeze],
252
252
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
253
253
  term :Membership,
254
- comment: %(Indicates the nature of an Agent's membership of an organization. Represents an n-ary relation between an Agent, an Organization and a Role. It is possible to directly indicate membership, independent of the specific Role, through use of the `org:memberOf` property.).freeze,
254
+ comment: "Indicates the nature of an Agent's membership of an organization. Represents an n-ary relation between an Agent, an Organization and a Role. It is possible to directly indicate membership, independent of the specific Role, through use of the `org:memberOf` property.".freeze,
255
255
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
256
256
  label: "Membership".freeze,
257
257
  "owl:disjointWith": ["org:ChangeEvent".freeze, "org:Site".freeze],
258
258
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
259
259
  term :Organization,
260
- comment: %(Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures. It is recommended that SKOS lexical labels should be used to label the Organization. In particular `skos:prefLabel` for the primary \(possibly legally recognized name\), `skos:altLabel` for alternative names \(trading names, colloquial names\) and `skos:notation` to denote a code from a code list. Alternative names: _Collective_ _Body_ _Org_ _Group_).freeze,
260
+ comment: "Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures. It is recommended that SKOS lexical labels should be used to label the Organization. In particular `skos:prefLabel` for the primary (possibly legally recognized name), `skos:altLabel` for alternative names (trading names, colloquial names) and `skos:notation` to denote a code from a code list. Alternative names: _Collective_ _Body_ _Org_ _Group_".freeze,
261
261
  equivalentClass: "foaf:Organization".freeze,
262
262
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
263
263
  label: "Organization".freeze,
@@ -266,7 +266,7 @@ module RDF::Vocab
266
266
  subClassOf: "foaf:Agent".freeze,
267
267
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
268
268
  term :OrganizationalCollaboration,
269
- comment: %(A collaboration between two or more Organizations such as a project. It meets the criteria for being an Organization in that it has an identity and defining purpose independent of its particular members but is neither a formally recognized legal entity nor a sub-unit within some larger organization. Might typically have a shorter lifetime than the Organizations within it, but not necessarily. All members are `org:Organization`s rather than individuals and those Organizations can play particular roles within the venture. Alternative names: _Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_).freeze,
269
+ comment: "A collaboration between two or more Organizations such as a project. It meets the criteria for being an Organization in that it has an identity and defining purpose independent of its particular members but is neither a formally recognized legal entity nor a sub-unit within some larger organization. Might typically have a shorter lifetime than the Organizations within it, but not necessarily. All members are `org:Organization`s rather than individuals and those Organizations can play particular roles within the venture. Alternative names: _Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_".freeze,
270
270
  equivalentClass: term(
271
271
  intersectionOf: list("org:Organization".freeze, term(
272
272
  allValuesFrom: "org:Organization".freeze,
@@ -280,25 +280,25 @@ module RDF::Vocab
280
280
  subClassOf: "org:Organization".freeze,
281
281
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
282
282
  term :OrganizationalUnit,
283
- comment: %(An Organization such as a University Support Unit which is part of some larger FormalOrganization and only has full recognition within the context of that FormalOrganization, it is not a Legal Entity in its own right. Units can be large and complex containing other Units and even FormalOrganizations. Alternative names: _OU_ _Unit_ _Department_).freeze,
283
+ comment: "An Organization such as a University Support Unit which is part of some larger FormalOrganization and only has full recognition within the context of that FormalOrganization, it is not a Legal Entity in its own right. Units can be large and complex containing other Units and even FormalOrganizations. Alternative names: _OU_ _Unit_ _Department_".freeze,
284
284
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
285
285
  label: "OrganizationalUnit".freeze,
286
286
  subClassOf: "org:Organization".freeze,
287
287
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
288
288
  term :Post,
289
- comment: %(A Post represents some position within an organization that exists independently of the person or persons filling it. Posts may be used to represent situations where a person is a member of an organization ex officio \(for example the Secretary of State for Scotland is part of UK Cabinet by virtue of being Secretary of State for Scotland, not as an individual person\). A post can be held by multiple people and hence can be treated as a organization in its own right.).freeze,
289
+ comment: "A Post represents some position within an organization that exists independently of the person or persons filling it. Posts may be used to represent situations where a person is a member of an organization ex officio (for example the Secretary of State for Scotland is part of UK Cabinet by virtue of being Secretary of State for Scotland, not as an individual person). A post can be held by multiple people and hence can be treated as a organization in its own right.".freeze,
290
290
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
291
291
  label: "Post".freeze,
292
292
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
293
293
  term :Role,
294
- comment: %(Denotes a role that a Person or other Agent can take in an organization. Instances of this class describe the abstract role; to denote a specific instance of a person playing that role in a specific organization use an instance of `org:Membership`. It is common for roles to be arranged in some taxonomic structure and we use SKOS to represent that. The normal SKOS lexical properties should be used when labelling the Role. Additional descriptive properties for the Role, such as a Salary band, may be added by extension vocabularies.).freeze,
294
+ comment: "Denotes a role that a Person or other Agent can take in an organization. Instances of this class describe the abstract role; to denote a specific instance of a person playing that role in a specific organization use an instance of `org:Membership`. It is common for roles to be arranged in some taxonomic structure and we use SKOS to represent that. The normal SKOS lexical properties should be used when labelling the Role. Additional descriptive properties for the Role, such as a Salary band, may be added by extension vocabularies.".freeze,
295
295
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
296
296
  label: "Role".freeze,
297
297
  "owl:disjointWith": ["org:ChangeEvent".freeze, "org:Membership".freeze, "org:Site".freeze],
298
298
  subClassOf: "skos:Concept".freeze,
299
299
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
300
300
  term :Site,
301
- comment: %(An office or other premise at which the organization is located. Many organizations are spread across multiple sites and many sites will host multiple locations. In most cases a Site will be a physical location. However, we don't exclude the possibility of non-physical sites such as a virtual office with an associated post box and phone reception service. Extensions may provide subclasses to denote particular types of site.).freeze,
301
+ comment: "An office or other premise at which the organization is located. Many organizations are spread across multiple sites and many sites will host multiple locations. In most cases a Site will be a physical location. However, we don't exclude the possibility of non-physical sites such as a virtual office with an associated post box and phone reception service. Extensions may provide subclasses to denote particular types of site.".freeze,
302
302
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
303
303
  label: "Site".freeze,
304
304
  "owl:disjointWith": "org:ChangeEvent".freeze,
@@ -306,14 +306,14 @@ module RDF::Vocab
306
306
 
307
307
  # Property definitions
308
308
  property :basedAt,
309
- comment: %(Indicates the site at which a person is based. We do not restrict the possibility that a person is based at multiple sites.).freeze,
309
+ comment: "Indicates the site at which a person is based. We do not restrict the possibility that a person is based at multiple sites.".freeze,
310
310
  domain: "foaf:Person".freeze,
311
311
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
312
312
  label: "based At".freeze,
313
313
  range: "org:Site".freeze,
314
314
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
315
315
  property :changedBy,
316
- comment: %(Indicates a change event which resulted in a change to this organization. Depending on the event the organization may or may not have continued to exist after the event. Inverse of `org:originalOrganization`.).freeze,
316
+ comment: "Indicates a change event which resulted in a change to this organization. Depending on the event the organization may or may not have continued to exist after the event. Inverse of `org:originalOrganization`.".freeze,
317
317
  domain: "org:Organization".freeze,
318
318
  inverseOf: "org:originalOrganization".freeze,
319
319
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -321,14 +321,14 @@ module RDF::Vocab
321
321
  range: "org:ChangeEvent".freeze,
322
322
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
323
323
  property :classification,
324
- comment: %(Indicates a classification for this Organization within some classification scheme. Extension vocabularies may wish to specialize this property to have a range corresponding to a specific `skos:ConceptScheme`. This property is under discussion and may be revised or removed - in many cases organizations are best categorized by defining a sub-class hierarchy in an extension vocabulary.).freeze,
324
+ comment: "Indicates a classification for this Organization within some classification scheme. Extension vocabularies may wish to specialize this property to have a range corresponding to a specific `skos:ConceptScheme`. This property is under discussion and may be revised or removed - in many cases organizations are best categorized by defining a sub-class hierarchy in an extension vocabulary.".freeze,
325
325
  domain: "org:Organization".freeze,
326
326
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
327
327
  label: "classification".freeze,
328
328
  range: "skos:Concept".freeze,
329
329
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
330
330
  property :hasMember,
331
- comment: %(Indicates a person who is a member of the subject Organization. Inverse of `org:memberOf`, see that property for further clarification. Provided for compatibility with `foaf:member`.).freeze,
331
+ comment: "Indicates a person who is a member of the subject Organization. Inverse of `org:memberOf`, see that property for further clarification. Provided for compatibility with `foaf:member`.".freeze,
332
332
  domain: "org:Organization".freeze,
333
333
  equivalentProperty: "foaf:member".freeze,
334
334
  inverseOf: "org:memberOf".freeze,
@@ -337,7 +337,7 @@ module RDF::Vocab
337
337
  range: "foaf:Agent".freeze,
338
338
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
339
339
  property :hasMembership,
340
- comment: %(Indicates a membership relationship that the Agent plays. Inverse of `org:member`.).freeze,
340
+ comment: "Indicates a membership relationship that the Agent plays. Inverse of `org:member`.".freeze,
341
341
  domain: "foaf:Agent".freeze,
342
342
  inverseOf: "org:member".freeze,
343
343
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -345,14 +345,14 @@ module RDF::Vocab
345
345
  range: "org:Membership".freeze,
346
346
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
347
347
  property :hasPost,
348
- comment: %(Indicates a Post which exists within the Organization.).freeze,
348
+ comment: "Indicates a Post which exists within the Organization.".freeze,
349
349
  domain: "org:Organization".freeze,
350
350
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
351
351
  label: "post".freeze,
352
352
  range: "org:Post".freeze,
353
353
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
354
354
  property :hasPrimarySite,
355
- comment: %(Indicates a primary site for the Organization, this is the default means by which an Organization can be contacted and is not necessarily the formal headquarters.).freeze,
355
+ comment: "Indicates a primary site for the Organization, this is the default means by which an Organization can be contacted and is not necessarily the formal headquarters.".freeze,
356
356
  domain: "org:Organization".freeze,
357
357
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
358
358
  label: "primary Site".freeze,
@@ -360,7 +360,7 @@ module RDF::Vocab
360
360
  subPropertyOf: "org:hasSite".freeze,
361
361
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
362
362
  property :hasRegisteredSite,
363
- comment: %(Indicates the legally registered site for the organization, in many legal jurisdictions there is a requirement that FormalOrganizations such as Companies or Charities have such a primary designed site. ).freeze,
363
+ comment: "Indicates the legally registered site for the organization, in many legal jurisdictions there is a requirement that FormalOrganizations such as Companies or Charities have such a primary designed site. ".freeze,
364
364
  domain: "org:FormalOrganization".freeze,
365
365
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
366
366
  label: "registered Site".freeze,
@@ -368,7 +368,7 @@ module RDF::Vocab
368
368
  subPropertyOf: "org:hasPrimarySite".freeze,
369
369
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
370
370
  property :hasSite,
371
- comment: %(Indicates a site at which the Organization has some presence even if only indirect \(e.g. virtual office or a professional service which is acting as the registered address for a company\). Inverse of `org:siteOf`.).freeze,
371
+ comment: "Indicates a site at which the Organization has some presence even if only indirect (e.g. virtual office or a professional service which is acting as the registered address for a company). Inverse of `org:siteOf`.".freeze,
372
372
  domain: "org:Organization".freeze,
373
373
  inverseOf: "org:siteOf".freeze,
374
374
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -376,7 +376,7 @@ module RDF::Vocab
376
376
  range: "org:Site".freeze,
377
377
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
378
378
  property :hasSubOrganization,
379
- comment: %(Represents hierarchical containment of Organizations or Organizational Units; indicates an organization which is a sub-part or child of this organization. Inverse of `org:subOrganizationOf`.).freeze,
379
+ comment: "Represents hierarchical containment of Organizations or Organizational Units; indicates an organization which is a sub-part or child of this organization. Inverse of `org:subOrganizationOf`.".freeze,
380
380
  domain: "org:Organization".freeze,
381
381
  inverseOf: "org:subOrganizationOf".freeze,
382
382
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -384,7 +384,7 @@ module RDF::Vocab
384
384
  range: "org:Organization".freeze,
385
385
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
386
386
  property :hasUnit,
387
- comment: %(Indicates a unit which is part of this Organization, e.g. a Department within a larger FormalOrganization. Inverse of `org:unitOf`.).freeze,
387
+ comment: "Indicates a unit which is part of this Organization, e.g. a Department within a larger FormalOrganization. Inverse of `org:unitOf`.".freeze,
388
388
  domain: "org:FormalOrganization".freeze,
389
389
  inverseOf: "org:unitOf".freeze,
390
390
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -393,7 +393,7 @@ module RDF::Vocab
393
393
  subPropertyOf: "org:hasSubOrganization".freeze,
394
394
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
395
395
  property :headOf,
396
- comment: %(Indicates that a person is the leader or formal head of the Organization. This will normally mean that they are the root of the `org:reportsTo` \(acyclic\) graph, though an organization may have more than one head.).freeze,
396
+ comment: "Indicates that a person is the leader or formal head of the Organization. This will normally mean that they are the root of the `org:reportsTo` (acyclic) graph, though an organization may have more than one head.".freeze,
397
397
  domain: "foaf:Person".freeze,
398
398
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
399
399
  label: "head of".freeze,
@@ -401,14 +401,14 @@ module RDF::Vocab
401
401
  subPropertyOf: "org:memberOf".freeze,
402
402
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
403
403
  property :heldBy,
404
- comment: %(Indicates an Agent which holds a Post.).freeze,
404
+ comment: "Indicates an Agent which holds a Post.".freeze,
405
405
  domain: "org:Post".freeze,
406
406
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
407
407
  label: "held by".freeze,
408
408
  range: "foaf:Agent".freeze,
409
409
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
410
410
  property :holds,
411
- comment: %(Indicates a Post held by some Agent.).freeze,
411
+ comment: "Indicates a Post held by some Agent.".freeze,
412
412
  domain: "foaf:Agent".freeze,
413
413
  inverseOf: "org:heldBy".freeze,
414
414
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -416,28 +416,28 @@ module RDF::Vocab
416
416
  range: "org:Post".freeze,
417
417
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
418
418
  property :identifier,
419
- comment: %(Gives an identifier, such as a company registration number, that can be used to used to uniquely identify the organization. Many different national and international identier schemes are available. The org ontology is neutral to which schemes are used. The particular identifier scheme should be indicated by the datatype of the identifier value. Using datatypes to distinguish the notation scheme used is consistent with recommended best practice for `skos:notation` of which this property is a specialization.).freeze,
419
+ comment: "Gives an identifier, such as a company registration number, that can be used to used to uniquely identify the organization. Many different national and international identier schemes are available. The org ontology is neutral to which schemes are used. The particular identifier scheme should be indicated by the datatype of the identifier value. Using datatypes to distinguish the notation scheme used is consistent with recommended best practice for `skos:notation` of which this property is a specialization.".freeze,
420
420
  domain: "org:Organization".freeze,
421
421
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
422
422
  label: "identifier".freeze,
423
423
  subPropertyOf: "skos:notation".freeze,
424
424
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
425
425
  property :linkedTo,
426
- comment: %(Indicates an arbitrary relationship between two organizations. Specializations of this can be used to, for example, denote funding or supply chain relationships.).freeze,
426
+ comment: "Indicates an arbitrary relationship between two organizations. Specializations of this can be used to, for example, denote funding or supply chain relationships.".freeze,
427
427
  domain: "org:Organization".freeze,
428
428
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
429
429
  label: "linked to".freeze,
430
430
  range: "org:Organization".freeze,
431
431
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
432
432
  property :location,
433
- comment: %(Gives a location description for a person within the organization, for example a _Mail Stop_ for internal posting purposes.).freeze,
433
+ comment: "Gives a location description for a person within the organization, for example a _Mail Stop_ for internal posting purposes.".freeze,
434
434
  domain: "foaf:Person".freeze,
435
435
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
436
436
  label: "location".freeze,
437
437
  range: "xsd:string".freeze,
438
438
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
439
439
  property :member,
440
- comment: %(Indicates the Person \(or other Agent including Organization\) involved in the Membership relationship. Inverse of `org:hasMembership`).freeze,
440
+ comment: "Indicates the Person (or other Agent including Organization) involved in the Membership relationship. Inverse of `org:hasMembership`".freeze,
441
441
  domain: "org:Membership".freeze,
442
442
  inverseOf: "org:hasMembership".freeze,
443
443
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -445,13 +445,13 @@ module RDF::Vocab
445
445
  range: "foaf:Agent".freeze,
446
446
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze]
447
447
  property :memberDuring,
448
- comment: %(Optional property to indicate the interval for which the membership is/was valid.).freeze,
448
+ comment: "Optional property to indicate the interval for which the membership is/was valid.".freeze,
449
449
  domain: "org:Membership".freeze,
450
450
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
451
451
  label: "member During".freeze,
452
452
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
453
453
  property :memberOf,
454
- comment: %(Indicates that a person is a member of the Organization with no indication of the nature of that membership or the role played. Note that the choice of property name is not meant to limit the property to only formal membership arrangements, it is also indended to cover related concepts such as affilliation or other involvement in the organization. Extensions can specialize this relationship to indicate particular roles within the organization or more nuanced relationships to the organization. Has an optional inverse, `org:hasmember`.).freeze,
454
+ comment: "Indicates that a person is a member of the Organization with no indication of the nature of that membership or the role played. Note that the choice of property name is not meant to limit the property to only formal membership arrangements, it is also indended to cover related concepts such as affilliation or other involvement in the organization. Extensions can specialize this relationship to indicate particular roles within the organization or more nuanced relationships to the organization. Has an optional inverse, `org:hasmember`.".freeze,
455
455
  domain: "foaf:Agent".freeze,
456
456
  inverseOf: "org:hasMember".freeze,
457
457
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -459,14 +459,14 @@ module RDF::Vocab
459
459
  range: "org:Organization".freeze,
460
460
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
461
461
  property :organization,
462
- comment: %(Indicates Organization in which the Agent is a member.).freeze,
462
+ comment: "Indicates Organization in which the Agent is a member.".freeze,
463
463
  domain: "org:Membership".freeze,
464
464
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
465
465
  label: "organization".freeze,
466
466
  range: "org:Organization".freeze,
467
467
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze]
468
468
  property :originalOrganization,
469
- comment: %(Indicates one or more organizations that existed before the change event. Depending on the event they may or may not have continued to exist after the event. Inverse of `org:changedBy`.).freeze,
469
+ comment: "Indicates one or more organizations that existed before the change event. Depending on the event they may or may not have continued to exist after the event. Inverse of `org:changedBy`.".freeze,
470
470
  domain: "org:ChangeEvent".freeze,
471
471
  inverseOf: "org:changedBy".freeze,
472
472
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -475,7 +475,7 @@ module RDF::Vocab
475
475
  subPropertyOf: "prov:used".freeze,
476
476
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
477
477
  property :postIn,
478
- comment: %(Indicates the Organization in which the Post exists.).freeze,
478
+ comment: "Indicates the Organization in which the Post exists.".freeze,
479
479
  domain: "org:Post".freeze,
480
480
  inverseOf: "org:hasPost".freeze,
481
481
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -483,19 +483,19 @@ module RDF::Vocab
483
483
  range: "org:Organization".freeze,
484
484
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
485
485
  property :purpose,
486
- comment: %(Indicates the purpose of this Organization. There can be many purposes at different levels of abstraction but the nature of an organization is to have a reason for existence and this property is a means to document that reason. An Organization may have multiple purposes. It is recommended that the purpose be denoted by a controlled term or code list, ideally a `skos:Concept`. However, the range is left open to allow for other types of descriptive schemes. It is expected that specializations or application profiles of this vocabulary will constrain the range of the purpose. Alternative names: _remit_ _responsibility_ \(esp. if applied to OrganizationalUnits such as Government Departments\).).freeze,
486
+ comment: "Indicates the purpose of this Organization. There can be many purposes at different levels of abstraction but the nature of an organization is to have a reason for existence and this property is a means to document that reason. An Organization may have multiple purposes. It is recommended that the purpose be denoted by a controlled term or code list, ideally a `skos:Concept`. However, the range is left open to allow for other types of descriptive schemes. It is expected that specializations or application profiles of this vocabulary will constrain the range of the purpose. Alternative names: _remit_ _responsibility_ (esp. if applied to OrganizationalUnits such as Government Departments).".freeze,
487
487
  domain: "org:Organization".freeze,
488
488
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
489
489
  label: "purpose".freeze,
490
490
  type: "rdf:Property".freeze
491
491
  property :remuneration,
492
- comment: %(Indicates a salary or other reward associated with the role. Typically this will be denoted using an existing representation scheme such as `gr:PriceSpecification` but the range is left open to allow applications to specialize it \(e.g. to remunerationInGBP\).).freeze,
492
+ comment: "Indicates a salary or other reward associated with the role. Typically this will be denoted using an existing representation scheme such as `gr:PriceSpecification` but the range is left open to allow applications to specialize it (e.g. to remunerationInGBP).".freeze,
493
493
  domain: "org:Role".freeze,
494
494
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
495
495
  label: "remuneration".freeze,
496
496
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
497
497
  property :reportsTo,
498
- comment: %(Indicates a reporting relationship as might be depicted on an organizational chart. The precise semantics of the reporting relationship will vary by organization but is intended to encompass both direct supervisory relationships \(e.g. carrying objective and salary setting authority\) and more general reporting or accountability relationships \(e.g. so called _dotted line_ reporting\).).freeze,
498
+ comment: "Indicates a reporting relationship as might be depicted on an organizational chart. The precise semantics of the reporting relationship will vary by organization but is intended to encompass both direct supervisory relationships (e.g. carrying objective and salary setting authority) and more general reporting or accountability relationships (e.g. so called _dotted line_ reporting).".freeze,
499
499
  domain: term(
500
500
  type: "owl:Class".freeze,
501
501
  unionOf: list("foaf:Agent".freeze, "org:Post".freeze)
@@ -508,7 +508,7 @@ module RDF::Vocab
508
508
  ),
509
509
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
510
510
  property :resultedFrom,
511
- comment: %(Indicates an event which resulted in this organization. Inverse of `org:resultingOrganization`.).freeze,
511
+ comment: "Indicates an event which resulted in this organization. Inverse of `org:resultingOrganization`.".freeze,
512
512
  domain: "org:Organization".freeze,
513
513
  inverseOf: "org:resultingOrganization".freeze,
514
514
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -517,7 +517,7 @@ module RDF::Vocab
517
517
  subPropertyOf: "prov:wasGeneratedBy".freeze,
518
518
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
519
519
  property :resultingOrganization,
520
- comment: %(Indicates an organization which was created or changed as a result of the event. Inverse of `org:resultedFrom`.).freeze,
520
+ comment: "Indicates an organization which was created or changed as a result of the event. Inverse of `org:resultedFrom`.".freeze,
521
521
  domain: "org:ChangeEvent".freeze,
522
522
  inverseOf: "org:resultedFrom".freeze,
523
523
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -525,7 +525,7 @@ module RDF::Vocab
525
525
  range: "org:Organization".freeze,
526
526
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
527
527
  property :role,
528
- comment: %(Indicates the Role that the Agent plays in a Membership relationship with an Organization.).freeze,
528
+ comment: "Indicates the Role that the Agent plays in a Membership relationship with an Organization.".freeze,
529
529
  domain: term(
530
530
  type: "owl:Class".freeze,
531
531
  unionOf: list("org:Membership".freeze, "org:Post".freeze)
@@ -535,20 +535,20 @@ module RDF::Vocab
535
535
  range: "org:Role".freeze,
536
536
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
537
537
  property :roleProperty,
538
- comment: %(This is a metalevel property which is used to annotate an `org:Role` instance with a sub-property of `org:memberOf` that can be used to directly indicate the role for easy of query. The intended semantics is a Membership relation involving the Role implies the existence of a direct property relationship through an inference rule of the form: `{ [] org:member ?p; org:organization ?o; org:role [org:roleProperty ?r] } -> {?p ?r ?o}`.).freeze,
538
+ comment: "This is a metalevel property which is used to annotate an `org:Role` instance with a sub-property of `org:memberOf` that can be used to directly indicate the role for easy of query. The intended semantics is a Membership relation involving the Role implies the existence of a direct property relationship through an inference rule of the form: `{ [] org:member ?p; org:organization ?o; org:role [org:roleProperty ?r] } -> {?p ?r ?o}`.".freeze,
539
539
  domain: "org:Role".freeze,
540
540
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
541
541
  label: "role (property)".freeze,
542
542
  range: "rdf:Property".freeze,
543
543
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
544
544
  property :siteAddress,
545
- comment: %(Indicates an address for the site in a suitable encoding. Use of vCard \(using the http://www.w3.org/TR/vcard-rdf/ vocabulary\) is encouraged but the range is left open to allow other encodings to be used. The address may include email, telephone, and geo-location information and is not restricted to a physical address. ).freeze,
545
+ comment: "Indicates an address for the site in a suitable encoding. Use of vCard (using the http://www.w3.org/TR/vcard-rdf/ vocabulary) is encouraged but the range is left open to allow other encodings to be used. The address may include email, telephone, and geo-location information and is not restricted to a physical address. ".freeze,
546
546
  domain: "org:Site".freeze,
547
547
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
548
548
  label: "site Address".freeze,
549
549
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
550
550
  property :siteOf,
551
- comment: %(Indicates an Organization which has some presence at the given site. This is the inverse of `org:hasSite`.).freeze,
551
+ comment: "Indicates an Organization which has some presence at the given site. This is the inverse of `org:hasSite`.".freeze,
552
552
  domain: "org:Site".freeze,
553
553
  inverseOf: "org:hasSite".freeze,
554
554
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -556,7 +556,7 @@ module RDF::Vocab
556
556
  range: "org:Organization".freeze,
557
557
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
558
558
  property :subOrganizationOf,
559
- comment: %(Represents hierarchical containment of Organizations or OrganizationalUnits; indicates an Organization which contains this Organization. Inverse of `org:hasSubOrganization`.).freeze,
559
+ comment: "Represents hierarchical containment of Organizations or OrganizationalUnits; indicates an Organization which contains this Organization. Inverse of `org:hasSubOrganization`.".freeze,
560
560
  domain: "org:Organization".freeze,
561
561
  inverseOf: "org:hasSubOrganization".freeze,
562
562
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -565,14 +565,14 @@ module RDF::Vocab
565
565
  subPropertyOf: "org:transitiveSubOrganizationOf".freeze,
566
566
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
567
567
  property :transitiveSubOrganizationOf,
568
- comment: %(The transitive closure of subOrganizationOf, giving a representation of all organizations that contain this one. Note that technically this is a super property of the transitive closure so it could contain additional assertions but such usage is discouraged.).freeze,
568
+ comment: "The transitive closure of subOrganizationOf, giving a representation of all organizations that contain this one. Note that technically this is a super property of the transitive closure so it could contain additional assertions but such usage is discouraged.".freeze,
569
569
  domain: "org:Organization".freeze,
570
570
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
571
571
  label: "transitive sub-organization".freeze,
572
572
  range: "org:Organization".freeze,
573
573
  type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze]
574
574
  property :unitOf,
575
- comment: %(Indicates an Organization of which this Unit is a part, e.g. a Department within a larger FormalOrganization. This is the inverse of `org:hasUnit`.).freeze,
575
+ comment: "Indicates an Organization of which this Unit is a part, e.g. a Department within a larger FormalOrganization. This is the inverse of `org:hasUnit`.".freeze,
576
576
  domain: "org:OrganizationalUnit".freeze,
577
577
  inverseOf: "org:hasUnit".freeze,
578
578
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
@@ -583,7 +583,7 @@ module RDF::Vocab
583
583
 
584
584
  # Extra definitions
585
585
  term :Head,
586
- comment: %(A role corresponding to the `org:headOf` property).freeze,
586
+ comment: "A role corresponding to the `org:headOf` property".freeze,
587
587
  isDefinedBy: "http://www.w3.org/ns/org".freeze,
588
588
  label: "head".freeze,
589
589
  "org:roleProperty": "org:headOf".freeze,