rdf 1.1.6 → 1.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 53c1cabe71a5c40333f8b4d25cd8f24772c93cc9
4
- data.tar.gz: 1927e009d1d81f1da1e6478ad0bcf28eeb91eebe
3
+ metadata.gz: ddfa925cad6c8ba8b0a482f1c96fb2ff449375d7
4
+ data.tar.gz: f75488ae0b17adcb07b2e8aebc3b463fac2ee8d4
5
5
  SHA512:
6
- metadata.gz: 7b67bbc361bb18082d807e0b42f4122db44eef8228e6b4783aacbd8eaa0acdfd96d06fecd833734d2f0e697ec4780ecfe4be1457e6033a80450a1711d8695807
7
- data.tar.gz: e14069358869ccb176916ada66e90c911d1380ce77baff1303112fdda6166a8aa3042f43110f0d140d271b42da8d02e10979eb71a460b8bc33d495deb2e8ace0
6
+ metadata.gz: 67b20f4223c30f49ae1285548d5bf05006e69f1fac2be4a057f8bb55ad571856dfa19421ab3e4f8ad5d868c746c2c036dac638703c028bc9c1423cff55482643
7
+ data.tar.gz: 0ea65a206b4016dc85e6f52530a72831a58c8b7ba9ce9294447d8cbb77b3b73d5989f7e10325fab0125c737390e7b811024f654f0ab238ae81e71d5dfa80d4c2
data/README CHANGED
@@ -32,6 +32,14 @@ This is a pure-Ruby library for working with [Resource Description Framework
32
32
  * Performs auto-detection of input to select appropriate Reader class if one
33
33
  cannot be determined from file characteristics.
34
34
 
35
+ ### HTTP requests
36
+
37
+ RDF.rb uses `Net::HTTP` for retrieving HTTP and HTTPS resources. If the
38
+ [RestClient][] gem is included, that will be used instead to retrieve remote
39
+ resources. Clients may also consider using [RestClient Components][] to enable
40
+ client-side caching of HTTP results using [Rack::Cache][] or other Rack
41
+ middleware.
42
+
35
43
  ## Differences between RDF 1.0 and RDF 1.1
36
44
 
37
45
  This version of RDF.rb is fully compatible with [RDF 1.1][], but it creates some
@@ -351,6 +359,8 @@ from BNode identity (i.e., they each entail the other)
351
359
  ## Dependencies
352
360
 
353
361
  * [Ruby](http://ruby-lang.org/) (>= 1.9.2)
362
+ * [LinkHeader][] (>= 0.0.8)
363
+ * Soft dependency on [RestClient][] (>= 1.7)
354
364
 
355
365
  ## Installation
356
366
 
@@ -462,3 +472,6 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
462
472
  [RDF::Raptor]: http://ruby-rdf.github.com/rdf-raptor
463
473
  [LinkedData]: http://ruby-rdf.github.com/linkeddata
464
474
  [JSON::LD]: http://gkellogg.github.com/json-ld
475
+ [RestClient]: https://rubygems.org/gems/rest-client
476
+ [RestClient Components]: https://rubygems.org/gems/rest-client-components
477
+ [Rack::Cache]: http://rtomayko.github.io/rack-cache/
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.6
1
+ 1.1.7
@@ -147,6 +147,8 @@ module RDF
147
147
  datatype: {},
148
148
  other: {}
149
149
  }
150
+
151
+ # FIXME: This can try to resolve referenced terms against the previous version of this vocabulary, which may be strict, and fail if the referenced term hasn't been created yet.
150
152
  vocab.each.to_a.sort.each do |term|
151
153
  name = term.to_s[uri.length..-1].to_sym
152
154
  kind = case term.type.to_s
data/lib/rdf/util/file.rb CHANGED
@@ -1,34 +1,42 @@
1
1
  require 'net/http'
2
- require 'openssl'
2
+ require 'link_header'
3
3
  require 'time'
4
4
 
5
5
  module RDF; module Util
6
6
  ##
7
- # Wrapper for Kernel.open. Allows implementations to override to get
8
- # more suffisticated behavior for HTTP resources (e.g., Accept header).
7
+ # Wrapper for Net::HTTP. This allows implementations to override
8
+ # for more sophisticated behavior.
9
9
  #
10
- # Also supports the file: scheme for access to local files.
10
+ # If the [Rest Client](https://rubygems.org/gems/rest-client) gem is included,
11
+ # it will be used for retrieving resources allowing for
12
+ # sophisticated HTTP caching using [REST Client Components](https://rubygems.org/gems/rest-client-components)
13
+ # allowing the use of `Rack::Cache` to avoid network access.
11
14
  #
12
- # Classes include this module when they represent some form of a file
13
- # as a base resource, for instance an HTTP resource representing the
14
- # serialization of a Graph.
15
+ # Also supports the file: scheme for access to local files.
15
16
  #
16
- # This module may be monkey-patched to allow for more options
17
- # and interfaces.
18
17
  #
19
18
  # @since 0.2.4
20
19
  module File
21
- # Content
22
- # @return [String]
23
- attr_accessor :content_type
24
-
25
20
  ##
26
- # Open the file, returning or yielding an IO stream and mime_type.
21
+ # Open the file, returning or yielding {RemoteDocument}.
22
+ #
27
23
  # Adds Accept header based on available reader content types to allow
28
24
  # for content negotiation based on available readers.
29
25
  #
30
26
  # When retrieving documents over HTTP(S), use the mechanism described in [Providing and Discovering URI Documentation](http://www.w3.org/2001/tag/awwsw/issue57/latest/) to pass the appropriate `base_uri` to the block or as the return.
31
27
  #
28
+ # Applications needing HTTP caching may consider
29
+ # [Rest Client](https://rubygems.org/gems/rest-client) and
30
+ # [REST Client Components](https://rubygems.org/gems/rest-client-components)
31
+ # allowing the use of `Rack::Cache` as a local file cache.
32
+ #
33
+ # @example using a local HTTP cache
34
+ # require 'restclient/components'
35
+ # require 'rack/cache'
36
+ # RestClient.enable Rack::Cache
37
+ # RDF::Util::File.open_file("http://example.org/some/resource")
38
+ # # => Cached resource if current, otherwise returned resource
39
+ #
32
40
  # @param [String] filename_or_url to open
33
41
  # @param [Hash{Symbol => Object}] options
34
42
  # options are ignored in this implementation. Applications are encouraged
@@ -37,8 +45,11 @@ module RDF; module Util
37
45
  # options are passed to `Kernel.open`.
38
46
  # @option options [Array, String] :headers
39
47
  # HTTP Request headers, passed to Kernel.open.
40
- # @return [IO, Reader] File stream with no block, and the block return otherwise
41
- # @yield [IO, StringIO] File stream
48
+ # @option options [Boolean] :verify_none (false)
49
+ # Don't verify SSL certificates
50
+ # @return [IO, RemoteDocument, Object] A {RemoteDocument} or `IO` for local files. If a block is given, the result of evaluating the block is returned.
51
+ # @yield [IO, RemoteDocument] A {RemoteDocument} or `IO` for local files
52
+ # @yieldreturn [Object] returned from open_file
42
53
  def self.open_file(filename_or_url, options = {}, &block)
43
54
  filename_or_url = $1 if filename_or_url.to_s.match(/^file:(.*)$/)
44
55
  if filename_or_url.to_s =~ /^https?/
@@ -50,82 +61,187 @@ module RDF; module Util
50
61
  end
51
62
  headers['Accept'] ||= (reader_types + %w(*/*;q=0.1)).join(", ")
52
63
 
53
- redirect_count = 0
54
- max_redirects = 5
55
64
  remote_document = nil
56
- parsed_url = ::URI.parse(filename_or_url.to_s)
57
- base_uri = parsed_url.to_s
58
- result = nil
59
- until remote_document do
60
- Net::HTTP::start(parsed_url.host, parsed_url.port,
61
- open_timeout: 60 * 1000,
62
- use_ssl: parsed_url.scheme == 'https',
63
- verify_mode: OpenSSL::SSL::VERIFY_NONE
64
- ) do |http|
65
- request = Net::HTTP::Get.new(parsed_url.request_uri, headers)
66
- http.request(request) do |response|
67
- case response
68
- when Net::HTTPSuccess
69
- # found object
70
-
71
- # If a Location is returned, it defines the base resource for this file, not it's actual ending location
72
-
73
- document_options = {
74
- :content_type => response.content_type,
75
- :charset => "utf-8",
76
- :base_uri => RDF::URI(response["Location"] ? response["Location"] : base_uri)
77
- }.merge(response.type_params)
78
- document_options[:last_modified] = DateTime.parse(response["Last-Modified"]) if response["Last-Modified"]
79
-
80
- remote_document = RemoteDocument.new(response.body, document_options)
81
-
82
- # Yield the result and close, or cause it to be returned
83
- result = if block_given?
84
- ret = yield remote_document
85
- remote_document.close
86
- ret
87
- else
88
- remote_document
89
- end
90
- when Net::HTTPRedirection
91
- # Follow redirection
92
- raise IOError, "Too many redirects" if (redirect_count += 1) > max_redirects
65
+ base_uri = filename_or_url.to_s
66
+ ssl_verify = options[:verify_none] ? OpenSSL::SSL::VERIFY_NONE : OpenSSL::SSL::VERIFY_PEER
67
+
68
+ if defined?(RestClient) && !options[:use_net_http]
69
+ # If RestClient is loaded, prefer it
70
+ client = RestClient::Resource.new(base_uri, verify_ssl: ssl_verify)
71
+ client.get(headers) do |response, request, res, &blk|
72
+ case response.code
73
+ when 200..299
74
+ # found object
75
+
76
+ # If a Location is returned, it defines the base resource for this file, not it's actual ending location
77
+ document_options = {
78
+ base_uri: RDF::URI(response.headers.fetch(:location, base_uri)),
79
+ charset: Encoding::UTF_8,
80
+ code: response.code.to_i,
81
+ headers: response.headers
82
+ }
93
83
 
94
- parsed_url = ::URI.parse(response["Location"])
84
+ remote_document = RemoteDocument.new(response.body, document_options)
85
+ when 300..399
86
+ # Document base is redirected location
87
+ base_uri = response.headers[:location].to_s
88
+ response.follow_redirection(request, res, &blk)
89
+ else
90
+ raise IOError, "<#{base_uri}>: #{response.code}"
91
+ end
92
+ end
93
+ else
94
+ # Otherwise, fallback to Net::HTTP
95
+ redirect_count = 0
96
+ max_redirects = 5
97
+ remote_document = nil
98
+ parsed_url = ::URI.parse(filename_or_url.to_s)
99
+ base_uri = parsed_url.to_s
100
+ until remote_document do
101
+ Net::HTTP::start(parsed_url.host, parsed_url.port,
102
+ open_timeout: 60 * 1000,
103
+ use_ssl: parsed_url.scheme == 'https',
104
+ verify_mode: ssl_verify
105
+ ) do |http|
106
+ request = Net::HTTP::Get.new(parsed_url.request_uri, headers)
107
+ http.request(request) do |response|
108
+ case response
109
+ when Net::HTTPSuccess
110
+ # found object
95
111
 
96
- # If response is not a status 303, update base_uri too
97
- base_uri = parsed_url.to_s unless response.code == "303"
98
- else
99
- raise IOError, "<#{parsed_url}>: #{response.msg}(#{response.code})"
112
+ # Normalize headers using symbols
113
+ response_headers = response.to_hash.inject({}) do |out, (key, value)|
114
+ out[key.gsub(/-/, '_').downcase.to_sym] = %w{ set-cookie }.include?(key.downcase) ? value : value.first
115
+ out
116
+ end
117
+
118
+ # If a Location is returned, it defines the base resource for this file, not it's actual ending location
119
+ document_options = {
120
+ base_uri: RDF::URI(response["Location"] ? response["Location"] : base_uri),
121
+ charset: Encoding::UTF_8,
122
+ code: response.code.to_i,
123
+ content_type: response.content_type,
124
+ headers: response_headers
125
+ }.merge(response.type_params)
126
+ document_options[:last_modified] = DateTime.parse(response["Last-Modified"]) if response["Last-Modified"]
127
+
128
+ remote_document = RemoteDocument.new(response.body, document_options)
129
+ when Net::HTTPRedirection
130
+ # Follow redirection
131
+ raise IOError, "Too many redirects" if (redirect_count += 1) > max_redirects
132
+
133
+ parsed_url = ::URI.parse(response["Location"])
134
+
135
+ base_uri = parsed_url.to_s
136
+ else
137
+ raise IOError, "<#{parsed_url}>: #{response.message}(#{response.code})"
138
+ end
100
139
  end
101
140
  end
102
141
  end
103
142
  end
104
- result
143
+
144
+ if block_given?
145
+ yield remote_document
146
+ else
147
+ remote_document
148
+ end
105
149
  else
106
150
  # Open as a file, passing any options
107
151
  Kernel.open(filename_or_url, "r", options, &block)
108
152
  end
109
153
  end
110
154
 
155
+ ##
156
+ # A RemoteDocument contains the body and headers of a remote resource.
157
+ #
158
+ # Link headers are parsed using the `LinkHeader` gem
159
+ # @see https://github.com/asplake/link_header
111
160
  class RemoteDocument < StringIO
161
+ # Base URI based on resource location or returned Location header.
162
+ # @return [String]
112
163
  attr_reader :base_uri
164
+
165
+ # Content-Type of the returned resource
166
+ # @return [String]
113
167
  attr_reader :content_type
168
+
169
+ # Encoding of resource (from header), also applied to content
170
+ # @return [Encoding}]
114
171
  attr_reader :charset
115
- attr_reader :content_encoding
172
+
173
+ # Response code
174
+ # @return [Integer]
175
+ attr_reader :code
176
+
177
+ ##
178
+ # ETag from headers
179
+ # @return [String]
180
+ attr_reader :etag
181
+
182
+ # Last-Modified time from headers
183
+ # @return [DateTime]
116
184
  attr_reader :last_modified
117
185
 
186
+ # Raw headers from response
187
+ # @return [Hash{String => Object}]
188
+ attr_reader :headers
189
+
190
+ # Originally requested URL
191
+ # @return [String]
192
+ attr_reader :requested_url
193
+
118
194
  ##
119
195
  # Set content
120
196
  def initialize(body, options = {})
121
197
  super(body)
122
198
  options.each do |key, value|
123
199
  # de-quote charset
124
- value = $1 if key == "charset" && value =~ /^["'](.*)["']$/
200
+ matchdata = value.match(/^["'](.*)["']$/.freeze) if key == "charset"
201
+ value = matchdata[1] if matchdata
125
202
  instance_variable_set(:"@#{key}", value)
126
203
  end
204
+ @headers ||= {}
205
+
206
+ # Find Content-Type
207
+ if !@content_type && headers[:content_type]
208
+ @content_type, *params = headers[:content_type].split(';').map(&:strip)
209
+
210
+ # Find charset
211
+ params.each do |param|
212
+ p, v = param.split('=')
213
+ next unless p.downcase == 'charset'
214
+ @charset = v.sub(/^["']?(.*)["']?$/, '\1')
215
+ end
216
+ end
217
+
218
+ @etag = headers[:etag]
219
+ @last_modified = DateTime.parse(headers[:last_modified]) if headers[:last_modified]
220
+
127
221
  set_encoding Encoding.find(@charset) if @charset
128
222
  end
223
+
224
+ ##
225
+ # Content encoding, based on {#charset} normalized to lower-case
226
+ # @return [String]
227
+ def content_encoding
228
+ charset.to_s.downcase
229
+ end
230
+
231
+ ##
232
+ # Return links from the Link header.
233
+ #
234
+ # Links can be returned in array form, or searched.
235
+ #
236
+ # @example
237
+ #
238
+ # d = RemoteDocument.new(...)
239
+ # describedby = links.find_link('rel' => 'describedby)
240
+ #
241
+ # @return [::LinkHeader]
242
+ def links
243
+ @links ||= LinkHeader.parse(@headers[:link])
244
+ end
129
245
  end
130
246
  end # File
131
247
  end; end # RDF::Util
data/lib/rdf/vocab.rb CHANGED
@@ -657,7 +657,7 @@ module RDF
657
657
  end
658
658
 
659
659
  # Implement accessor to symbol attributes
660
- def respond_to?(method)
660
+ def respond_to?(method, include_all = false)
661
661
  @attributes.has_key?(method) || super
662
662
  end
663
663
 
@@ -31,7 +31,9 @@ module RDF
31
31
  subClassOf: "schema:Action".freeze,
32
32
  type: "rdfs:Class".freeze
33
33
  term :Action,
34
- comment: %(An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.).freeze,
34
+ comment: %(An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.
35
+ <br/><br/>See also <a href="http://blog.schema.org/2014/04/announcing-schemaorg-actions.html">blog post</a>
36
+ and <a href="http://schema.org/docs/actions.html">Actions overview document.</a>).freeze,
35
37
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass).freeze,
36
38
  label: "Action".freeze,
37
39
  subClassOf: "schema:Thing".freeze,
@@ -41,6 +43,11 @@ module RDF
41
43
  label: "ActionStatusType".freeze,
42
44
  subClassOf: "schema:Enumeration".freeze,
43
45
  type: "rdfs:Class".freeze
46
+ term :ActivateAction,
47
+ comment: %(The act of starting or activating a device or application \(e.g. starting a timer or turning on a flashlight\).).freeze,
48
+ label: "ActivateAction".freeze,
49
+ subClassOf: "schema:ControlAction".freeze,
50
+ type: "rdfs:Class".freeze
44
51
  term :AddAction,
45
52
  comment: %(The act of editing by adding an object to a collection.).freeze,
46
53
  label: "AddAction".freeze,
@@ -163,7 +170,9 @@ module RDF
163
170
  subClassOf: "schema:Vessel".freeze,
164
171
  type: "rdfs:Class".freeze
165
172
  term :Article,
166
- comment: %(An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.).freeze,
173
+ comment: %(An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.
174
+
175
+ <br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>).freeze,
167
176
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
168
177
  label: "Article".freeze,
169
178
  subClassOf: "schema:CreativeWork".freeze,
@@ -325,6 +334,11 @@ module RDF
325
334
  label: "BookFormatType".freeze,
326
335
  subClassOf: "schema:Enumeration".freeze,
327
336
  type: "rdfs:Class".freeze
337
+ term :BookSeries,
338
+ comment: %(A series of books. Included books can be indicated with the hasPart property.).freeze,
339
+ label: "BookSeries".freeze,
340
+ subClassOf: "schema:Series".freeze,
341
+ type: "rdfs:Class".freeze
328
342
  term :BookStore,
329
343
  comment: %(A bookstore.).freeze,
330
344
  label: "BookStore".freeze,
@@ -362,6 +376,12 @@ module RDF
362
376
  label: "Brand".freeze,
363
377
  subClassOf: "schema:Intangible".freeze,
364
378
  type: "rdfs:Class".freeze
379
+ term :BreadcrumbList,
380
+ comment: %(
381
+ A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, ending with the current page.).freeze,
382
+ label: "BreadcrumbList".freeze,
383
+ subClassOf: "schema:ItemList".freeze,
384
+ type: "rdfs:Class".freeze
365
385
  term :Brewery,
366
386
  comment: %(Brewery.).freeze,
367
387
  label: "Brewery".freeze,
@@ -417,7 +437,7 @@ module RDF
417
437
  http://purl.org/goodrelations/v1#PublicInstitution
418
438
  http://purl.org/goodrelations/v1#Reseller
419
439
 
420
- ).freeze,
440
+ ).freeze,
421
441
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
422
442
  label: "BusinessEntityType".freeze,
423
443
  subClassOf: "schema:Enumeration".freeze,
@@ -440,7 +460,7 @@ module RDF
440
460
  http://purl.org/goodrelations/v1#Repair
441
461
  http://purl.org/goodrelations/v1#Sell
442
462
  http://purl.org/goodrelations/v1#Buy
443
- ).freeze,
463
+ ).freeze,
444
464
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
445
465
  label: "BusinessFunction".freeze,
446
466
  subClassOf: "schema:Enumeration".freeze,
@@ -635,6 +655,11 @@ module RDF
635
655
  label: "Continent".freeze,
636
656
  subClassOf: "schema:Landform".freeze,
637
657
  type: "rdfs:Class".freeze
658
+ term :ControlAction,
659
+ comment: %(An agent controls a device or application.).freeze,
660
+ label: "ControlAction".freeze,
661
+ subClassOf: "schema:Action".freeze,
662
+ type: "rdfs:Class".freeze
638
663
  term :ConvenienceStore,
639
664
  comment: %(A convenience store.).freeze,
640
665
  label: "ConvenienceStore".freeze,
@@ -683,7 +708,7 @@ module RDF
683
708
  http://purl.org/goodrelations/v1#JCB
684
709
  http://purl.org/goodrelations/v1#MasterCard
685
710
  http://purl.org/goodrelations/v1#VISA
686
- ).freeze,
711
+ ).freeze,
687
712
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
688
713
  label: "CreditCard".freeze,
689
714
  subClassOf: "schema:PaymentMethod".freeze,
@@ -744,6 +769,11 @@ module RDF
744
769
  label: "DateTime".freeze,
745
770
  subClassOf: "schema:DataType".freeze,
746
771
  type: "rdfs:Class".freeze
772
+ term :DatedMoneySpecification,
773
+ comment: %(A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time.).freeze,
774
+ label: "DatedMoneySpecification".freeze,
775
+ subClassOf: "schema:StructuredValue".freeze,
776
+ type: "rdfs:Class".freeze
747
777
  term :DayOfWeek,
748
778
  comment: %(The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.
749
779
 
@@ -757,7 +787,7 @@ module RDF
757
787
  http://purl.org/goodrelations/v1#Saturday
758
788
  http://purl.org/goodrelations/v1#Sunday
759
789
  http://purl.org/goodrelations/v1#PublicHolidays
760
- ).freeze,
790
+ ).freeze,
761
791
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
762
792
  label: "DayOfWeek".freeze,
763
793
  subClassOf: "schema:Enumeration".freeze,
@@ -767,6 +797,11 @@ module RDF
767
797
  label: "DaySpa".freeze,
768
798
  subClassOf: "schema:HealthAndBeautyBusiness".freeze,
769
799
  type: "rdfs:Class".freeze
800
+ term :DeactivateAction,
801
+ comment: %(The act of stopping or deactivating a device or application \(e.g. stopping a timer or turning off a flashlight\).).freeze,
802
+ label: "DeactivateAction".freeze,
803
+ subClassOf: "schema:ControlAction".freeze,
804
+ type: "rdfs:Class".freeze
770
805
  term :DefenceEstablishment,
771
806
  comment: %(A defence establishment, such as an army or navy base.).freeze,
772
807
  label: "DefenceEstablishment".freeze,
@@ -801,7 +836,7 @@ module RDF
801
836
  http://purl.org/goodrelations/v1#DHL
802
837
  http://purl.org/goodrelations/v1#FederalExpress
803
838
  http://purl.org/goodrelations/v1#UPS
804
- ).freeze,
839
+ ).freeze,
805
840
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
806
841
  label: "DeliveryMethod".freeze,
807
842
  subClassOf: "schema:Enumeration".freeze,
@@ -1000,6 +1035,11 @@ module RDF
1000
1035
  label: "EmergencyService".freeze,
1001
1036
  subClassOf: "schema:LocalBusiness".freeze,
1002
1037
  type: "rdfs:Class".freeze
1038
+ term :EmployeeRole,
1039
+ comment: %(A subclass of OrganizationRole used to describe employee relationships.).freeze,
1040
+ label: "EmployeeRole".freeze,
1041
+ subClassOf: "schema:OrganizationRole".freeze,
1042
+ type: "rdfs:Class".freeze
1003
1043
  term :EmploymentAgency,
1004
1044
  comment: %(An employment agency.).freeze,
1005
1045
  label: "EmploymentAgency".freeze,
@@ -1032,7 +1072,7 @@ module RDF
1032
1072
  subClassOf: "schema:Intangible".freeze,
1033
1073
  type: "rdfs:Class".freeze
1034
1074
  term :Episode,
1035
- comment: %(A TV or radio episode which can be part of a series or season.).freeze,
1075
+ comment: %(A media episode \(e.g. TV, radio, video game\) which can be part of a series or season.).freeze,
1036
1076
  label: "Episode".freeze,
1037
1077
  subClassOf: "schema:CreativeWork".freeze,
1038
1078
  type: "rdfs:Class".freeze
@@ -1152,6 +1192,26 @@ module RDF
1152
1192
  label: "FurnitureStore".freeze,
1153
1193
  subClassOf: "schema:Store".freeze,
1154
1194
  type: "rdfs:Class".freeze
1195
+ term :Game,
1196
+ comment: %(The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting. See also <a href="https://github.com/rvguha/schemaorg/issues/169">open issues list</a>.).freeze,
1197
+ label: "Game".freeze,
1198
+ subClassOf: "schema:CreativeWork".freeze,
1199
+ type: "rdfs:Class".freeze
1200
+ term :GamePlayMode,
1201
+ comment: %(Indicates whether this game is multi-player, co-op or single-player.).freeze,
1202
+ label: "GamePlayMode".freeze,
1203
+ subClassOf: "schema:Enumeration".freeze,
1204
+ type: "rdfs:Class".freeze
1205
+ term :GameServer,
1206
+ comment: %(Server that provides game interaction in a multiplayer game.).freeze,
1207
+ label: "GameServer".freeze,
1208
+ subClassOf: "schema:Intangible".freeze,
1209
+ type: "rdfs:Class".freeze
1210
+ term :GameServerStatus,
1211
+ comment: %(Status of a game server.).freeze,
1212
+ label: "GameServerStatus".freeze,
1213
+ subClassOf: "schema:Enumeration".freeze,
1214
+ type: "rdfs:Class".freeze
1155
1215
  term :GardenStore,
1156
1216
  comment: %(A garden store.).freeze,
1157
1217
  label: "GardenStore".freeze,
@@ -1391,7 +1451,12 @@ module RDF
1391
1451
  term :ItemList,
1392
1452
  comment: %(A list of items of any sort&#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.).freeze,
1393
1453
  label: "ItemList".freeze,
1394
- subClassOf: "schema:CreativeWork".freeze,
1454
+ subClassOf: "schema:Intangible".freeze,
1455
+ type: "rdfs:Class".freeze
1456
+ term :ItemListOrderType,
1457
+ comment: %(Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.).freeze,
1458
+ label: "ItemListOrderType".freeze,
1459
+ subClassOf: "schema:Enumeration".freeze,
1395
1460
  type: "rdfs:Class".freeze
1396
1461
  term :ItemPage,
1397
1462
  comment: %(A page devoted to a single item, such as a particular product or hotel.).freeze,
@@ -1481,6 +1546,11 @@ module RDF
1481
1546
  label: "LiquorStore".freeze,
1482
1547
  subClassOf: "schema:Store".freeze,
1483
1548
  type: "rdfs:Class".freeze
1549
+ term :ListItem,
1550
+ comment: %(An list item, e.g. a step in a checklist or how-to description.).freeze,
1551
+ label: "ListItem".freeze,
1552
+ subClassOf: "schema:Intangible".freeze,
1553
+ type: "rdfs:Class".freeze
1484
1554
  term :ListenAction,
1485
1555
  comment: %(The act of consuming audio content.).freeze,
1486
1556
  label: "ListenAction".freeze,
@@ -1856,6 +1926,11 @@ module RDF
1856
1926
  label: "MovieRentalStore".freeze,
1857
1927
  subClassOf: "schema:Store".freeze,
1858
1928
  type: "rdfs:Class".freeze
1929
+ term :MovieSeries,
1930
+ comment: %(A series of movies. Included movies can be indicated with the hasPart property.).freeze,
1931
+ label: "MovieSeries".freeze,
1932
+ subClassOf: "schema:Series".freeze,
1933
+ type: "rdfs:Class".freeze
1859
1934
  term :MovieTheater,
1860
1935
  comment: %(A movie theater.).freeze,
1861
1936
  label: "MovieTheater".freeze,
@@ -1886,6 +1961,24 @@ module RDF
1886
1961
  label: "MusicAlbum".freeze,
1887
1962
  subClassOf: "schema:MusicPlaylist".freeze,
1888
1963
  type: "rdfs:Class".freeze
1964
+ term :MusicAlbumProductionType,
1965
+ comment: %(Classification of the album by it's type of content: soundtrack, live album, studio album, etc.).freeze,
1966
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
1967
+ label: "MusicAlbumProductionType".freeze,
1968
+ subClassOf: "schema:Enumeration".freeze,
1969
+ type: "rdfs:Class".freeze
1970
+ term :MusicAlbumReleaseType,
1971
+ comment: %(The kind of release which this album is: single, EP or album.).freeze,
1972
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
1973
+ label: "MusicAlbumReleaseType".freeze,
1974
+ subClassOf: "schema:Enumeration".freeze,
1975
+ type: "rdfs:Class".freeze
1976
+ term :MusicComposition,
1977
+ comment: %(A musical composition.).freeze,
1978
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
1979
+ label: "MusicComposition".freeze,
1980
+ subClassOf: "schema:CreativeWork".freeze,
1981
+ type: "rdfs:Class".freeze
1889
1982
  term :MusicEvent,
1890
1983
  comment: %(Event type: Music event.).freeze,
1891
1984
  label: "MusicEvent".freeze,
@@ -1906,6 +1999,18 @@ module RDF
1906
1999
  label: "MusicRecording".freeze,
1907
2000
  subClassOf: "schema:CreativeWork".freeze,
1908
2001
  type: "rdfs:Class".freeze
2002
+ term :MusicRelease,
2003
+ comment: %(A MusicRelease is a specific release of a music album.).freeze,
2004
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
2005
+ label: "MusicRelease".freeze,
2006
+ subClassOf: "schema:MusicPlaylist".freeze,
2007
+ type: "rdfs:Class".freeze
2008
+ term :MusicReleaseFormatType,
2009
+ comment: %(Format of this release \(the type of recording media used, ie. compact disc, digital media, LP, etc.\).).freeze,
2010
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
2011
+ label: "MusicReleaseFormatType".freeze,
2012
+ subClassOf: "schema:Enumeration".freeze,
2013
+ type: "rdfs:Class".freeze
1909
2014
  term :MusicStore,
1910
2015
  comment: %(A music store.).freeze,
1911
2016
  label: "MusicStore".freeze,
@@ -2076,7 +2181,7 @@ module RDF
2076
2181
  http://purl.org/goodrelations/v1#DHL
2077
2182
  http://purl.org/goodrelations/v1#FederalExpress
2078
2183
  http://purl.org/goodrelations/v1#UPS
2079
- ).freeze,
2184
+ ).freeze,
2080
2185
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
2081
2186
  label: "ParcelService".freeze,
2082
2187
  subClassOf: "schema:DeliveryMethod".freeze,
@@ -2132,7 +2237,7 @@ module RDF
2132
2237
  http://purl.org/goodrelations/v1#GoogleCheckout
2133
2238
  http://purl.org/goodrelations/v1#PayPal
2134
2239
  http://purl.org/goodrelations/v1#PaySwarm
2135
- ).freeze,
2240
+ ).freeze,
2136
2241
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
2137
2242
  label: "PaymentMethod".freeze,
2138
2243
  subClassOf: "schema:Enumeration".freeze,
@@ -2163,11 +2268,14 @@ module RDF
2163
2268
  subClassOf: "schema:Organization".freeze,
2164
2269
  type: "rdfs:Class".freeze
2165
2270
  term :Periodical,
2166
- comment: %(A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.).freeze,
2271
+ comment: %(A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.
2272
+
2273
+ <br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>
2274
+ ).freeze,
2167
2275
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
2168
2276
  label: "Periodical".freeze,
2169
2277
  "owl:equivalentClass" => %(http://purl.org/ontology/bibo/Periodical).freeze,
2170
- subClassOf: "schema:CreativeWork".freeze,
2278
+ subClassOf: "schema:Series".freeze,
2171
2279
  type: "rdfs:Class".freeze
2172
2280
  term :Permit,
2173
2281
  comment: %(A permit issued by an organization, e.g. a parking pass.).freeze,
@@ -2365,14 +2473,20 @@ module RDF
2365
2473
  subClassOf: "schema:Event".freeze,
2366
2474
  type: "rdfs:Class".freeze
2367
2475
  term :PublicationIssue,
2368
- comment: %(A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.).freeze,
2476
+ comment: %(A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.
2477
+
2478
+ <br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>
2479
+ ).freeze,
2369
2480
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
2370
2481
  label: "PublicationIssue".freeze,
2371
2482
  "owl:equivalentClass" => %(http://purl.org/ontology/bibo/Issue).freeze,
2372
2483
  subClassOf: "schema:CreativeWork".freeze,
2373
2484
  type: "rdfs:Class".freeze
2374
2485
  term :PublicationVolume,
2375
- comment: %(A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.).freeze,
2486
+ comment: %(A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.
2487
+
2488
+ <br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>
2489
+ ).freeze,
2376
2490
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
2377
2491
  label: "PublicationVolume".freeze,
2378
2492
  subClassOf: "schema:CreativeWork".freeze,
@@ -2447,7 +2561,7 @@ module RDF
2447
2561
  subClassOf: "schema:LocalBusiness".freeze,
2448
2562
  type: "rdfs:Class".freeze
2449
2563
  term :Rating,
2450
- comment: %(The rating of the video.).freeze,
2564
+ comment: %(A rating is an evaluation on a numeric scale, such as 1 to 5 stars.).freeze,
2451
2565
  label: "Rating".freeze,
2452
2566
  subClassOf: "schema:Intangible".freeze,
2453
2567
  type: "rdfs:Class".freeze
@@ -2556,6 +2670,11 @@ module RDF
2556
2670
  label: "Restaurant".freeze,
2557
2671
  subClassOf: "schema:FoodEstablishment".freeze,
2558
2672
  type: "rdfs:Class".freeze
2673
+ term :ResumeAction,
2674
+ comment: %(The act of resuming a device or application which was formerly paused \(e.g. resume music playback or resume a timer\).).freeze,
2675
+ label: "ResumeAction".freeze,
2676
+ subClassOf: "schema:ControlAction".freeze,
2677
+ type: "rdfs:Class".freeze
2559
2678
  term :ReturnAction,
2560
2679
  comment: %(The act of returning to the origin that which was previously received \(concrete objects\) or taken \(ownership\).).freeze,
2561
2680
  label: "ReturnAction".freeze,
@@ -2578,6 +2697,8 @@ module RDF
2578
2697
  type: "rdfs:Class".freeze
2579
2698
  term :Role,
2580
2699
  comment: %(Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.
2700
+
2701
+ <br/><br/>See also <a href="http://blog.schema.org/2014/06/introducing-role.html">blog post</a>
2581
2702
  ).freeze,
2582
2703
  label: "Role".freeze,
2583
2704
  subClassOf: "schema:Intangible".freeze,
@@ -2592,6 +2713,11 @@ module RDF
2592
2713
  label: "RsvpAction".freeze,
2593
2714
  subClassOf: "schema:InformAction".freeze,
2594
2715
  type: "rdfs:Class".freeze
2716
+ term :RsvpResponseType,
2717
+ comment: %(RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.).freeze,
2718
+ label: "RsvpResponseType".freeze,
2719
+ subClassOf: "schema:Enumeration".freeze,
2720
+ type: "rdfs:Class".freeze
2595
2721
  term :SaleEvent,
2596
2722
  comment: %(Event type: Sales event.).freeze,
2597
2723
  label: "SaleEvent".freeze,
@@ -2633,7 +2759,7 @@ module RDF
2633
2759
  subClassOf: "schema:WebPage".freeze,
2634
2760
  type: "rdfs:Class".freeze
2635
2761
  term :Season,
2636
- comment: %(A TV or radio season.).freeze,
2762
+ comment: %(A media season e.g. tv, radio, video game etc.).freeze,
2637
2763
  label: "Season".freeze,
2638
2764
  subClassOf: "schema:CreativeWork".freeze,
2639
2765
  type: "rdfs:Class".freeze
@@ -2658,7 +2784,30 @@ module RDF
2658
2784
  subClassOf: "schema:TransferAction".freeze,
2659
2785
  type: "rdfs:Class".freeze
2660
2786
  term :Series,
2661
- comment: %(A TV or radio series.).freeze,
2787
+ comment: %(
2788
+ A Series in schema.org is a group of related items, typically but not necessarily of the same kind.
2789
+ Series are usually organized into some order, often chronological. Unlike <a href="/ItemList">ItemList</a> which
2790
+ is a general purpose data structure for lists of things, the emphasis with Series
2791
+ is on published materials \(written e.g. books and periodicals, or media such as
2792
+ tv, radio and games\).
2793
+
2794
+ <br/><br/>
2795
+
2796
+ Specific subtypes are available for describing <a href="/TVSeries">TVSeries</a>, <a href="/RadioSeries">RadioSeries</a>,
2797
+ <a href="/MovieSeries">MovieSeries</a>,
2798
+ <a href="/BookSeries">BookSeries</a>,
2799
+ <a href="/Periodical">Periodical</a>
2800
+ and <a href="/VideoGameSeries">VideoGameSeries</a>. In each case,
2801
+ the <a href="/hasPart">hasPart</a> / <a href="/isPartOf">isPartOf</a> properties
2802
+ can be used to relate the Series to its parts. The general Series type serves largely
2803
+ just to organize these more specific and practical subtypes.
2804
+
2805
+ <br/><br/>
2806
+
2807
+ It is common for properties applicable to an item from the series to be usefully applied to the containing group.
2808
+ Schema.org attempts to anticipate some of these cases, but publishers should be free to apply
2809
+ properties of the series parts to the series as a whole wherever they seem appropriate.
2810
+ ).freeze,
2662
2811
  label: "Series".freeze,
2663
2812
  subClassOf: "schema:CreativeWork".freeze,
2664
2813
  type: "rdfs:Class".freeze
@@ -2743,10 +2892,15 @@ module RDF
2743
2892
  label: "SportsEvent".freeze,
2744
2893
  subClassOf: "schema:Event".freeze,
2745
2894
  type: "rdfs:Class".freeze
2895
+ term :SportsOrganization,
2896
+ comment: %(Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.).freeze,
2897
+ label: "SportsOrganization".freeze,
2898
+ subClassOf: "schema:Organization".freeze,
2899
+ type: "rdfs:Class".freeze
2746
2900
  term :SportsTeam,
2747
2901
  comment: %(Organization: Sports team.).freeze,
2748
2902
  label: "SportsTeam".freeze,
2749
- subClassOf: "schema:Organization".freeze,
2903
+ subClassOf: "schema:SportsOrganization".freeze,
2750
2904
  type: "rdfs:Class".freeze
2751
2905
  term :StadiumOrArena,
2752
2906
  comment: %(A stadium.).freeze,
@@ -2784,6 +2938,11 @@ module RDF
2784
2938
  label: "SuperficialAnatomy".freeze,
2785
2939
  subClassOf: "schema:MedicalEntity".freeze,
2786
2940
  type: "rdfs:Class".freeze
2941
+ term :SuspendAction,
2942
+ comment: %(The act of momentarily pausing a device or application \(e.g. pause music playback or pause a timer\).).freeze,
2943
+ label: "SuspendAction".freeze,
2944
+ subClassOf: "schema:ControlAction".freeze,
2945
+ type: "rdfs:Class".freeze
2787
2946
  term :Synagogue,
2788
2947
  comment: %(A synagogue.).freeze,
2789
2948
  label: "Synagogue".freeze,
@@ -3075,6 +3234,16 @@ module RDF
3075
3234
  label: "VideoGallery".freeze,
3076
3235
  subClassOf: "schema:CollectionPage".freeze,
3077
3236
  type: "rdfs:Class".freeze
3237
+ term :VideoGame,
3238
+ comment: %(A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.).freeze,
3239
+ label: "VideoGame".freeze,
3240
+ subClassOf: ["schema:SoftwareApplication".freeze, "schema:Game".freeze],
3241
+ type: "rdfs:Class".freeze
3242
+ term :VideoGameSeries,
3243
+ comment: %(A <a href="/VideoGame">video game</a> series.).freeze,
3244
+ label: "VideoGameSeries".freeze,
3245
+ subClassOf: "schema:Series".freeze,
3246
+ type: "rdfs:Class".freeze
3078
3247
  term :VideoObject,
3079
3248
  comment: %(A video file.).freeze,
3080
3249
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
@@ -3144,7 +3313,7 @@ module RDF
3144
3313
  http://purl.org/goodrelations/v1#Labor-BringIn
3145
3314
  http://purl.org/goodrelations/v1#PartsAndLabor-BringIn
3146
3315
  http://purl.org/goodrelations/v1#PartsAndLabor-PickUp
3147
- ).freeze,
3316
+ ).freeze,
3148
3317
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
3149
3318
  label: "WarrantyScope".freeze,
3150
3319
  subClassOf: "schema:Enumeration".freeze,
@@ -3317,14 +3486,14 @@ module RDF
3317
3486
  rangeIncludes: "schema:Text".freeze,
3318
3487
  type: "rdf:Property".freeze
3319
3488
  property :actor,
3320
- comment: %(A cast member of the movie, tv/radio series, season, episode, or video.).freeze,
3321
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
3489
+ comment: %(An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.).freeze,
3490
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:Clip".freeze],
3322
3491
  label: "actor".freeze,
3323
3492
  rangeIncludes: "schema:Person".freeze,
3324
3493
  type: "rdf:Property".freeze
3325
3494
  property :actors,
3326
- comment: %(A cast member of the movie, tv/radio series, season, episode, or video. \(legacy spelling; see singular form, actor\)).freeze,
3327
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
3495
+ comment: %(An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.).freeze,
3496
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:Clip".freeze],
3328
3497
  label: "actors".freeze,
3329
3498
  rangeIncludes: "schema:Person".freeze,
3330
3499
  "schema:supersededBy" => %(schema:actor).freeze,
@@ -3341,11 +3510,18 @@ module RDF
3341
3510
  label: "additionalName".freeze,
3342
3511
  rangeIncludes: "schema:Text".freeze,
3343
3512
  type: "rdf:Property".freeze
3513
+ property :additionalNumberOfGuests,
3514
+ comment: %(If responding yes, the number of guests who will attend in addition to the invitee.).freeze,
3515
+ domainIncludes: "schema:RsvpAction".freeze,
3516
+ label: "additionalNumberOfGuests".freeze,
3517
+ rangeIncludes: "schema:Number".freeze,
3518
+ type: "rdf:Property".freeze
3344
3519
  property :additionalType,
3345
3520
  comment: %(An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.).freeze,
3346
3521
  domainIncludes: "schema:Thing".freeze,
3347
3522
  label: "additionalType".freeze,
3348
3523
  rangeIncludes: "schema:URL".freeze,
3524
+ subPropertyOf: "rdf:type".freeze,
3349
3525
  type: "rdf:Property".freeze
3350
3526
  property :additionalVariable,
3351
3527
  comment: %(Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.).freeze,
@@ -3431,8 +3607,29 @@ module RDF
3431
3607
  label: "album".freeze,
3432
3608
  rangeIncludes: "schema:MusicAlbum".freeze,
3433
3609
  type: "rdf:Property".freeze
3610
+ property :albumProductionType,
3611
+ comment: %(Classification of the album by it's type of content: soundtrack, live album, studio album, etc.).freeze,
3612
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
3613
+ domainIncludes: "schema:MusicAlbum".freeze,
3614
+ label: "albumProductionType".freeze,
3615
+ rangeIncludes: "schema:MusicAlbumProductionType".freeze,
3616
+ type: "rdf:Property".freeze
3617
+ property :albumRelease,
3618
+ comment: %(A release of this album.).freeze,
3619
+ domainIncludes: "schema:MusicAlbum".freeze,
3620
+ inverseOf: "schema:releaseOf".freeze,
3621
+ label: "albumRelease".freeze,
3622
+ rangeIncludes: "schema:MusicRelease".freeze,
3623
+ type: "rdf:Property".freeze
3624
+ property :albumReleaseType,
3625
+ comment: %(The kind of release which this album is: single, EP or album.).freeze,
3626
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
3627
+ domainIncludes: "schema:MusicAlbum".freeze,
3628
+ label: "albumReleaseType".freeze,
3629
+ rangeIncludes: "schema:MusicAlbumReleaseType".freeze,
3630
+ type: "rdf:Property".freeze
3434
3631
  property :albums,
3435
- comment: %(A collection of music albums \(legacy spelling; see singular form, album\).).freeze,
3632
+ comment: %(A collection of music albums.).freeze,
3436
3633
  domainIncludes: "schema:MusicGroup".freeze,
3437
3634
  label: "albums".freeze,
3438
3635
  rangeIncludes: "schema:MusicAlbum".freeze,
@@ -3458,7 +3655,7 @@ module RDF
3458
3655
  type: "rdf:Property".freeze
3459
3656
  property :alternateName,
3460
3657
  comment: %(An alias for the item.).freeze,
3461
- domainIncludes: ["schema:Thing".freeze, "schema:MedicalEntity".freeze],
3658
+ domainIncludes: "schema:Thing".freeze,
3462
3659
  label: "alternateName".freeze,
3463
3660
  rangeIncludes: "schema:Text".freeze,
3464
3661
  type: "rdf:Property".freeze
@@ -3482,6 +3679,12 @@ module RDF
3482
3679
  label: "alumniOf".freeze,
3483
3680
  rangeIncludes: "schema:EducationalOrganization".freeze,
3484
3681
  type: "rdf:Property".freeze
3682
+ property :amount,
3683
+ comment: %(The amount of money.).freeze,
3684
+ domainIncludes: "schema:DatedMoneySpecification".freeze,
3685
+ label: "amount".freeze,
3686
+ rangeIncludes: "schema:Number".freeze,
3687
+ type: "rdf:Property".freeze
3485
3688
  property :amountOfThisGood,
3486
3689
  comment: %(The quantity of the goods included in the offer.).freeze,
3487
3690
  domainIncludes: "schema:TypeAndQuantityNode".freeze,
@@ -3656,6 +3859,12 @@ module RDF
3656
3859
  label: "associatedPathophysiology".freeze,
3657
3860
  rangeIncludes: "schema:Text".freeze,
3658
3861
  type: "rdf:Property".freeze
3862
+ property :athlete,
3863
+ comment: %(A person that acts as performing member of a sports team; a player as opposed to a coach).freeze,
3864
+ domainIncludes: "schema:SportsTeam".freeze,
3865
+ label: "athlete".freeze,
3866
+ rangeIncludes: "schema:Person".freeze,
3867
+ type: "rdf:Property".freeze
3659
3868
  property :attendee,
3660
3869
  comment: %(A person or organization attending the event.).freeze,
3661
3870
  domainIncludes: "schema:Event".freeze,
@@ -3663,11 +3872,11 @@ module RDF
3663
3872
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
3664
3873
  type: "rdf:Property".freeze
3665
3874
  property :attendees,
3666
- comment: %(A person attending the event \(legacy spelling; see singular form, attendee\).).freeze,
3875
+ comment: %(A person attending the event.).freeze,
3667
3876
  domainIncludes: "schema:Event".freeze,
3668
3877
  label: "attendees".freeze,
3669
3878
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
3670
- "schema:supersededBy" => %(schema:attendees).freeze,
3879
+ "schema:supersededBy" => %(schema:attendee).freeze,
3671
3880
  type: "rdf:Property".freeze
3672
3881
  property :audience,
3673
3882
  comment: %(The intended audience of the item, i.e. the group for whom the item was created.).freeze,
@@ -3781,12 +3990,19 @@ module RDF
3781
3990
  rangeIncludes: "schema:Text".freeze,
3782
3991
  type: "rdf:Property".freeze
3783
3992
  property :awards,
3784
- comment: %(Awards won by this person or for this creative work. \(legacy spelling; see singular form, award\)).freeze,
3993
+ comment: %(Awards won by this person or for this creative work.).freeze,
3785
3994
  domainIncludes: ["schema:CreativeWork".freeze, "schema:Person".freeze],
3786
3995
  label: "awards".freeze,
3787
3996
  rangeIncludes: "schema:Text".freeze,
3788
3997
  "schema:supersededBy" => %(schema:award).freeze,
3789
3998
  type: "rdf:Property".freeze
3999
+ property :awayTeam,
4000
+ comment: %(The away team in a sports event.).freeze,
4001
+ domainIncludes: "schema:SportsEvent".freeze,
4002
+ label: "awayTeam".freeze,
4003
+ rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze],
4004
+ subPropertyOf: "schema:competitor".freeze,
4005
+ type: "rdf:Property".freeze
3790
4006
  property :background,
3791
4007
  comment: %(Descriptive information establishing a historical perspective on the supplement. May include the rationale for the name, the population where the supplement first came to prominence, etc.).freeze,
3792
4008
  domainIncludes: "schema:DietarySupplement".freeze,
@@ -3794,10 +4010,10 @@ module RDF
3794
4010
  rangeIncludes: "schema:Text".freeze,
3795
4011
  type: "rdf:Property".freeze
3796
4012
  property :baseSalary,
3797
- comment: %(The base salary of the job.).freeze,
3798
- domainIncludes: "schema:JobPosting".freeze,
4013
+ comment: %(The base salary of the job or of an employee in an EmployeeRole.).freeze,
4014
+ domainIncludes: ["schema:JobPosting".freeze, "schema:EmployeeRole".freeze],
3799
4015
  label: "baseSalary".freeze,
3800
- rangeIncludes: "schema:Number".freeze,
4016
+ rangeIncludes: ["schema:Number".freeze, "schema:PriceSpecification".freeze],
3801
4017
  type: "rdf:Property".freeze
3802
4018
  property :benefits,
3803
4019
  comment: %(Description of benefits associated with the job.).freeze,
@@ -3835,6 +4051,12 @@ module RDF
3835
4051
  label: "birthDate".freeze,
3836
4052
  rangeIncludes: "schema:Date".freeze,
3837
4053
  type: "rdf:Property".freeze
4054
+ property :birthPlace,
4055
+ comment: %(The place where the person was born.).freeze,
4056
+ domainIncludes: "schema:Person".freeze,
4057
+ label: "birthPlace".freeze,
4058
+ rangeIncludes: "schema:Place".freeze,
4059
+ type: "rdf:Property".freeze
3838
4060
  property :bitrate,
3839
4061
  comment: %(The bitrate of the media object.).freeze,
3840
4062
  domainIncludes: "schema:MediaObject".freeze,
@@ -3848,7 +4070,7 @@ module RDF
3848
4070
  rangeIncludes: "schema:BlogPosting".freeze,
3849
4071
  type: "rdf:Property".freeze
3850
4072
  property :blogPosts,
3851
- comment: %(The postings that are part of this blog \(legacy spelling; see singular form, blogPost\).).freeze,
4073
+ comment: %(The postings that are part of this blog.).freeze,
3852
4074
  domainIncludes: "schema:Blog".freeze,
3853
4075
  label: "blogPosts".freeze,
3854
4076
  rangeIncludes: "schema:BlogPosting".freeze,
@@ -3914,7 +4136,7 @@ module RDF
3914
4136
  comment: %(The branches that delineate from the nerve bundle.).freeze,
3915
4137
  domainIncludes: "schema:Nerve".freeze,
3916
4138
  label: "branch".freeze,
3917
- rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:Nerve".freeze],
4139
+ rangeIncludes: "schema:AnatomicalStructure".freeze,
3918
4140
  type: "rdf:Property".freeze
3919
4141
  property :branchOf,
3920
4142
  comment: %(The larger organization that this local business is a branch of, if any.).freeze,
@@ -3932,7 +4154,7 @@ module RDF
3932
4154
  comment: %(A set of links that can help a user understand and navigate a website hierarchy.).freeze,
3933
4155
  domainIncludes: "schema:WebPage".freeze,
3934
4156
  label: "breadcrumb".freeze,
3935
- rangeIncludes: "schema:Text".freeze,
4157
+ rangeIncludes: ["schema:Text".freeze, "schema:BreadcrumbList".freeze],
3936
4158
  type: "rdf:Property".freeze
3937
4159
  property :breastfeedingWarning,
3938
4160
  comment: %(Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.).freeze,
@@ -4033,6 +4255,13 @@ module RDF
4033
4255
  label: "catalog".freeze,
4034
4256
  rangeIncludes: "schema:DataCatalog".freeze,
4035
4257
  type: "rdf:Property".freeze
4258
+ property :catalogNumber,
4259
+ comment: %(The catalog number for the release.).freeze,
4260
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
4261
+ domainIncludes: "schema:MusicRelease".freeze,
4262
+ label: "catalogNumber".freeze,
4263
+ rangeIncludes: "schema:Text".freeze,
4264
+ type: "rdf:Property".freeze
4036
4265
  property :category,
4037
4266
  comment: %(A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.).freeze,
4038
4267
  domainIncludes: ["schema:Offer".freeze, "schema:PhysicalActivity".freeze],
@@ -4051,12 +4280,30 @@ module RDF
4051
4280
  label: "causeOf".freeze,
4052
4281
  rangeIncludes: "schema:MedicalEntity".freeze,
4053
4282
  type: "rdf:Property".freeze
4283
+ property :character,
4284
+ comment: %(Fictional person connected with a creative work.).freeze,
4285
+ domainIncludes: "schema:CreativeWork".freeze,
4286
+ label: "character".freeze,
4287
+ rangeIncludes: "schema:Person".freeze,
4288
+ type: "rdf:Property".freeze
4289
+ property :characterAttribute,
4290
+ comment: %(A piece of data that represents a particular aspect of a fictional character \(skill, power, character points, advantage, disadvantage\).).freeze,
4291
+ domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze],
4292
+ label: "characterAttribute".freeze,
4293
+ rangeIncludes: "schema:Thing".freeze,
4294
+ type: "rdf:Property".freeze
4054
4295
  property :characterName,
4055
4296
  comment: %(The name of a character played in some acting or performing role, i.e. in a PerformanceRole.).freeze,
4056
4297
  domainIncludes: "schema:PerformanceRole".freeze,
4057
4298
  label: "characterName".freeze,
4058
4299
  rangeIncludes: "schema:Text".freeze,
4059
4300
  type: "rdf:Property".freeze
4301
+ property :cheatCode,
4302
+ comment: %(Cheat codes to the game.).freeze,
4303
+ domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze],
4304
+ label: "cheatCode".freeze,
4305
+ rangeIncludes: "schema:CreativeWork".freeze,
4306
+ type: "rdf:Property".freeze
4060
4307
  property :checkinTime,
4061
4308
  comment: %(The earliest someone may check into a lodging establishment.).freeze,
4062
4309
  domainIncludes: "schema:LodgingReservation".freeze,
@@ -4124,6 +4371,12 @@ module RDF
4124
4371
  label: "closes".freeze,
4125
4372
  rangeIncludes: "schema:Time".freeze,
4126
4373
  type: "rdf:Property".freeze
4374
+ property :coach,
4375
+ comment: %(A person that acts in a coaching role for a sports team.).freeze,
4376
+ domainIncludes: "schema:SportsTeam".freeze,
4377
+ label: "coach".freeze,
4378
+ rangeIncludes: "schema:Person".freeze,
4379
+ type: "rdf:Property".freeze
4127
4380
  property :code,
4128
4381
  comment: %(A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.).freeze,
4129
4382
  domainIncludes: "schema:MedicalEntity".freeze,
@@ -4155,7 +4408,7 @@ module RDF
4155
4408
  rangeIncludes: "schema:Person".freeze,
4156
4409
  type: "rdf:Property".freeze
4157
4410
  property :colleagues,
4158
- comment: %(A colleague of the person \(legacy spelling; see singular form, colleague\).).freeze,
4411
+ comment: %(A colleague of the person.).freeze,
4159
4412
  domainIncludes: "schema:Person".freeze,
4160
4413
  label: "colleagues".freeze,
4161
4414
  rangeIncludes: "schema:Person".freeze,
@@ -4198,6 +4451,19 @@ module RDF
4198
4451
  label: "commentTime".freeze,
4199
4452
  rangeIncludes: "schema:Date".freeze,
4200
4453
  type: "rdf:Property".freeze
4454
+ property :competitor,
4455
+ comment: %(A competitor in a sports event.).freeze,
4456
+ domainIncludes: "schema:SportsEvent".freeze,
4457
+ label: "competitor".freeze,
4458
+ rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze],
4459
+ type: "rdf:Property".freeze
4460
+ property :composer,
4461
+ comment: %(The person or organization who wrote the composition.).freeze,
4462
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
4463
+ domainIncludes: "schema:MusicComposition".freeze,
4464
+ label: "composer".freeze,
4465
+ rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
4466
+ type: "rdf:Property".freeze
4201
4467
  property :comprisedOf,
4202
4468
  comment: %(The underlying anatomical structures, such as organs, that comprise the anatomical system.).freeze,
4203
4469
  domainIncludes: "schema:AnatomicalSystem".freeze,
@@ -4229,7 +4495,7 @@ module RDF
4229
4495
  rangeIncludes: "schema:ContactPoint".freeze,
4230
4496
  type: "rdf:Property".freeze
4231
4497
  property :contactPoints,
4232
- comment: %(A contact point for a person or organization \(legacy spelling; see singular form, contactPoint\).).freeze,
4498
+ comment: %(A contact point for a person or organization.).freeze,
4233
4499
  domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
4234
4500
  label: "contactPoints".freeze,
4235
4501
  rangeIncludes: "schema:ContactPoint".freeze,
@@ -4368,12 +4634,25 @@ module RDF
4368
4634
  label: "creator".freeze,
4369
4635
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
4370
4636
  type: "rdf:Property".freeze
4637
+ property :creditedTo,
4638
+ comment: %(The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to "Stefani Germanotta Band", but by Lady Gaga.).freeze,
4639
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
4640
+ domainIncludes: "schema:MusicRelease".freeze,
4641
+ label: "creditedTo".freeze,
4642
+ rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
4643
+ type: "rdf:Property".freeze
4371
4644
  property :currenciesAccepted,
4372
4645
  comment: %(The currency accepted \(in <a href='http://en.wikipedia.org/wiki/ISO_4217'>ISO 4217 currency format</a>\).).freeze,
4373
4646
  domainIncludes: "schema:LocalBusiness".freeze,
4374
4647
  label: "currenciesAccepted".freeze,
4375
4648
  rangeIncludes: "schema:Text".freeze,
4376
4649
  type: "rdf:Property".freeze
4650
+ property :currency,
4651
+ comment: %(The currency in which the monetary amount is expressed \(in 3-letter <a href='http://en.wikipedia.org/wiki/ISO_4217'">ISO 4217</a> format\).).freeze,
4652
+ domainIncludes: "schema:DatedMoneySpecification".freeze,
4653
+ label: "currency".freeze,
4654
+ rangeIncludes: "schema:Text".freeze,
4655
+ type: "rdf:Property".freeze
4377
4656
  property :customer,
4378
4657
  comment: %(Party placing the order.).freeze,
4379
4658
  domainIncludes: "schema:Order".freeze,
@@ -4434,6 +4713,12 @@ module RDF
4434
4713
  label: "deathDate".freeze,
4435
4714
  rangeIncludes: "schema:Date".freeze,
4436
4715
  type: "rdf:Property".freeze
4716
+ property :deathPlace,
4717
+ comment: %(The place where the person died.).freeze,
4718
+ domainIncludes: "schema:Person".freeze,
4719
+ label: "deathPlace".freeze,
4720
+ rangeIncludes: "schema:Place".freeze,
4721
+ type: "rdf:Property".freeze
4437
4722
  property :defaultValue,
4438
4723
  comment: %(The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.).freeze,
4439
4724
  domainIncludes: "schema:PropertyValueSpecification".freeze,
@@ -4570,14 +4855,14 @@ module RDF
4570
4855
  rangeIncludes: "schema:DDxElement".freeze,
4571
4856
  type: "rdf:Property".freeze
4572
4857
  property :director,
4573
- comment: %(The director of the movie, tv/radio episode or series.).freeze,
4574
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
4858
+ comment: %(A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.).freeze,
4859
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:Clip".freeze],
4575
4860
  label: "director".freeze,
4576
4861
  rangeIncludes: "schema:Person".freeze,
4577
4862
  type: "rdf:Property".freeze
4578
4863
  property :directors,
4579
- comment: %(The director of the movie, tv/radio episode or series. \(legacy spelling; see singular form, director\)).freeze,
4580
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
4864
+ comment: %(A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.).freeze,
4865
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:Clip".freeze],
4581
4866
  label: "directors".freeze,
4582
4867
  rangeIncludes: "schema:Person".freeze,
4583
4868
  "schema:supersededBy" => %(schema:director).freeze,
@@ -4734,7 +5019,7 @@ module RDF
4734
5019
  type: "rdf:Property".freeze
4735
5020
  property :duration,
4736
5021
  comment: %(The duration of the item \(movie, audio recording, event, etc.\) in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.).freeze,
4737
- domainIncludes: ["schema:MediaObject".freeze, "schema:Event".freeze, "schema:Movie".freeze, "schema:MusicRecording".freeze],
5022
+ domainIncludes: ["schema:MediaObject".freeze, "schema:Event".freeze, "schema:Movie".freeze, "schema:MusicRecording".freeze, "schema:MusicRelease".freeze],
4738
5023
  label: "duration".freeze,
4739
5024
  rangeIncludes: "schema:Duration".freeze,
4740
5025
  type: "rdf:Property".freeze
@@ -4835,7 +5120,7 @@ module RDF
4835
5120
  rangeIncludes: "schema:Person".freeze,
4836
5121
  type: "rdf:Property".freeze
4837
5122
  property :employees,
4838
- comment: %(People working for this organization. \(legacy spelling; see singular form, employee\)).freeze,
5123
+ comment: %(People working for this organization.).freeze,
4839
5124
  domainIncludes: "schema:Organization".freeze,
4840
5125
  label: "employees".freeze,
4841
5126
  rangeIncludes: "schema:Person".freeze,
@@ -4872,15 +5157,15 @@ module RDF
4872
5157
  rangeIncludes: "schema:Text".freeze,
4873
5158
  type: "rdf:Property".freeze
4874
5159
  property :encodings,
4875
- comment: %(A media object that encodes this CreativeWork \(legacy spelling; see singular form, encoding\).).freeze,
5160
+ comment: %(A media object that encodes this CreativeWork.).freeze,
4876
5161
  domainIncludes: "schema:CreativeWork".freeze,
4877
5162
  label: "encodings".freeze,
4878
5163
  rangeIncludes: "schema:MediaObject".freeze,
4879
5164
  "schema:supersededBy" => %(schema:encoding).freeze,
4880
5165
  type: "rdf:Property".freeze
4881
5166
  property :endDate,
4882
- comment: %(The end date and time of the role, event or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
4883
- domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze],
5167
+ comment: %(The end date and time of the item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
5168
+ domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:DatedMoneySpecification".freeze],
4884
5169
  label: "endDate".freeze,
4885
5170
  rangeIncludes: "schema:Date".freeze,
4886
5171
  type: "rdf:Property".freeze
@@ -4920,10 +5205,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
4920
5205
  rangeIncludes: "schema:Text".freeze,
4921
5206
  type: "rdf:Property".freeze
4922
5207
  property :episode,
4923
- comment: %(An episode of a TV/radio series or season).freeze,
4924
- domainIncludes: ["schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioSeason".freeze, "schema:RadioSeries".freeze],
5208
+ comment: %(An episode of a tv, radio or game media within a series or season.).freeze,
5209
+ domainIncludes: ["schema:Season".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
4925
5210
  label: "episode".freeze,
4926
5211
  rangeIncludes: "schema:Episode".freeze,
5212
+ subPropertyOf: "schema:hasPart".freeze,
4927
5213
  type: "rdf:Property".freeze
4928
5214
  property :episodeNumber,
4929
5215
  comment: %(Position of the episode within an ordered group of episodes.).freeze,
@@ -4933,8 +5219,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
4933
5219
  subPropertyOf: "schema:position".freeze,
4934
5220
  type: "rdf:Property".freeze
4935
5221
  property :episodes,
4936
- comment: %(An episode of a TV/radio series or season \(legacy spelling; see singular form, episode\)).freeze,
4937
- domainIncludes: ["schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioSeason".freeze, "schema:RadioSeries".freeze],
5222
+ comment: %(An episode of a TV/radio series or season.).freeze,
5223
+ domainIncludes: ["schema:Season".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
4938
5224
  label: "episodes".freeze,
4939
5225
  rangeIncludes: "schema:Episode".freeze,
4940
5226
  "schema:supersededBy" => %(schema:episode).freeze,
@@ -4945,6 +5231,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
4945
5231
  label: "equal".freeze,
4946
5232
  rangeIncludes: "schema:QualitativeValue".freeze,
4947
5233
  type: "rdf:Property".freeze
5234
+ property :error,
5235
+ comment: %(For failed actions, more information on the cause of the failure.).freeze,
5236
+ domainIncludes: "schema:Action".freeze,
5237
+ label: "error".freeze,
5238
+ rangeIncludes: "schema:Thing".freeze,
5239
+ type: "rdf:Property".freeze
4948
5240
  property :estimatedFlightDuration,
4949
5241
  comment: %(The estimated time the flight will take.).freeze,
4950
5242
  domainIncludes: "schema:Flight".freeze,
@@ -4958,7 +5250,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
4958
5250
  rangeIncludes: "schema:MedicalEntity".freeze,
4959
5251
  type: "rdf:Property".freeze
4960
5252
  property :event,
4961
- comment: %(Upcoming or past event associated with this place or organization.).freeze,
5253
+ comment: %(Upcoming or past event associated with this place, organization, or action.).freeze,
4962
5254
  domainIncludes: ["schema:Organization".freeze, "schema:Place".freeze, "schema:InformAction".freeze, "schema:PlayAction".freeze, "schema:InviteAction".freeze, "schema:JoinAction".freeze, "schema:LeaveAction".freeze],
4963
5255
  label: "event".freeze,
4964
5256
  rangeIncludes: "schema:Event".freeze,
@@ -4970,7 +5262,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
4970
5262
  rangeIncludes: "schema:EventStatusType".freeze,
4971
5263
  type: "rdf:Property".freeze
4972
5264
  property :events,
4973
- comment: %(Upcoming or past events associated with this place or organization \(legacy spelling; see singular form, event\).).freeze,
5265
+ comment: %(Upcoming or past events associated with this place or organization.).freeze,
4974
5266
  domainIncludes: ["schema:Organization".freeze, "schema:Place".freeze],
4975
5267
  label: "events".freeze,
4976
5268
  rangeIncludes: "schema:Event".freeze,
@@ -5033,6 +5325,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5033
5325
  label: "expectedPrognosis".freeze,
5034
5326
  rangeIncludes: "schema:Text".freeze,
5035
5327
  type: "rdf:Property".freeze
5328
+ property :expectsAcceptanceOf,
5329
+ comment: %(An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.).freeze,
5330
+ domainIncludes: "schema:ConsumeAction".freeze,
5331
+ label: "expectsAcceptanceOf".freeze,
5332
+ rangeIncludes: "schema:Offer".freeze,
5333
+ type: "rdf:Property".freeze
5036
5334
  property :experienceRequirements,
5037
5335
  comment: %(Description of skills and experience needed for the position.).freeze,
5038
5336
  domainIncludes: "schema:JobPosting".freeze,
@@ -5052,7 +5350,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5052
5350
  rangeIncludes: "schema:Date".freeze,
5053
5351
  type: "rdf:Property".freeze
5054
5352
  property :familyName,
5055
- comment: %(Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the Name property.).freeze,
5353
+ comment: %(Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the name property.).freeze,
5056
5354
  domainIncludes: "schema:Person".freeze,
5057
5355
  label: "familyName".freeze,
5058
5356
  rangeIncludes: "schema:Text".freeze,
@@ -5093,6 +5391,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5093
5391
  label: "fileSize".freeze,
5094
5392
  rangeIncludes: "schema:Integer".freeze,
5095
5393
  type: "rdf:Property".freeze
5394
+ property :firstPerformance,
5395
+ comment: %(The date and place the work was first performed.).freeze,
5396
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
5397
+ domainIncludes: "schema:MusicComposition".freeze,
5398
+ label: "firstPerformance".freeze,
5399
+ rangeIncludes: "schema:Event".freeze,
5400
+ type: "rdf:Property".freeze
5096
5401
  property :flightDistance,
5097
5402
  comment: %(The distance of the flight.).freeze,
5098
5403
  domainIncludes: "schema:Flight".freeze,
@@ -5151,7 +5456,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5151
5456
  rangeIncludes: "schema:Person".freeze,
5152
5457
  type: "rdf:Property".freeze
5153
5458
  property :founders,
5154
- comment: %(A person who founded this organization \(legacy spelling; see singular form, founder\).).freeze,
5459
+ comment: %(A person who founded this organization.).freeze,
5155
5460
  domainIncludes: "schema:Organization".freeze,
5156
5461
  label: "founders".freeze,
5157
5462
  rangeIncludes: "schema:Person".freeze,
@@ -5163,6 +5468,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5163
5468
  label: "foundingDate".freeze,
5164
5469
  rangeIncludes: "schema:Date".freeze,
5165
5470
  type: "rdf:Property".freeze
5471
+ property :foundingLocation,
5472
+ comment: %(The place where the Organization was founded.).freeze,
5473
+ domainIncludes: "schema:Organization".freeze,
5474
+ label: "foundingLocation".freeze,
5475
+ rangeIncludes: "schema:Place".freeze,
5476
+ type: "rdf:Property".freeze
5166
5477
  property :free,
5167
5478
  comment: %(A flag to signal that the publication is accessible for free.).freeze,
5168
5479
  domainIncludes: "schema:PublicationEvent".freeze,
@@ -5194,6 +5505,44 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5194
5505
  label: "functionalClass".freeze,
5195
5506
  rangeIncludes: "schema:Text".freeze,
5196
5507
  type: "rdf:Property".freeze
5508
+ property :game,
5509
+ comment: %(Video game which is played on this server.).freeze,
5510
+ domainIncludes: "schema:GameServer".freeze,
5511
+ inverseOf: "schema:gameServer".freeze,
5512
+ label: "game".freeze,
5513
+ rangeIncludes: "schema:VideoGame".freeze,
5514
+ type: "rdf:Property".freeze
5515
+ property :gameItem,
5516
+ comment: %(An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.).freeze,
5517
+ domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze],
5518
+ label: "gameItem".freeze,
5519
+ rangeIncludes: "schema:Thing".freeze,
5520
+ type: "rdf:Property".freeze
5521
+ property :gameLocation,
5522
+ comment: %(Real or fictional location of the game \(or part of game\).).freeze,
5523
+ domainIncludes: "schema:Game".freeze,
5524
+ label: "gameLocation".freeze,
5525
+ rangeIncludes: ["schema:URL".freeze, "schema:Place".freeze, "schema:PostalAddress".freeze],
5526
+ type: "rdf:Property".freeze
5527
+ property :gamePlatform,
5528
+ comment: %(The electronic systems used to play <a href="http://en.wikipedia.org/wiki/Category:Video_game_platforms">video games</a>.).freeze,
5529
+ domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze],
5530
+ label: "gamePlatform".freeze,
5531
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze, "schema:Thing".freeze],
5532
+ type: "rdf:Property".freeze
5533
+ property :gameServer,
5534
+ comment: %(The server on which it is possible to play the game.).freeze,
5535
+ domainIncludes: "schema:VideoGame".freeze,
5536
+ inverseOf: "schema:game".freeze,
5537
+ label: "gameServer".freeze,
5538
+ rangeIncludes: "schema:GameServer".freeze,
5539
+ type: "rdf:Property".freeze
5540
+ property :gameTip,
5541
+ comment: %(Links to tips, tactics, etc.).freeze,
5542
+ domainIncludes: "schema:VideoGame".freeze,
5543
+ label: "gameTip".freeze,
5544
+ rangeIncludes: "schema:CreativeWork".freeze,
5545
+ type: "rdf:Property".freeze
5197
5546
  property :gender,
5198
5547
  comment: %(Gender of the person.).freeze,
5199
5548
  domainIncludes: "schema:Person".freeze,
@@ -5201,8 +5550,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5201
5550
  rangeIncludes: "schema:Text".freeze,
5202
5551
  type: "rdf:Property".freeze
5203
5552
  property :genre,
5204
- comment: %(Genre of the creative work).freeze,
5205
- domainIncludes: "schema:CreativeWork".freeze,
5553
+ comment: %(Genre of the creative work or group.).freeze,
5554
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:MusicGroup".freeze],
5206
5555
  label: "genre".freeze,
5207
5556
  rangeIncludes: "schema:Text".freeze,
5208
5557
  type: "rdf:Property".freeze
@@ -5219,7 +5568,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5219
5568
  rangeIncludes: "schema:AdministrativeArea".freeze,
5220
5569
  type: "rdf:Property".freeze
5221
5570
  property :givenName,
5222
- comment: %(Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the Name property.).freeze,
5571
+ comment: %(Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.).freeze,
5223
5572
  domainIncludes: "schema:Person".freeze,
5224
5573
  label: "givenName".freeze,
5225
5574
  rangeIncludes: "schema:Text".freeze,
@@ -5317,8 +5666,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5317
5666
  rangeIncludes: "schema:MedicalCondition".freeze,
5318
5667
  type: "rdf:Property".freeze
5319
5668
  property :height,
5320
- comment: %(The height of the item.).freeze,
5321
- domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze],
5669
+ comment: %(The height of the item or person.).freeze,
5670
+ domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze, "schema:Person".freeze],
5322
5671
  label: "height".freeze,
5323
5672
  rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze],
5324
5673
  type: "rdf:Property".freeze
@@ -5340,6 +5689,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5340
5689
  label: "homeLocation".freeze,
5341
5690
  rangeIncludes: ["schema:ContactPoint".freeze, "schema:Place".freeze],
5342
5691
  type: "rdf:Property".freeze
5692
+ property :homeTeam,
5693
+ comment: %(The home team in a sports event.).freeze,
5694
+ domainIncludes: "schema:SportsEvent".freeze,
5695
+ label: "homeTeam".freeze,
5696
+ rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze],
5697
+ subPropertyOf: "schema:competitor".freeze,
5698
+ type: "rdf:Property".freeze
5343
5699
  property :honorificPrefix,
5344
5700
  comment: %(An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.).freeze,
5345
5701
  domainIncludes: "schema:Person".freeze,
@@ -5448,6 +5804,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5448
5804
  label: "incentives".freeze,
5449
5805
  rangeIncludes: "schema:Text".freeze,
5450
5806
  type: "rdf:Property".freeze
5807
+ property :includedComposition,
5808
+ comment: %(Smaller compositions included in this work \(e.g. a movement in a symphony\).).freeze,
5809
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
5810
+ domainIncludes: "schema:MusicComposition".freeze,
5811
+ label: "includedComposition".freeze,
5812
+ rangeIncludes: "schema:MusicComposition".freeze,
5813
+ type: "rdf:Property".freeze
5451
5814
  property :includedRiskFactor,
5452
5815
  comment: %(A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.).freeze,
5453
5816
  domainIncludes: "schema:MedicalRiskEstimator".freeze,
@@ -5478,6 +5841,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5478
5841
  label: "industry".freeze,
5479
5842
  rangeIncludes: "schema:Text".freeze,
5480
5843
  type: "rdf:Property".freeze
5844
+ property :ineligibleRegion,
5845
+ comment: %(The place\(s\) from which the offer cannot be obtained \(e.g. a region where the transaction is not allowed\).).freeze,
5846
+ domainIncludes: "schema:Offer".freeze,
5847
+ label: "ineligibleRegion".freeze,
5848
+ rangeIncludes: "schema:Place".freeze,
5849
+ type: "rdf:Property".freeze
5481
5850
  property :infectiousAgent,
5482
5851
  comment: %(The actual infectious agent, such as a specific bacterium.).freeze,
5483
5852
  domainIncludes: "schema:InfectiousDisease".freeze,
@@ -5528,7 +5897,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5528
5897
  type: "rdf:Property".freeze
5529
5898
  property :interactionCount,
5530
5899
  comment: %(A count of a specific user interactions with this item&#x2014;for example, <code>20 UserLikes</code>, <code>5 UserComments</code>, or <code>300 UserDownloads</code>. The user interaction type should be one of the sub types of <a href='UserInteraction'>UserInteraction</a>.).freeze,
5531
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:MediaObject".freeze, "schema:Person".freeze],
5900
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Person".freeze],
5532
5901
  label: "interactionCount".freeze,
5533
5902
  rangeIncludes: "schema:Text".freeze,
5534
5903
  type: "rdf:Property".freeze
@@ -5630,6 +5999,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5630
5999
  label: "isicV4".freeze,
5631
6000
  rangeIncludes: "schema:Text".freeze,
5632
6001
  type: "rdf:Property".freeze
6002
+ property :isrcCode,
6003
+ comment: %(The International Standard Recording Code for the recording.).freeze,
6004
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6005
+ domainIncludes: "schema:MusicRecording".freeze,
6006
+ label: "isrcCode".freeze,
6007
+ rangeIncludes: "schema:Text".freeze,
6008
+ type: "rdf:Property".freeze
5633
6009
  property :issn,
5634
6010
  comment: %(The International Standard Serial Number \(ISSN\) that identifies this periodical. You can repeat this property to \(for example\) identify different formats of this periodical.).freeze,
5635
6011
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
@@ -5659,6 +6035,19 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5659
6035
  label: "issuedThrough".freeze,
5660
6036
  rangeIncludes: "schema:Service".freeze,
5661
6037
  type: "rdf:Property".freeze
6038
+ property :iswcCode,
6039
+ comment: %(The International Standard Musical Work Code for the composition.).freeze,
6040
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6041
+ domainIncludes: "schema:MusicComposition".freeze,
6042
+ label: "iswcCode".freeze,
6043
+ rangeIncludes: "schema:Text".freeze,
6044
+ type: "rdf:Property".freeze
6045
+ property :item,
6046
+ comment: %(An entity represented by an entry in a list \(e.g. an 'artist' in a list of 'artists'\)’.).freeze,
6047
+ domainIncludes: "schema:ListItem".freeze,
6048
+ label: "item".freeze,
6049
+ rangeIncludes: "schema:Thing".freeze,
6050
+ type: "rdf:Property".freeze
5662
6051
  property :itemCondition,
5663
6052
  comment: %(A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.).freeze,
5664
6053
  domainIncludes: ["schema:Offer".freeze, "schema:Product".freeze, "schema:Demand".freeze],
@@ -5666,16 +6055,20 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5666
6055
  rangeIncludes: "schema:OfferItemCondition".freeze,
5667
6056
  type: "rdf:Property".freeze
5668
6057
  property :itemListElement,
5669
- comment: %(A single list item.).freeze,
6058
+ comment: %(For itemListElement values, you can use simple strings \(e.g. "Peter", "Paul, "Mary"\), existing entities, or use ListItem.
6059
+ <br/><br/>
6060
+ Text values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.
6061
+ <br/><br/>
6062
+ Note: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.).freeze,
5670
6063
  domainIncludes: "schema:ItemList".freeze,
5671
6064
  label: "itemListElement".freeze,
5672
- rangeIncludes: "schema:Text".freeze,
6065
+ rangeIncludes: ["schema:Text".freeze, "schema:ListItem".freeze, "schema:Thing".freeze],
5673
6066
  type: "rdf:Property".freeze
5674
6067
  property :itemListOrder,
5675
6068
  comment: %(Type of ordering \(e.g. Ascending, Descending, Unordered\).).freeze,
5676
6069
  domainIncludes: "schema:ItemList".freeze,
5677
6070
  label: "itemListOrder".freeze,
5678
- rangeIncludes: "schema:Text".freeze,
6071
+ rangeIncludes: ["schema:ItemListOrderType".freeze, "schema:Text".freeze],
5679
6072
  type: "rdf:Property".freeze
5680
6073
  property :itemOffered,
5681
6074
  comment: %(The item being offered.).freeze,
@@ -5819,7 +6212,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5819
6212
  rangeIncludes: ["schema:Text".freeze, "schema:QualitativeValue".freeze],
5820
6213
  type: "rdf:Property".freeze
5821
6214
  property :logo,
5822
- comment: %(A logo associated with an organization.).freeze,
6215
+ comment: %(An associated logo.).freeze,
5823
6216
  domainIncludes: ["schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Brand".freeze],
5824
6217
  label: "logo".freeze,
5825
6218
  rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze],
@@ -5844,6 +6237,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5844
6237
  label: "lowPrice".freeze,
5845
6238
  rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze],
5846
6239
  type: "rdf:Property".freeze
6240
+ property :lyricist,
6241
+ comment: %(The person who wrote the words.).freeze,
6242
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6243
+ domainIncludes: "schema:MusicComposition".freeze,
6244
+ label: "lyricist".freeze,
6245
+ rangeIncludes: "schema:Person".freeze,
6246
+ type: "rdf:Property".freeze
5847
6247
  property :mainContentOfPage,
5848
6248
  comment: %(Indicates if this web page element is the main subject of the page.).freeze,
5849
6249
  domainIncludes: "schema:WebPage".freeze,
@@ -5876,7 +6276,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5876
6276
  rangeIncludes: "schema:MapCategoryType".freeze,
5877
6277
  type: "rdf:Property".freeze
5878
6278
  property :maps,
5879
- comment: %(A URL to a map of the place \(legacy spelling; see singular form, map\).).freeze,
6279
+ comment: %(A URL to a map of the place.).freeze,
5880
6280
  domainIncludes: "schema:Place".freeze,
5881
6281
  label: "maps".freeze,
5882
6282
  rangeIncludes: "schema:URL".freeze,
@@ -5939,7 +6339,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5939
6339
  rangeIncludes: ["schema:Organization".freeze, "schema:ProgramMembership".freeze],
5940
6340
  type: "rdf:Property".freeze
5941
6341
  property :members,
5942
- comment: %(A member of this organization \(legacy spelling; see singular form, member\).).freeze,
6342
+ comment: %(A member of this organization.).freeze,
5943
6343
  domainIncludes: ["schema:Organization".freeze, "schema:ProgramMembership".freeze],
5944
6344
  label: "members".freeze,
5945
6345
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -6018,12 +6418,26 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6018
6418
  label: "muscleAction".freeze,
6019
6419
  rangeIncludes: "schema:Text".freeze,
6020
6420
  type: "rdf:Property".freeze
6421
+ property :musicArrangement,
6422
+ comment: %(An arrangement derived from the composition.).freeze,
6423
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6424
+ domainIncludes: "schema:MusicComposition".freeze,
6425
+ label: "musicArrangement".freeze,
6426
+ rangeIncludes: "schema:MusicComposition".freeze,
6427
+ type: "rdf:Property".freeze
6021
6428
  property :musicBy,
6022
6429
  comment: %(The composer of the movie or TV/radio soundtrack.).freeze,
6023
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
6430
+ domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
6024
6431
  label: "musicBy".freeze,
6025
6432
  rangeIncludes: ["schema:MusicGroup".freeze, "schema:Person".freeze],
6026
6433
  type: "rdf:Property".freeze
6434
+ property :musicCompositionForm,
6435
+ comment: %(The type of composition \(e.g. overture, sonata, symphony, etc.\)).freeze,
6436
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6437
+ domainIncludes: "schema:MusicComposition".freeze,
6438
+ label: "musicCompositionForm".freeze,
6439
+ rangeIncludes: "schema:Text".freeze,
6440
+ type: "rdf:Property".freeze
6027
6441
  property :musicGroupMember,
6028
6442
  comment: %(A member of a music group&#x2014;for example, John, Paul, George, or Ringo.).freeze,
6029
6443
  domainIncludes: "schema:MusicGroup".freeze,
@@ -6031,6 +6445,20 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6031
6445
  rangeIncludes: "schema:Person".freeze,
6032
6446
  "schema:supersededBy" => %(schema:member).freeze,
6033
6447
  type: "rdf:Property".freeze
6448
+ property :musicReleaseFormat,
6449
+ comment: %(Format of this release \(the type of recording media used, ie. compact disc, digital media, LP, etc.\).).freeze,
6450
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6451
+ domainIncludes: "schema:MusicRelease".freeze,
6452
+ label: "musicReleaseFormat".freeze,
6453
+ rangeIncludes: "schema:MusicReleaseFormatType".freeze,
6454
+ type: "rdf:Property".freeze
6455
+ property :musicalKey,
6456
+ comment: %(The key, mode, or scale this composition uses.).freeze,
6457
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
6458
+ domainIncludes: "schema:MusicComposition".freeze,
6459
+ label: "musicalKey".freeze,
6460
+ rangeIncludes: "schema:Text".freeze,
6461
+ type: "rdf:Property".freeze
6034
6462
  property :naics,
6035
6463
  comment: %(The North American Industry Classification System \(NAICS\) code for a particular organization or business person.).freeze,
6036
6464
  domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -6045,9 +6473,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6045
6473
  type: "rdf:Property".freeze
6046
6474
  property :namedPosition,
6047
6475
  comment: %(A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.).freeze,
6048
- domainIncludes: "schema:OrganizationRole".freeze,
6476
+ domainIncludes: "schema:Role".freeze,
6049
6477
  label: "namedPosition".freeze,
6050
6478
  rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
6479
+ "schema:supersededBy" => %(schema:roleName).freeze,
6051
6480
  type: "rdf:Property".freeze
6052
6481
  property :nationality,
6053
6482
  comment: %(Nationality of the person.).freeze,
@@ -6073,6 +6502,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6073
6502
  label: "nerveMotor".freeze,
6074
6503
  rangeIncludes: "schema:Muscle".freeze,
6075
6504
  type: "rdf:Property".freeze
6505
+ property :netWorth,
6506
+ comment: %(The total financial value of the organization or person as calculated by subtracting assets from liabilities.).freeze,
6507
+ domainIncludes: "schema:Person".freeze,
6508
+ label: "netWorth".freeze,
6509
+ rangeIncludes: "schema:PriceSpecification".freeze,
6510
+ type: "rdf:Property".freeze
6511
+ property :nextItem,
6512
+ comment: %(A link to the ListItem that follows the current one.).freeze,
6513
+ domainIncludes: "schema:ListItem".freeze,
6514
+ label: "nextItem".freeze,
6515
+ rangeIncludes: "schema:ListItem".freeze,
6516
+ type: "rdf:Property".freeze
6076
6517
  property :nonEqual,
6077
6518
  comment: %(This ordering relation for qualitative values indicates that the subject is not equal to the object.).freeze,
6078
6519
  domainIncludes: "schema:QualitativeValue".freeze,
@@ -6111,22 +6552,40 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6111
6552
  type: "rdf:Property".freeze
6112
6553
  property :numberOfEpisodes,
6113
6554
  comment: %(The number of episodes in this season or series.).freeze,
6114
- domainIncludes: ["schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioSeason".freeze, "schema:RadioSeries".freeze],
6555
+ domainIncludes: ["schema:Season".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze, "schema:RadioSeries".freeze],
6115
6556
  label: "numberOfEpisodes".freeze,
6116
6557
  rangeIncludes: "schema:Number".freeze,
6117
6558
  type: "rdf:Property".freeze
6559
+ property :numberOfItems,
6560
+ comment: %(The number of items in an ItemList. Note that some descriptions might not full describe all items in a list \(e.g. multi-page pagination\).).freeze,
6561
+ domainIncludes: "schema:ItemList".freeze,
6562
+ label: "numberOfItems".freeze,
6563
+ rangeIncludes: "schema:Number".freeze,
6564
+ type: "rdf:Property".freeze
6118
6565
  property :numberOfPages,
6119
6566
  comment: %(The number of pages in the book.).freeze,
6120
6567
  domainIncludes: "schema:Book".freeze,
6121
6568
  label: "numberOfPages".freeze,
6122
6569
  rangeIncludes: "schema:Integer".freeze,
6123
6570
  type: "rdf:Property".freeze
6571
+ property :numberOfPlayers,
6572
+ comment: %(Indicate how many people can play this game \(minimum, maximum, or range\).).freeze,
6573
+ domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze],
6574
+ label: "numberOfPlayers".freeze,
6575
+ rangeIncludes: "schema:QuantitativeValue".freeze,
6576
+ type: "rdf:Property".freeze
6124
6577
  property :numberOfSeasons,
6125
6578
  comment: %(The number of seasons in this series.).freeze,
6126
- domainIncludes: "schema:Series".freeze,
6579
+ domainIncludes: ["schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze],
6127
6580
  label: "numberOfSeasons".freeze,
6128
6581
  rangeIncludes: "schema:Number".freeze,
6129
6582
  type: "rdf:Property".freeze
6583
+ property :numberedPosition,
6584
+ comment: %(A number associated with a role in an organization, for example, the number on an athlete's jersey.).freeze,
6585
+ domainIncludes: "schema:OrganizationRole".freeze,
6586
+ label: "numberedPosition".freeze,
6587
+ rangeIncludes: "schema:Number".freeze,
6588
+ type: "rdf:Property".freeze
6130
6589
  property :numberofEmployees,
6131
6590
  comment: %(The size of business by number of employees.).freeze,
6132
6591
  domainIncludes: "schema:BusinessAudience".freeze,
@@ -6159,7 +6618,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6159
6618
  type: "rdf:Property".freeze
6160
6619
  property :offers,
6161
6620
  comment: %(An offer to provide this item&#x2014;for example, an offer to sell a product, rent the DVD of a movie, or give away tickets to an event.).freeze,
6162
- domainIncludes: ["schema:CreativeWork".freeze, "schema:MediaObject".freeze, "schema:Event".freeze, "schema:Product".freeze],
6621
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Product".freeze],
6163
6622
  label: "offers".freeze,
6164
6623
  rangeIncludes: "schema:Offer".freeze,
6165
6624
  type: "rdf:Property".freeze
@@ -6328,7 +6787,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6328
6787
  rangeIncludes: "schema:BroadcastService".freeze,
6329
6788
  type: "rdf:Property".freeze
6330
6789
  property :parents,
6331
- comment: %(A parents of the person \(legacy spelling; see singular form, parent\).).freeze,
6790
+ comment: %(A parents of the person.).freeze,
6332
6791
  domainIncludes: "schema:Person".freeze,
6333
6792
  label: "parents".freeze,
6334
6793
  rangeIncludes: "schema:Person".freeze,
@@ -6339,30 +6798,35 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6339
6798
  domainIncludes: "schema:Clip".freeze,
6340
6799
  label: "partOfEpisode".freeze,
6341
6800
  rangeIncludes: "schema:Episode".freeze,
6801
+ subPropertyOf: "schema:isPartOf".freeze,
6342
6802
  type: "rdf:Property".freeze
6343
6803
  property :partOfOrder,
6344
6804
  comment: %(The overall order the items in this delivery were included in.).freeze,
6345
6805
  domainIncludes: "schema:ParcelDelivery".freeze,
6346
6806
  label: "partOfOrder".freeze,
6347
6807
  rangeIncludes: "schema:Order".freeze,
6808
+ subPropertyOf: "schema:isPartOf".freeze,
6348
6809
  type: "rdf:Property".freeze
6349
6810
  property :partOfSeason,
6350
6811
  comment: %(The season to which this episode belongs.).freeze,
6351
- domainIncludes: ["schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Clip".freeze, "schema:RadioClip".freeze, "schema:RadioEpisode".freeze, "schema:TVClip".freeze],
6812
+ domainIncludes: ["schema:Episode".freeze, "schema:Clip".freeze],
6352
6813
  label: "partOfSeason".freeze,
6353
6814
  rangeIncludes: "schema:Season".freeze,
6815
+ subPropertyOf: "schema:isPartOf".freeze,
6354
6816
  type: "rdf:Property".freeze
6355
6817
  property :partOfSeries,
6356
6818
  comment: %(The series to which this episode or season belongs.).freeze,
6357
- domainIncludes: ["schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Season".freeze, "schema:TVSeason".freeze, "schema:Clip".freeze, "schema:RadioClip".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeason".freeze, "schema:TVClip".freeze],
6819
+ domainIncludes: ["schema:Episode".freeze, "schema:Season".freeze, "schema:Clip".freeze],
6358
6820
  label: "partOfSeries".freeze,
6359
6821
  rangeIncludes: "schema:Series".freeze,
6822
+ subPropertyOf: "schema:isPartOf".freeze,
6360
6823
  type: "rdf:Property".freeze
6361
6824
  property :partOfSystem,
6362
6825
  comment: %(The anatomical or organ system that this structure is part of.).freeze,
6363
6826
  domainIncludes: "schema:AnatomicalStructure".freeze,
6364
6827
  label: "partOfSystem".freeze,
6365
6828
  rangeIncludes: "schema:AnatomicalSystem".freeze,
6829
+ subPropertyOf: "schema:isPartOf".freeze,
6366
6830
  type: "rdf:Property".freeze
6367
6831
  property :partOfTVSeries,
6368
6832
  comment: %(The TV series to which this episode or season belongs. \(legacy form; partOfSeries is preferred\)).freeze,
@@ -6370,6 +6834,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6370
6834
  label: "partOfTVSeries".freeze,
6371
6835
  rangeIncludes: "schema:TVSeries".freeze,
6372
6836
  "schema:supersededBy" => %(schema:partOfSeries).freeze,
6837
+ subPropertyOf: "schema:isPartOf".freeze,
6373
6838
  type: "rdf:Property".freeze
6374
6839
  property :participant,
6375
6840
  comment: %(Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.).freeze,
@@ -6432,7 +6897,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6432
6897
  rangeIncludes: "schema:Event".freeze,
6433
6898
  type: "rdf:Property".freeze
6434
6899
  property :performers,
6435
- comment: %(The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor \(legacy spelling; see singular form, performer\).).freeze,
6900
+ comment: %(The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor.).freeze,
6436
6901
  domainIncludes: "schema:Event".freeze,
6437
6902
  label: "performers".freeze,
6438
6903
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -6464,7 +6929,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6464
6929
  subPropertyOf: "schema:image".freeze,
6465
6930
  type: "rdf:Property".freeze
6466
6931
  property :photos,
6467
- comment: %(Photographs of this place \(legacy spelling; see singular form, photo\).).freeze,
6932
+ comment: %(Photographs of this place.).freeze,
6468
6933
  domainIncludes: "schema:Place".freeze,
6469
6934
  label: "photos".freeze,
6470
6935
  rangeIncludes: ["schema:ImageObject".freeze, "schema:Photograph".freeze],
@@ -6488,12 +6953,24 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6488
6953
  label: "pickupTime".freeze,
6489
6954
  rangeIncludes: "schema:DateTime".freeze,
6490
6955
  type: "rdf:Property".freeze
6956
+ property :playMode,
6957
+ comment: %(Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.).freeze,
6958
+ domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze],
6959
+ label: "playMode".freeze,
6960
+ rangeIncludes: "schema:GamePlayMode".freeze,
6961
+ type: "rdf:Property".freeze
6491
6962
  property :playerType,
6492
6963
  comment: %(Player type required&#x2014;for example, Flash or Silverlight.).freeze,
6493
6964
  domainIncludes: "schema:MediaObject".freeze,
6494
6965
  label: "playerType".freeze,
6495
6966
  rangeIncludes: "schema:Text".freeze,
6496
6967
  type: "rdf:Property".freeze
6968
+ property :playersOnline,
6969
+ comment: %(Number of players on the server.).freeze,
6970
+ domainIncludes: "schema:GameServer".freeze,
6971
+ label: "playersOnline".freeze,
6972
+ rangeIncludes: "schema:Number".freeze,
6973
+ type: "rdf:Property".freeze
6497
6974
  property :polygon,
6498
6975
  comment: %(A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.).freeze,
6499
6976
  domainIncludes: "schema:GeoShape".freeze,
@@ -6507,8 +6984,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6507
6984
  rangeIncludes: "schema:Text".freeze,
6508
6985
  type: "rdf:Property".freeze
6509
6986
  property :position,
6510
- comment: %(The position of the creative work within a series or other ordered collection of works.).freeze,
6511
- domainIncludes: "schema:CreativeWork".freeze,
6987
+ comment: %(The position of an item in a series or sequence of items.).freeze,
6988
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:ListItem".freeze],
6512
6989
  label: "position".freeze,
6513
6990
  rangeIncludes: ["schema:Text".freeze, "schema:Integer".freeze],
6514
6991
  type: "rdf:Property".freeze
@@ -6596,6 +7073,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6596
7073
  label: "prescriptionStatus".freeze,
6597
7074
  rangeIncludes: "schema:DrugPrescriptionStatus".freeze,
6598
7075
  type: "rdf:Property".freeze
7076
+ property :previousItem,
7077
+ comment: %(A link to the ListItem that preceeds the current one.).freeze,
7078
+ domainIncludes: "schema:ListItem".freeze,
7079
+ label: "previousItem".freeze,
7080
+ rangeIncludes: "schema:ListItem".freeze,
7081
+ type: "rdf:Property".freeze
6599
7082
  property :previousStartDate,
6600
7083
  comment: %(Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the \(rare\) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.).freeze,
6601
7084
  domainIncludes: "schema:Event".freeze,
@@ -6720,8 +7203,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6720
7203
  rangeIncludes: "schema:Text".freeze,
6721
7204
  type: "rdf:Property".freeze
6722
7205
  property :producer,
6723
- comment: %(The producer of the movie, tv/radio series, season, or episode, or video.).freeze,
6724
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
7206
+ comment: %(The person or organization who produced the work \(e.g. music album, movie, tv/radio series etc.\).).freeze,
7207
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze],
6725
7208
  label: "producer".freeze,
6726
7209
  rangeIncludes: "schema:Person".freeze,
6727
7210
  type: "rdf:Property".freeze
@@ -6744,8 +7227,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6744
7227
  rangeIncludes: ["schema:Product".freeze, "schema:Text".freeze],
6745
7228
  type: "rdf:Property".freeze
6746
7229
  property :productionCompany,
6747
- comment: %(The production company or studio that made the movie, tv/radio series, season, or episode, or media object.).freeze,
6748
- domainIncludes: ["schema:MediaObject".freeze, "schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:VideoObject".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeries".freeze],
7230
+ comment: %(The production company or studio responsible for the item e.g. series, video game, episode etc.).freeze,
7231
+ domainIncludes: ["schema:MediaObject".freeze, "schema:Movie".freeze, "schema:Episode".freeze, "schema:Season".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:VideoGameSeries".freeze],
6749
7232
  label: "productionCompany".freeze,
6750
7233
  rangeIncludes: "schema:Organization".freeze,
6751
7234
  type: "rdf:Property".freeze
@@ -6852,6 +7335,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6852
7335
  rangeIncludes: ["schema:Class".freeze, "schema:Text".freeze],
6853
7336
  subPropertyOf: "schema:instrument".freeze,
6854
7337
  type: "rdf:Property".freeze
7338
+ property :quest,
7339
+ comment: %(The task that a player-controlled character, or group of characters may complete in order to gain a reward.).freeze,
7340
+ domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze],
7341
+ label: "quest".freeze,
7342
+ rangeIncludes: "schema:Thing".freeze,
7343
+ type: "rdf:Property".freeze
6855
7344
  property :question,
6856
7345
  comment: %(A sub property of object. A question.).freeze,
6857
7346
  domainIncludes: "schema:AskAction".freeze,
@@ -6946,6 +7435,43 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6946
7435
  label: "recommendedIntake".freeze,
6947
7436
  rangeIncludes: "schema:RecommendedDoseSchedule".freeze,
6948
7437
  type: "rdf:Property".freeze
7438
+ property :recordLabel,
7439
+ comment: %(The label that issued the release.).freeze,
7440
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7441
+ domainIncludes: "schema:MusicRelease".freeze,
7442
+ label: "recordLabel".freeze,
7443
+ rangeIncludes: "schema:Organization".freeze,
7444
+ type: "rdf:Property".freeze
7445
+ property :recordedAs,
7446
+ comment: %(An audio recording of the work.).freeze,
7447
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7448
+ domainIncludes: "schema:MusicComposition".freeze,
7449
+ inverseOf: "schema:recordingOf".freeze,
7450
+ label: "recordedAs".freeze,
7451
+ rangeIncludes: "schema:MusicRecording".freeze,
7452
+ type: "rdf:Property".freeze
7453
+ property :recordedAt,
7454
+ comment: %(The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.).freeze,
7455
+ domainIncludes: "schema:CreativeWork".freeze,
7456
+ inverseOf: "schema:recordedIn".freeze,
7457
+ label: "recordedAt".freeze,
7458
+ rangeIncludes: "schema:Event".freeze,
7459
+ type: "rdf:Property".freeze
7460
+ property :recordedIn,
7461
+ comment: %(The CreativeWork that captured all or part of this Event.).freeze,
7462
+ domainIncludes: "schema:Event".freeze,
7463
+ inverseOf: "schema:recordedAt".freeze,
7464
+ label: "recordedIn".freeze,
7465
+ rangeIncludes: "schema:CreativeWork".freeze,
7466
+ type: "rdf:Property".freeze
7467
+ property :recordingOf,
7468
+ comment: %(The composition this track is a recording of.).freeze,
7469
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7470
+ domainIncludes: "schema:MusicRecording".freeze,
7471
+ inverseOf: "schema:recordedAs".freeze,
7472
+ label: "recordingOf".freeze,
7473
+ rangeIncludes: "schema:MusicComposition".freeze,
7474
+ type: "rdf:Property".freeze
6949
7475
  property :regionDrained,
6950
7476
  comment: %(The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.).freeze,
6951
7477
  domainIncludes: ["schema:LymphaticVessel".freeze, "schema:Vein".freeze],
@@ -7012,6 +7538,20 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7012
7538
  label: "releaseNotes".freeze,
7013
7539
  rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
7014
7540
  type: "rdf:Property".freeze
7541
+ property :releaseOf,
7542
+ comment: %(The album this is a release of.).freeze,
7543
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7544
+ domainIncludes: "schema:MusicRelease".freeze,
7545
+ inverseOf: "schema:albumRelease".freeze,
7546
+ label: "releaseOf".freeze,
7547
+ rangeIncludes: "schema:MusicAlbum".freeze,
7548
+ type: "rdf:Property".freeze
7549
+ property :releasedEvent,
7550
+ comment: %(The place and time the release was issued, expressed as a PublicationEvent.).freeze,
7551
+ domainIncludes: "schema:CreativeWork".freeze,
7552
+ label: "releasedEvent".freeze,
7553
+ rangeIncludes: "schema:PublicationEvent".freeze,
7554
+ type: "rdf:Property".freeze
7015
7555
  property :relevantSpecialty,
7016
7556
  comment: %(If applicable, a medical specialty in which this entity is relevant.).freeze,
7017
7557
  domainIncludes: "schema:MedicalEntity".freeze,
@@ -7160,7 +7700,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7160
7700
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
7161
7701
  type: "rdf:Property".freeze
7162
7702
  property :reviews,
7163
- comment: %(Review of the item \(legacy spelling; see singular form, review\).).freeze,
7703
+ comment: %(Review of the item.).freeze,
7164
7704
  domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Offer".freeze, "schema:Product".freeze],
7165
7705
  label: "reviews".freeze,
7166
7706
  rangeIncludes: "schema:Review".freeze,
@@ -7178,6 +7718,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7178
7718
  label: "risks".freeze,
7179
7719
  rangeIncludes: "schema:Text".freeze,
7180
7720
  type: "rdf:Property".freeze
7721
+ property :roleName,
7722
+ comment: %(A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.).freeze,
7723
+ domainIncludes: "schema:Role".freeze,
7724
+ label: "roleName".freeze,
7725
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
7726
+ type: "rdf:Property".freeze
7727
+ property :rsvpResponse,
7728
+ comment: %(The response \(yes, no, maybe\) to the RSVP.).freeze,
7729
+ domainIncludes: "schema:RsvpAction".freeze,
7730
+ label: "rsvpResponse".freeze,
7731
+ rangeIncludes: "schema:RsvpResponseType".freeze,
7732
+ type: "rdf:Property".freeze
7181
7733
  property :runsTo,
7182
7734
  comment: %(The vasculature the lymphatic structure runs, or efferents, to.).freeze,
7183
7735
  domainIncludes: "schema:LymphaticVessel".freeze,
@@ -7197,8 +7749,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7197
7749
  rangeIncludes: "schema:Text".freeze,
7198
7750
  type: "rdf:Property".freeze
7199
7751
  property :salaryCurrency,
7200
- comment: %(The currency \(coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 used for the main salary information in this job posting.).freeze,
7201
- domainIncludes: "schema:JobPosting".freeze,
7752
+ comment: %(The currency \(coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 \) used for the main salary information in this job posting or for this employee.).freeze,
7753
+ domainIncludes: ["schema:JobPosting".freeze, "schema:EmployeeRole".freeze],
7202
7754
  label: "salaryCurrency".freeze,
7203
7755
  rangeIncludes: "schema:Text".freeze,
7204
7756
  type: "rdf:Property".freeze
@@ -7222,7 +7774,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7222
7774
  type: "rdf:Property".freeze
7223
7775
  property :scheduledTime,
7224
7776
  comment: %(The time the object is scheduled to.).freeze,
7225
- domainIncludes: ["schema:PlanAction".freeze, "schema:ReserveAction".freeze],
7777
+ domainIncludes: "schema:PlanAction".freeze,
7226
7778
  label: "scheduledTime".freeze,
7227
7779
  rangeIncludes: "schema:DateTime".freeze,
7228
7780
  type: "rdf:Property".freeze
@@ -7233,21 +7785,22 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7233
7785
  rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze],
7234
7786
  type: "rdf:Property".freeze
7235
7787
  property :season,
7236
- comment: %(A season in a tv/radio series.).freeze,
7237
- domainIncludes: ["schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7788
+ comment: %(A season in a media series.).freeze,
7789
+ domainIncludes: ["schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7238
7790
  label: "season".freeze,
7239
7791
  rangeIncludes: "schema:Season".freeze,
7792
+ subPropertyOf: "schema:hasPart".freeze,
7240
7793
  type: "rdf:Property".freeze
7241
7794
  property :seasonNumber,
7242
7795
  comment: %(Position of the season within an ordered group of seasons.).freeze,
7243
- domainIncludes: ["schema:Season".freeze, "schema:TVSeason".freeze],
7796
+ domainIncludes: "schema:Season".freeze,
7244
7797
  label: "seasonNumber".freeze,
7245
7798
  rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze],
7246
7799
  subPropertyOf: "schema:position".freeze,
7247
7800
  type: "rdf:Property".freeze
7248
7801
  property :seasons,
7249
- comment: %(A season in a tv/radio series. \(legacy spelling; see singular form, season\)).freeze,
7250
- domainIncludes: ["schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7802
+ comment: %(A season in a media series.).freeze,
7803
+ domainIncludes: ["schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7251
7804
  label: "seasons".freeze,
7252
7805
  rangeIncludes: "schema:Season".freeze,
7253
7806
  "schema:supersededBy" => %(schema:season).freeze,
@@ -7320,6 +7873,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7320
7873
  label: "seriousAdverseOutcome".freeze,
7321
7874
  rangeIncludes: "schema:MedicalEntity".freeze,
7322
7875
  type: "rdf:Property".freeze
7876
+ property :serverStatus,
7877
+ comment: %(Status of a game server.).freeze,
7878
+ domainIncludes: "schema:GameServer".freeze,
7879
+ label: "serverStatus".freeze,
7880
+ rangeIncludes: "schema:GameServerStatus".freeze,
7881
+ type: "rdf:Property".freeze
7323
7882
  property :servesCuisine,
7324
7883
  comment: %(The cuisine of the restaurant.).freeze,
7325
7884
  domainIncludes: "schema:FoodEstablishment".freeze,
@@ -7393,7 +7952,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7393
7952
  rangeIncludes: "schema:Person".freeze,
7394
7953
  type: "rdf:Property".freeze
7395
7954
  property :siblings,
7396
- comment: %(A sibling of the person \(legacy spelling; see singular form, sibling\).).freeze,
7955
+ comment: %(A sibling of the person.).freeze,
7397
7956
  domainIncludes: "schema:Person".freeze,
7398
7957
  label: "siblings".freeze,
7399
7958
  rangeIncludes: "schema:Person".freeze,
@@ -7424,7 +7983,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7424
7983
  rangeIncludes: "schema:URL".freeze,
7425
7984
  type: "rdf:Property".freeze
7426
7985
  property :significantLinks,
7427
- comment: %(The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most \(legacy spelling; see singular form, significantLink\).).freeze,
7986
+ comment: %(The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.).freeze,
7428
7987
  domainIncludes: "schema:WebPage".freeze,
7429
7988
  label: "significantLinks".freeze,
7430
7989
  rangeIncludes: "schema:URL".freeze,
@@ -7448,6 +8007,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7448
8007
  label: "sodiumContent".freeze,
7449
8008
  rangeIncludes: "schema:Mass".freeze,
7450
8009
  type: "rdf:Property".freeze
8010
+ property :softwareAddOn,
8011
+ comment: %(Additional content for a software application.).freeze,
8012
+ domainIncludes: "schema:SoftwareApplication".freeze,
8013
+ label: "softwareAddOn".freeze,
8014
+ rangeIncludes: "schema:SoftwareApplication".freeze,
8015
+ type: "rdf:Property".freeze
8016
+ property :softwareHelp,
8017
+ comment: %(Software application help.).freeze,
8018
+ domainIncludes: "schema:SoftwareApplication".freeze,
8019
+ label: "softwareHelp".freeze,
8020
+ rangeIncludes: "schema:CreativeWork".freeze,
8021
+ type: "rdf:Property".freeze
7451
8022
  property :softwareVersion,
7452
8023
  comment: %(Version of the software instance.).freeze,
7453
8024
  domainIncludes: "schema:SoftwareApplication".freeze,
@@ -7496,6 +8067,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7496
8067
  label: "sponsor".freeze,
7497
8068
  rangeIncludes: "schema:Organization".freeze,
7498
8069
  type: "rdf:Property".freeze
8070
+ property :sport,
8071
+ comment: %(A type of sport \(e.g. Baseball\).).freeze,
8072
+ domainIncludes: "schema:SportsOrganization".freeze,
8073
+ label: "sport".freeze,
8074
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
8075
+ type: "rdf:Property".freeze
7499
8076
  property :sportsActivityLocation,
7500
8077
  comment: %(A sub property of location. The sports activity location where this action occurred.).freeze,
7501
8078
  domainIncludes: "schema:ExerciseAction".freeze,
@@ -7536,8 +8113,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7536
8113
  rangeIncludes: "schema:Number".freeze,
7537
8114
  type: "rdf:Property".freeze
7538
8115
  property :startDate,
7539
- comment: %(The start date and time of the event, role or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
7540
- domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze],
8116
+ comment: %(The start date and time of the item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
8117
+ domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:DatedMoneySpecification".freeze],
7541
8118
  label: "startDate".freeze,
7542
8119
  rangeIncludes: "schema:Date".freeze,
7543
8120
  type: "rdf:Property".freeze
@@ -7623,7 +8200,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7623
8200
  rangeIncludes: "schema:Event".freeze,
7624
8201
  type: "rdf:Property".freeze
7625
8202
  property :subEvents,
7626
- comment: %(Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference \(legacy spelling; see singular form, subEvent\).).freeze,
8203
+ comment: %(Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.).freeze,
7627
8204
  domainIncludes: "schema:Event".freeze,
7628
8205
  label: "subEvents".freeze,
7629
8206
  rangeIncludes: "schema:Event".freeze,
@@ -7859,10 +8436,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7859
8436
  rangeIncludes: "schema:Duration".freeze,
7860
8437
  type: "rdf:Property".freeze
7861
8438
  property :track,
7862
- comment: %(A music recording \(track\)&#x2014;usually a single song.).freeze,
8439
+ comment: %(A music recording \(track\)&#x2014;usually a single song. If an ItemList is given, the list should contain items of type MusicRecording).freeze,
8440
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7863
8441
  domainIncludes: ["schema:MusicPlaylist".freeze, "schema:MusicGroup".freeze],
7864
8442
  label: "track".freeze,
7865
- rangeIncludes: "schema:MusicRecording".freeze,
8443
+ rangeIncludes: ["schema:ItemList".freeze, "schema:MusicRecording".freeze],
7866
8444
  type: "rdf:Property".freeze
7867
8445
  property :trackingNumber,
7868
8446
  comment: %(Shipper tracking number.).freeze,
@@ -7877,15 +8455,15 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7877
8455
  rangeIncludes: "schema:URL".freeze,
7878
8456
  type: "rdf:Property".freeze
7879
8457
  property :tracks,
7880
- comment: %(A music recording \(track\)&#x2014;usually a single song \(legacy spelling; see singular form, track\).).freeze,
8458
+ comment: %(A music recording \(track\)&#x2014;usually a single song.).freeze,
7881
8459
  domainIncludes: ["schema:MusicPlaylist".freeze, "schema:MusicGroup".freeze],
7882
8460
  label: "tracks".freeze,
7883
8461
  rangeIncludes: "schema:MusicRecording".freeze,
7884
8462
  "schema:supersededBy" => %(schema:track).freeze,
7885
8463
  type: "rdf:Property".freeze
7886
8464
  property :trailer,
7887
- comment: %(The trailer of a movie or tv/radio series, season, or episode.).freeze,
7888
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVEpisode".freeze, "schema:Season".freeze, "schema:TVSeason".freeze, "schema:Series".freeze, "schema:TVSeries".freeze, "schema:RadioEpisode".freeze, "schema:RadioSeason".freeze, "schema:RadioSeries".freeze],
8465
+ comment: %(The trailer of a movie or tv/radio series, season, episode, etc.).freeze,
8466
+ domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:Season".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:MovieGameSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze],
7889
8467
  label: "trailer".freeze,
7890
8468
  rangeIncludes: "schema:VideoObject".freeze,
7891
8469
  type: "rdf:Property".freeze
@@ -7913,6 +8491,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7913
8491
  label: "transcript".freeze,
7914
8492
  rangeIncludes: "schema:Text".freeze,
7915
8493
  type: "rdf:Property".freeze
8494
+ property :translator,
8495
+ comment: %(Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market.).freeze,
8496
+ domainIncludes: "schema:CreativeWork".freeze,
8497
+ label: "translator".freeze,
8498
+ rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
8499
+ type: "rdf:Property".freeze
7916
8500
  property :transmissionMethod,
7917
8501
  comment: %(How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.).freeze,
7918
8502
  domainIncludes: "schema:InfectiousDisease".freeze,
@@ -8159,8 +8743,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8159
8743
  rangeIncludes: "schema:DateTime".freeze,
8160
8744
  type: "rdf:Property".freeze
8161
8745
  property :weight,
8162
- comment: %(The weight of the product.).freeze,
8163
- domainIncludes: "schema:Product".freeze,
8746
+ comment: %(The weight of the product or person.).freeze,
8747
+ domainIncludes: ["schema:Product".freeze, "schema:Person".freeze],
8164
8748
  label: "weight".freeze,
8165
8749
  rangeIncludes: "schema:QuantitativeValue".freeze,
8166
8750
  type: "rdf:Property".freeze
@@ -8257,6 +8841,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8257
8841
  comment: %(Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.).freeze,
8258
8842
  label: "AerobicActivity".freeze,
8259
8843
  type: "schema:PhysicalActivityCategory".freeze
8844
+ term :AlbumRelease,
8845
+ comment: %(AlbumRelease.).freeze,
8846
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8847
+ label: "AlbumRelease".freeze,
8848
+ type: "schema:MusicAlbumReleaseType".freeze
8260
8849
  term :AnaerobicActivity,
8261
8850
  comment: %(Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.).freeze,
8262
8851
  label: "AnaerobicActivity".freeze,
@@ -8277,6 +8866,16 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8277
8866
  comment: %(Physical activity that is engaged to help maintain posture and balance.).freeze,
8278
8867
  label: "Balance".freeze,
8279
8868
  type: "schema:PhysicalActivityCategory".freeze
8869
+ term :BroadcastRelease,
8870
+ comment: %(BroadcastRelease.).freeze,
8871
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8872
+ label: "BroadcastRelease".freeze,
8873
+ type: "schema:MusicAlbumReleaseType".freeze
8874
+ term :CDFormat,
8875
+ comment: %(CDFormat.).freeze,
8876
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8877
+ label: "CDFormat".freeze,
8878
+ type: "schema:MusicReleaseFormatType".freeze
8280
8879
  term :CT,
8281
8880
  comment: %(X-ray computed tomography imaging.).freeze,
8282
8881
  label: "CT".freeze,
@@ -8293,6 +8892,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8293
8892
  comment: %(A case series \(also known as a clinical series\) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.).freeze,
8294
8893
  label: "CaseSeries".freeze,
8295
8894
  type: "schema:MedicalObservationalStudyDesign".freeze
8895
+ term :CassetteFormat,
8896
+ comment: %(CassetteFormat.).freeze,
8897
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8898
+ label: "CassetteFormat".freeze,
8899
+ type: "schema:MusicReleaseFormatType".freeze
8296
8900
  term :Chiropractic,
8297
8901
  comment: %(A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.).freeze,
8298
8902
  label: "Chiropractic".freeze,
@@ -8301,6 +8905,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8301
8905
  comment: %(Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.).freeze,
8302
8906
  label: "Clinician".freeze,
8303
8907
  type: "schema:MedicalAudience".freeze
8908
+ term :CoOp,
8909
+ comment: %(Play mode: CoOp. Co-operative games, where you play on the same team with friends.).freeze,
8910
+ label: "CoOp".freeze,
8911
+ type: "schema:GamePlayMode".freeze
8304
8912
  term :CohortStudy,
8305
8913
  comment: %(Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period \(e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.\). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.).freeze,
8306
8914
  label: "CohortStudy".freeze,
@@ -8309,6 +8917,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8309
8917
  comment: %(Community health.).freeze,
8310
8918
  label: "CommunityHealth".freeze,
8311
8919
  type: "schema:MedicalSpecialty".freeze
8920
+ term :CompilationAlbum,
8921
+ comment: %(CompilationAlbum.).freeze,
8922
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8923
+ label: "CompilationAlbum".freeze,
8924
+ type: "schema:MusicAlbumProductionType".freeze
8312
8925
  term :Completed,
8313
8926
  comment: %(Completed.).freeze,
8314
8927
  label: "Completed".freeze,
@@ -8321,10 +8934,25 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8321
8934
  comment: %(Studies carried out on pre-existing data \(usually from 'snapshot' surveys\), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.).freeze,
8322
8935
  label: "CrossSectional".freeze,
8323
8936
  type: "schema:MedicalObservationalStudyDesign".freeze
8937
+ term :DJMixAlbum,
8938
+ comment: %(DJMixAlbum.).freeze,
8939
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8940
+ label: "DJMixAlbum".freeze,
8941
+ type: "schema:MusicAlbumProductionType".freeze
8942
+ term :DVDFormat,
8943
+ comment: %(DVDFormat.).freeze,
8944
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8945
+ label: "DVDFormat".freeze,
8946
+ type: "schema:MusicReleaseFormatType".freeze
8324
8947
  term :DamagedCondition,
8325
8948
  comment: %(Indicates that the item is damaged.).freeze,
8326
8949
  label: "DamagedCondition".freeze,
8327
8950
  type: "schema:OfferItemCondition".freeze
8951
+ term :DemoAlbum,
8952
+ comment: %(DemoAlbum.).freeze,
8953
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8954
+ label: "DemoAlbum".freeze,
8955
+ type: "schema:MusicAlbumProductionType".freeze
8328
8956
  term :Dentistry,
8329
8957
  comment: %(Dentistry.).freeze,
8330
8958
  label: "Dentistry".freeze,
@@ -8341,6 +8969,16 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8341
8969
  comment: %(Diet and nutrition.).freeze,
8342
8970
  label: "DietNutrition".freeze,
8343
8971
  type: "schema:MedicalSpecialty".freeze
8972
+ term :DigitalAudioTapeFormat,
8973
+ comment: %(DigitalAudioTapeFormat.).freeze,
8974
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8975
+ label: "DigitalAudioTapeFormat".freeze,
8976
+ type: "schema:MusicReleaseFormatType".freeze
8977
+ term :DigitalFormat,
8978
+ comment: %(DigitalFormat.).freeze,
8979
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8980
+ label: "DigitalFormat".freeze,
8981
+ type: "schema:MusicReleaseFormatType".freeze
8344
8982
  term :Discontinued,
8345
8983
  comment: %(Indicates that the item has been discontinued.).freeze,
8346
8984
  label: "Discontinued".freeze,
@@ -8353,6 +8991,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8353
8991
  comment: %(Book format: Ebook.).freeze,
8354
8992
  label: "EBook".freeze,
8355
8993
  type: "schema:BookFormatType".freeze
8994
+ term :EPRelease,
8995
+ comment: %(EPRelease.).freeze,
8996
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8997
+ label: "EPRelease".freeze,
8998
+ type: "schema:MusicAlbumReleaseType".freeze
8356
8999
  term :Ear,
8357
9000
  comment: %(Ear).freeze,
8358
9001
  label: "Ear".freeze,
@@ -8425,6 +9068,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8425
9068
  comment: %(A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.).freeze,
8426
9069
  label: "FDAnotEvaluated".freeze,
8427
9070
  type: "schema:DrugPregnancyCategory".freeze
9071
+ term :FailedActionStatus,
9072
+ comment: %(An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.).freeze,
9073
+ label: "FailedActionStatus".freeze,
9074
+ type: "schema:ActionStatusType".freeze
8428
9075
  term :False,
8429
9076
  comment: %(The boolean value false).freeze,
8430
9077
  label: "False".freeze,
@@ -8490,10 +9137,27 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8490
9137
  comment: %(An international trial.).freeze,
8491
9138
  label: "InternationalTrial".freeze,
8492
9139
  type: "schema:MedicalTrialDesign".freeze
9140
+ term :ItemListOrderAscending,
9141
+ comment: %(An ItemList ordered with lower values listed first.).freeze,
9142
+ label: "ItemListOrderAscending".freeze,
9143
+ type: "schema:ItemListOrderType".freeze
9144
+ term :ItemListOrderDescending,
9145
+ comment: %(An ItemList ordered with higher values listed first.).freeze,
9146
+ label: "ItemListOrderDescending".freeze,
9147
+ type: "schema:ItemListOrderType".freeze
9148
+ term :ItemListUnordered,
9149
+ comment: %(An ItemList ordered with no explicit order.).freeze,
9150
+ label: "ItemListUnordered".freeze,
9151
+ type: "schema:ItemListOrderType".freeze
8493
9152
  term :LaboratoryScience,
8494
9153
  comment: %(Laboratory science.).freeze,
8495
9154
  label: "LaboratoryScience".freeze,
8496
9155
  type: "schema:MedicalSpecialty".freeze
9156
+ term :LaserDiscFormat,
9157
+ comment: %(LaserDiscFormat.).freeze,
9158
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9159
+ label: "LaserDiscFormat".freeze,
9160
+ type: "schema:MusicReleaseFormatType".freeze
8497
9161
  term :LeisureTimeActivity,
8498
9162
  comment: %(Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.).freeze,
8499
9163
  label: "LeisureTimeActivity".freeze,
@@ -8502,6 +9166,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8502
9166
  comment: %(Indicates that the item has limited availability.).freeze,
8503
9167
  label: "LimitedAvailability".freeze,
8504
9168
  type: "schema:ItemAvailability".freeze
9169
+ term :LiveAlbum,
9170
+ comment: %(LiveAlbum.).freeze,
9171
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9172
+ label: "LiveAlbum".freeze,
9173
+ type: "schema:MusicAlbumProductionType".freeze
8505
9174
  term :Longitudinal,
8506
9175
  comment: %(Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.).freeze,
8507
9176
  label: "Longitudinal".freeze,
@@ -8522,10 +9191,19 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8522
9191
  comment: %(Midwifery.).freeze,
8523
9192
  label: "Midwifery".freeze,
8524
9193
  type: "schema:MedicalSpecialty".freeze
9194
+ term :MixtapeAlbum,
9195
+ comment: %(MixtapeAlbum.).freeze,
9196
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9197
+ label: "MixtapeAlbum".freeze,
9198
+ type: "schema:MusicAlbumProductionType".freeze
8525
9199
  term :MultiCenterTrial,
8526
9200
  comment: %(A trial that takes place at multiple centers.).freeze,
8527
9201
  label: "MultiCenterTrial".freeze,
8528
9202
  type: "schema:MedicalTrialDesign".freeze
9203
+ term :MultiPlayer,
9204
+ comment: %(Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.).freeze,
9205
+ label: "MultiPlayer".freeze,
9206
+ type: "schema:GamePlayMode".freeze
8529
9207
  term :Musculoskeletal,
8530
9208
  comment: %(A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.).freeze,
8531
9209
  label: "Musculoskeletal".freeze,
@@ -8586,6 +9264,14 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8586
9264
  comment: %(Occupational therapy.).freeze,
8587
9265
  label: "OccupationalTherapy".freeze,
8588
9266
  type: "schema:MedicalSpecialty".freeze
9267
+ term :OfflinePermanently,
9268
+ comment: %(Game server status: OfflinePermanently. Server is offline and not available.).freeze,
9269
+ label: "OfflinePermanently ".freeze,
9270
+ type: "schema:GameServerStatus".freeze
9271
+ term :OfflineTemporarily,
9272
+ comment: %(Game server status: OfflineTemporarily. Server is offline now but it can be online soon.).freeze,
9273
+ label: "OfflineTemporarily ".freeze,
9274
+ type: "schema:GameServerStatus".freeze
8589
9275
  term :OnSitePickup,
8590
9276
  comment: %(A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.).freeze,
8591
9277
  label: "OnSitePickup".freeze,
@@ -8594,6 +9280,14 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8594
9280
  comment: %(A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.).freeze,
8595
9281
  label: "Oncologic".freeze,
8596
9282
  type: "schema:MedicalSpecialty".freeze
9283
+ term :Online,
9284
+ comment: %(Game server status: Online. Server is available.).freeze,
9285
+ label: "Online".freeze,
9286
+ type: "schema:GameServerStatus".freeze
9287
+ term :OnlineFull,
9288
+ comment: %(Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.).freeze,
9289
+ label: "OnlineFull ".freeze,
9290
+ type: "schema:GameServerStatus".freeze
8597
9291
  term :OnlineOnly,
8598
9292
  comment: %(Indicates that the item is available only online.).freeze,
8599
9293
  label: "OnlineOnly".freeze,
@@ -8750,6 +9444,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8750
9444
  comment: %(The drug's cost represents the maximum reimbursement paid by an insurer for the drug.).freeze,
8751
9445
  label: "ReimbursementCap".freeze,
8752
9446
  type: "schema:DrugCostCategory".freeze
9447
+ term :RemixAlbum,
9448
+ comment: %(RemixAlbum.).freeze,
9449
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9450
+ label: "RemixAlbum".freeze,
9451
+ type: "schema:MusicAlbumProductionType".freeze
8753
9452
  term :Renal,
8754
9453
  comment: %(A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.).freeze,
8755
9454
  label: "Renal".freeze,
@@ -8794,6 +9493,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8794
9493
  comment: %(A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.).freeze,
8795
9494
  label: "Rheumatologic".freeze,
8796
9495
  type: "schema:MedicalSpecialty".freeze
9496
+ term :RsvpResponseMaybe,
9497
+ comment: %(The invitee may or may not attend.).freeze,
9498
+ label: "RsvpResponseMaybe".freeze,
9499
+ type: "schema:RsvpResponseType".freeze
9500
+ term :RsvpResponseNo,
9501
+ comment: %(The invitee will not attend.).freeze,
9502
+ label: "RsvpResponseNo".freeze,
9503
+ type: "schema:RsvpResponseType".freeze
9504
+ term :RsvpResponseYes,
9505
+ comment: %(The invitee will attend.).freeze,
9506
+ label: "RsvpResponseYes".freeze,
9507
+ type: "schema:RsvpResponseType".freeze
8797
9508
  term :SeatingMap,
8798
9509
  comment: %(A seating map.).freeze,
8799
9510
  label: "SeatingMap".freeze,
@@ -8806,6 +9517,15 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8806
9517
  comment: %(A trial that takes place at a single center.).freeze,
8807
9518
  label: "SingleCenterTrial".freeze,
8808
9519
  type: "schema:MedicalTrialDesign".freeze
9520
+ term :SinglePlayer,
9521
+ comment: %(Play mode: SinglePlayer. Which is played by a lone player.).freeze,
9522
+ label: "SinglePlayer".freeze,
9523
+ type: "schema:GamePlayMode".freeze
9524
+ term :SingleRelease,
9525
+ comment: %(SingleRelease.).freeze,
9526
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9527
+ label: "SingleRelease".freeze,
9528
+ type: "schema:MusicAlbumReleaseType".freeze
8809
9529
  term :Skin,
8810
9530
  comment: %(Skin).freeze,
8811
9531
  label: "Skin".freeze,
@@ -8814,14 +9534,29 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8814
9534
  comment: %(Indicates that the item has sold out.).freeze,
8815
9535
  label: "SoldOut".freeze,
8816
9536
  type: "schema:ItemAvailability".freeze
9537
+ term :SoundtrackAlbum,
9538
+ comment: %(SoundtrackAlbum.).freeze,
9539
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9540
+ label: "SoundtrackAlbum".freeze,
9541
+ type: "schema:MusicAlbumProductionType".freeze
8817
9542
  term :SpeechPathology,
8818
9543
  comment: %(Speech pathology.).freeze,
8819
9544
  label: "SpeechPathology".freeze,
8820
9545
  type: "schema:MedicalSpecialty".freeze
9546
+ term :SpokenWordAlbum,
9547
+ comment: %(SpokenWordAlbum.).freeze,
9548
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9549
+ label: "SpokenWordAlbum".freeze,
9550
+ type: "schema:MusicAlbumProductionType".freeze
8821
9551
  term :StrengthTraining,
8822
9552
  comment: %(Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.).freeze,
8823
9553
  label: "StrengthTraining".freeze,
8824
9554
  type: "schema:PhysicalActivityCategory".freeze
9555
+ term :StudioAlbum,
9556
+ comment: %(StudioAlbum.).freeze,
9557
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9558
+ label: "StudioAlbum".freeze,
9559
+ type: "schema:MusicAlbumProductionType".freeze
8825
9560
  term :Surgical,
8826
9561
  comment: %(A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.).freeze,
8827
9562
  label: "Surgical".freeze,
@@ -8887,6 +9622,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8887
9622
  comment: %(A venue map \(e.g. for malls, auditoriums, museums, etc.\).).freeze,
8888
9623
  label: "VenueMap".freeze,
8889
9624
  type: "schema:MapCategoryType".freeze
9625
+ term :VinylFormat,
9626
+ comment: %(VinylFormat.).freeze,
9627
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9628
+ label: "VinylFormat".freeze,
9629
+ type: "schema:MusicReleaseFormatType".freeze
8890
9630
  term :VitalSign,
8891
9631
  comment: %(VitalSign).freeze,
8892
9632
  label: "VitalSign".freeze,