rdf 1.1.13 → 1.1.14

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: d8cc213b390113a8231b320a298d2aa83a2d9139
4
- data.tar.gz: 9d073afff562399f2cb879d10cfafa0409d484b1
3
+ metadata.gz: e8fae3119c03f76ca92e7759d025bb1c17ed55db
4
+ data.tar.gz: fe07f4c9ee59e359c2f4826555a39a52897e0733
5
5
  SHA512:
6
- metadata.gz: 1b0dfaf09965c2bb8cde8472882efb2223b0f5126e11d71d5aefcd560102e0213539a963d6b23bba3261e6261272794efdf56a7f66fe047d81f40afa7aaca302
7
- data.tar.gz: 4499c53c7c4bfa96f3377f6ea9344054e8dbe182f42479bba2f535d453a44fecbdbdaf8853d82ed93d612edd74fc0dbee39af864e4994f0785cf5c61c8ade8c5
6
+ metadata.gz: bbac6da5b9ab5e564e5ca23f47d1d50bd4933a9d8590bf4ff59a8b5d6652630fa02f7741c309624f4e03e531667bdaaf258420efc85c63ed3230ab4bdbe8f337
7
+ data.tar.gz: 50b338b350ff2b1cc8039a86891b1ec3f3c4b62d17fb7ea7cbd17ef3e223f6e0de27a9f98509e7f6d1e5b52d61c1fb77db4a2000d1dbecea6243597e3a409d70
data/README CHANGED
@@ -11,6 +11,7 @@ This is a pure-Ruby library for working with [Resource Description Framework
11
11
 
12
12
  [![Gem Version](https://badge.fury.io/rb/rdf.png)](http://badge.fury.io/rb/rdf)
13
13
  [![Build Status](https://travis-ci.org/ruby-rdf/rdf.png?branch=master)](http://travis-ci.org/ruby-rdf/rdf)
14
+ [![Join the chat at https://gitter.im/ruby-rdf/rdf](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ruby-rdf/rdf?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
14
15
 
15
16
  ## Features
16
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.13
1
+ 1.1.14
@@ -14,7 +14,7 @@ module RDF
14
14
  # @return [Boolean] `true` or `false`
15
15
  # @see RDF::Readable#readable?
16
16
  def writable?
17
- true
17
+ !frozen?
18
18
  end
19
19
 
20
20
  ##
@@ -53,7 +53,14 @@ module RDF; class Literal
53
53
  e.sub!(/^(?:\+|(\-))?0+(\d+)$/, '\1\2') # remove the optional leading '+' sign and any extra leading zeroes
54
54
  "#{i}.#{f}E#{e}"
55
55
  end
56
- @object = Float(@string) unless @object.nil?
56
+
57
+ @object = case @string
58
+ when 'NaN' then 0/0.0
59
+ when 'INF' then 1/0.0
60
+ when '-INF' then -1/0.0
61
+ else Float(@string)
62
+ end
63
+
57
64
  self
58
65
  end
59
66
 
@@ -17,7 +17,7 @@ module RDF
17
17
  subClassOf: "schema:WebPage".freeze,
18
18
  type: "rdfs:Class".freeze
19
19
  term :AcceptAction,
20
- comment: %(The act of committing to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/RejectAction">RejectAction</a>: The antagonym of AcceptAction</li></ul>.).freeze,
20
+ comment: %(The act of committing to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/RejectAction">RejectAction</a>: The antonym of AcceptAction</li></ul>.).freeze,
21
21
  label: "AcceptAction".freeze,
22
22
  subClassOf: "schema:AllocateAction".freeze,
23
23
  type: "rdfs:Class".freeze
@@ -126,7 +126,7 @@ module RDF
126
126
  comment: %(An answer offered to a question; perhaps correct, perhaps opinionated or wrong.).freeze,
127
127
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange).freeze,
128
128
  label: "Answer".freeze,
129
- subClassOf: "schema:CreativeWork".freeze,
129
+ subClassOf: "schema:Comment".freeze,
130
130
  type: "rdfs:Class".freeze
131
131
  term :ApartmentComplex,
132
132
  comment: %(Residence type: Apartment complex.).freeze,
@@ -314,6 +314,11 @@ module RDF
314
314
  label: "BloodTest".freeze,
315
315
  subClassOf: "schema:MedicalTest".freeze,
316
316
  type: "rdfs:Class".freeze
317
+ term :BoardingPolicyType,
318
+ comment: %(A type of boarding policy used by an airline.).freeze,
319
+ label: "BoardingPolicyType".freeze,
320
+ subClassOf: "schema:Enumeration".freeze,
321
+ type: "rdfs:Class".freeze
317
322
  term :BodyOfWater,
318
323
  comment: %(A body of water, such as a sea, ocean, or lake.).freeze,
319
324
  label: "BodyOfWater".freeze,
@@ -338,7 +343,7 @@ module RDF
338
343
  term :BookSeries,
339
344
  comment: %(A series of books. Included books can be indicated with the hasPart property.).freeze,
340
345
  label: "BookSeries".freeze,
341
- subClassOf: "schema:Series".freeze,
346
+ subClassOf: "schema:CreativeWorkSeries".freeze,
342
347
  type: "rdfs:Class".freeze
343
348
  term :BookStore,
344
349
  comment: %(A bookstore.).freeze,
@@ -353,8 +358,7 @@ module RDF
353
358
  term :Boolean,
354
359
  comment: %(Boolean: True or False.).freeze,
355
360
  label: "Boolean".freeze,
356
- subClassOf: "schema:DataType".freeze,
357
- type: "rdfs:Class".freeze
361
+ type: ["rdfs:Class".freeze, "schema:DataType".freeze]
358
362
  term :BorrowAction,
359
363
  comment: %(The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.<p>Related actions:</p><ul><li><a href="http://schema.org/LendAction">LendAction</a>: Reciprocal of BorrowAction</li></ul>.).freeze,
360
364
  label: "BorrowAction".freeze,
@@ -379,7 +383,15 @@ module RDF
379
383
  type: "rdfs:Class".freeze
380
384
  term :BreadcrumbList,
381
385
  comment: %(
382
- 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,
386
+ A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.
387
+ <br />
388
+ <br />
389
+ The 'position' property is used to reconstruct the order of the items in a BreadcrumbList.
390
+ The convention is that a breadcrumb list has an itemListOrder of ItemListOrderAscending \(lower values listed first\), and that the
391
+ first items in this list correspond to the "top" or beginning of the breadcrumb trail, e.g. with a site or section homepage.
392
+ The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning
393
+ with '1' for the first item in the list.
394
+ ).freeze,
383
395
  label: "BreadcrumbList".freeze,
384
396
  subClassOf: "schema:ItemList".freeze,
385
397
  type: "rdfs:Class".freeze
@@ -388,6 +400,11 @@ module RDF
388
400
  label: "Brewery".freeze,
389
401
  subClassOf: "schema:FoodEstablishment".freeze,
390
402
  type: "rdfs:Class".freeze
403
+ term :BroadcastChannel,
404
+ comment: %(A unique instance of a BroadcastService on a CableOrSatelliteService lineup.).freeze,
405
+ label: "BroadcastChannel".freeze,
406
+ subClassOf: "schema:Intangible".freeze,
407
+ type: "rdfs:Class".freeze
391
408
  term :BroadcastEvent,
392
409
  comment: %(An over the air or online broadcast event.).freeze,
393
410
  label: "BroadcastEvent".freeze,
@@ -420,7 +437,7 @@ module RDF
420
437
  type: "rdfs:Class".freeze
421
438
  term :BusTrip,
422
439
  comment: %(A trip on a commercial bus line.).freeze,
423
- label: "Bus Trip".freeze,
440
+ label: "BusTrip".freeze,
424
441
  subClassOf: "schema:Intangible".freeze,
425
442
  type: "rdfs:Class".freeze
426
443
  term :BusinessAudience,
@@ -430,13 +447,13 @@ module RDF
430
447
  type: "rdfs:Class".freeze
431
448
  term :BusinessEntityType,
432
449
  comment: %(A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.
433
-
434
- Commonly used values:
435
-
436
- http://purl.org/goodrelations/v1#Business
437
- http://purl.org/goodrelations/v1#Enduser
438
- http://purl.org/goodrelations/v1#PublicInstitution
439
- http://purl.org/goodrelations/v1#Reseller
450
+ <br />
451
+ Commonly used values:<br />
452
+ <br />
453
+ http://purl.org/goodrelations/v1#Business <br />
454
+ http://purl.org/goodrelations/v1#Enduser <br />
455
+ http://purl.org/goodrelations/v1#PublicInstitution <br />
456
+ http://purl.org/goodrelations/v1#Reseller <br />
440
457
 
441
458
  ).freeze,
442
459
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
@@ -450,17 +467,17 @@ module RDF
450
467
  type: "rdfs:Class".freeze
451
468
  term :BusinessFunction,
452
469
  comment: %(The business function specifies the type of activity or access \(i.e., the bundle of rights\) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.
453
-
454
- Commonly used values:
455
-
456
- http://purl.org/goodrelations/v1#ConstructionInstallation
457
- http://purl.org/goodrelations/v1#Dispose
458
- http://purl.org/goodrelations/v1#LeaseOut
459
- http://purl.org/goodrelations/v1#Maintain
460
- http://purl.org/goodrelations/v1#ProvideService
461
- http://purl.org/goodrelations/v1#Repair
462
- http://purl.org/goodrelations/v1#Sell
463
- http://purl.org/goodrelations/v1#Buy
470
+ <br />
471
+ Commonly used values:<br />
472
+ <br />
473
+ http://purl.org/goodrelations/v1#ConstructionInstallation <br />
474
+ http://purl.org/goodrelations/v1#Dispose <br />
475
+ http://purl.org/goodrelations/v1#LeaseOut <br />
476
+ http://purl.org/goodrelations/v1#Maintain <br />
477
+ http://purl.org/goodrelations/v1#ProvideService <br />
478
+ http://purl.org/goodrelations/v1#Repair <br />
479
+ http://purl.org/goodrelations/v1#Sell <br />
480
+ http://purl.org/goodrelations/v1#Buy <br />
464
481
  ).freeze,
465
482
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
466
483
  label: "BusinessFunction".freeze,
@@ -471,6 +488,11 @@ module RDF
471
488
  label: "BuyAction".freeze,
472
489
  subClassOf: "schema:TradeAction".freeze,
473
490
  type: "rdfs:Class".freeze
491
+ term :CableOrSatelliteService,
492
+ comment: %(A service which provides access to media programming like TV or radio. Access may be via cable or satellite.).freeze,
493
+ label: "CableOrSatelliteService".freeze,
494
+ subClassOf: "schema:Service".freeze,
495
+ type: "rdfs:Class".freeze
474
496
  term :CafeOrCoffeeShop,
475
497
  comment: %(A cafe or coffee shop.).freeze,
476
498
  label: "CafeOrCoffeeShop".freeze,
@@ -487,15 +509,22 @@ module RDF
487
509
  subClassOf: "schema:BodyOfWater".freeze,
488
510
  type: "rdfs:Class".freeze
489
511
  term :CancelAction,
490
- comment: %(The act of asserting that a future event/action is no longer going to happen.<p>Related actions:</p><ul><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: The antagonym of CancelAction</li></ul>.).freeze,
512
+ comment: %(The act of asserting that a future event/action is no longer going to happen.<p>Related actions:</p><ul><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: The antonym of CancelAction</li></ul>.).freeze,
491
513
  label: "CancelAction".freeze,
492
514
  subClassOf: "schema:PlanAction".freeze,
493
515
  type: "rdfs:Class".freeze
494
516
  term :Car,
495
- comment: %(An automobile.).freeze,
517
+ comment: %(A car is a wheeled, self-powered motor vehicle used for transportation.).freeze,
518
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
496
519
  label: "Car".freeze,
497
520
  subClassOf: "schema:Vehicle".freeze,
498
521
  type: "rdfs:Class".freeze
522
+ term :CarUsageType,
523
+ comment: %(A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.).freeze,
524
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
525
+ label: "CarUsageType".freeze,
526
+ subClassOf: "schema:QualitativeValue".freeze,
527
+ type: "rdfs:Class".freeze
499
528
  term :Casino,
500
529
  comment: %(A casino.).freeze,
501
530
  label: "Casino".freeze,
@@ -517,12 +546,12 @@ module RDF
517
546
  subClassOf: "schema:FindAction".freeze,
518
547
  type: "rdfs:Class".freeze
519
548
  term :CheckInAction,
520
- comment: %(The act of an agent communicating \(service provider, social media, etc\) their arrival by registering/confirming for a previously reserved service \(e.g. flight check in\) or at a place \(e.g. hotel\), possibly resulting in a result \(boarding pass, etc\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckOutAction">CheckOutAction</a>: The antagonym of CheckInAction.</li><li><a href="http://schema.org/ArriveAction">ArriveAction</a>: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.</li><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence</li></ul>.).freeze,
549
+ comment: %(The act of an agent communicating \(service provider, social media, etc\) their arrival by registering/confirming for a previously reserved service \(e.g. flight check in\) or at a place \(e.g. hotel\), possibly resulting in a result \(boarding pass, etc\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckOutAction">CheckOutAction</a>: The antonym of CheckInAction.</li><li><a href="http://schema.org/ArriveAction">ArriveAction</a>: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.</li><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence</li></ul>.).freeze,
521
550
  label: "CheckInAction".freeze,
522
551
  subClassOf: "schema:CommunicateAction".freeze,
523
552
  type: "rdfs:Class".freeze
524
553
  term :CheckOutAction,
525
- comment: %(The act of an agent communicating \(service provider, social media, etc\) their departure of a previously reserved service \(e.g. flight check in\) or place \(e.g. hotel\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckInAction">CheckInAction</a>: The antagonym of CheckOutAction.</li><li><a href="http://schema.org/DepartAction">DepartAction</a>: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.</li><li><a href="http://schema.org/CancelAction">CancelAction</a>: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service</li></ul>.).freeze,
554
+ comment: %(The act of an agent communicating \(service provider, social media, etc\) their departure of a previously reserved service \(e.g. flight check in\) or place \(e.g. hotel\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckInAction">CheckInAction</a>: The antonym of CheckOutAction.</li><li><a href="http://schema.org/DepartAction">DepartAction</a>: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.</li><li><a href="http://schema.org/CancelAction">CancelAction</a>: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service</li></ul>.).freeze,
526
555
  label: "CheckOutAction".freeze,
527
556
  subClassOf: "schema:CommunicateAction".freeze,
528
557
  type: "rdfs:Class".freeze
@@ -584,6 +613,7 @@ module RDF
584
613
  term :Code,
585
614
  comment: %(Computer programming source code. Example: Full \(compile ready\) solutions, code snippet samples, scripts, templates.).freeze,
586
615
  label: "Code".freeze,
616
+ "schema:supersededBy" => %(schema:SoftwareSourceCode).freeze,
587
617
  subClassOf: "schema:CreativeWork".freeze,
588
618
  type: "rdfs:Class".freeze
589
619
  term :CollectionPage,
@@ -627,7 +657,7 @@ module RDF
627
657
  subClassOf: "schema:Store".freeze,
628
658
  type: "rdfs:Class".freeze
629
659
  term :ConfirmAction,
630
- comment: %(The act of notifying someone that a future event/action is going to happen as expected.<p>Related actions:</p><ul><li><a href="http://schema.org/CancelAction">CancelAction</a>: The antagonym of ConfirmAction</li></ul>.).freeze,
660
+ comment: %(The act of notifying someone that a future event/action is going to happen as expected.<p>Related actions:</p><ul><li><a href="http://schema.org/CancelAction">CancelAction</a>: The antonym of ConfirmAction</li></ul>.).freeze,
631
661
  label: "ConfirmAction".freeze,
632
662
  subClassOf: "schema:InformAction".freeze,
633
663
  type: "rdfs:Class".freeze
@@ -698,17 +728,49 @@ module RDF
698
728
  label: "CreativeWork".freeze,
699
729
  subClassOf: "schema:Thing".freeze,
700
730
  type: "rdfs:Class".freeze
701
- term :CreditCard,
702
- comment: %(A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.
731
+ term :CreativeWorkSeason,
732
+ comment: %(A media season e.g. tv, radio, video game etc.).freeze,
733
+ label: "CreativeWorkSeason".freeze,
734
+ subClassOf: "schema:CreativeWork".freeze,
735
+ type: "rdfs:Class".freeze
736
+ term :CreativeWorkSeries,
737
+ comment: %(
738
+ A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind.
739
+ CreativeWorkSeries are usually organized into some order, often chronological. Unlike <a href="/ItemList">ItemList</a> which
740
+ is a general purpose data structure for lists of things, the emphasis with
741
+ CreativeWorkSeries is on published materials \(written e.g. books and periodicals,
742
+ or media such as tv, radio and games\).
743
+
744
+ <br/><br/>
703
745
 
704
- Commonly used values:
746
+ Specific subtypes are available for describing <a href="/TVSeries">TVSeries</a>, <a href="/RadioSeries">RadioSeries</a>,
747
+ <a href="/MovieSeries">MovieSeries</a>,
748
+ <a href="/BookSeries">BookSeries</a>,
749
+ <a href="/Periodical">Periodical</a>
750
+ and <a href="/VideoGameSeries">VideoGameSeries</a>. In each case,
751
+ the <a href="/hasPart">hasPart</a> / <a href="/isPartOf">isPartOf</a> properties
752
+ can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely
753
+ just to organize these more specific and practical subtypes.
705
754
 
706
- http://purl.org/goodrelations/v1#AmericanExpress
707
- http://purl.org/goodrelations/v1#DinersClub
708
- http://purl.org/goodrelations/v1#Discover
709
- http://purl.org/goodrelations/v1#JCB
710
- http://purl.org/goodrelations/v1#MasterCard
711
- http://purl.org/goodrelations/v1#VISA
755
+ <br/><br/>
756
+
757
+ It is common for properties applicable to an item from the series to be usefully applied to the containing group.
758
+ Schema.org attempts to anticipate some of these cases, but publishers should be free to apply
759
+ properties of the series parts to the series as a whole wherever they seem appropriate.).freeze,
760
+ label: "CreativeWorkSeries".freeze,
761
+ subClassOf: "schema:CreativeWork".freeze,
762
+ type: "rdfs:Class".freeze
763
+ term :CreditCard,
764
+ comment: %(A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.
765
+ <br />
766
+ Commonly used values:<br />
767
+ <br />
768
+ http://purl.org/goodrelations/v1#AmericanExpress <br />
769
+ http://purl.org/goodrelations/v1#DinersClub <br />
770
+ http://purl.org/goodrelations/v1#Discover <br />
771
+ http://purl.org/goodrelations/v1#JCB <br />
772
+ http://purl.org/goodrelations/v1#MasterCard <br />
773
+ http://purl.org/goodrelations/v1#VISA <br />
712
774
  ).freeze,
713
775
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
714
776
  label: "CreditCard".freeze,
@@ -752,23 +814,22 @@ module RDF
752
814
  term :DataType,
753
815
  comment: %(The basic data types such as Integers, Strings, etc.).freeze,
754
816
  label: "DataType".freeze,
817
+ subClassOf: "rdfs:Class".freeze,
755
818
  type: "rdfs:Class".freeze
756
819
  term :Dataset,
757
820
  comment: %(A body of structured information describing some topic\(s\) of interest.).freeze,
758
821
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
759
822
  label: "Dataset".freeze,
760
- "owl:equivalentClass" => [%(dcat:Dataset).freeze, %(void:Dataset).freeze, %(http://purl.org/dc/dcmitype/Dataset).freeze],
823
+ "owl:equivalentClass" => [%(dcat:Dataset).freeze, %(void:Dataset).freeze, %(dcmitype:Dataset).freeze],
761
824
  subClassOf: "schema:CreativeWork".freeze,
762
825
  type: "rdfs:Class".freeze
763
826
  term :Date,
764
827
  comment: %(A date value in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.).freeze,
765
828
  label: "Date".freeze,
766
- subClassOf: "schema:DataType".freeze,
767
- type: "rdfs:Class".freeze
829
+ type: ["rdfs:Class".freeze, "schema:DataType".freeze]
768
830
  term :DateTime,
769
831
  comment: %(A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|\(+|-\)hh:mm] \(see Chapter 5.4 of ISO 8601\).).freeze,
770
832
  label: "DateTime".freeze,
771
- subClassOf: "schema:DataType".freeze,
772
833
  type: "rdfs:Class".freeze
773
834
  term :DatedMoneySpecification,
774
835
  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,
@@ -777,17 +838,17 @@ module RDF
777
838
  type: "rdfs:Class".freeze
778
839
  term :DayOfWeek,
779
840
  comment: %(The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.
780
-
781
- Commonly used values:
782
-
783
- http://purl.org/goodrelations/v1#Monday
784
- http://purl.org/goodrelations/v1#Tuesday
785
- http://purl.org/goodrelations/v1#Wednesday
786
- http://purl.org/goodrelations/v1#Thursday
787
- http://purl.org/goodrelations/v1#Friday
788
- http://purl.org/goodrelations/v1#Saturday
789
- http://purl.org/goodrelations/v1#Sunday
790
- http://purl.org/goodrelations/v1#PublicHolidays
841
+ <br />
842
+ Commonly used values:<br />
843
+ <br />
844
+ http://purl.org/goodrelations/v1#Monday <br />
845
+ http://purl.org/goodrelations/v1#Tuesday <br />
846
+ http://purl.org/goodrelations/v1#Wednesday <br />
847
+ http://purl.org/goodrelations/v1#Thursday <br />
848
+ http://purl.org/goodrelations/v1#Friday <br />
849
+ http://purl.org/goodrelations/v1#Saturday <br />
850
+ http://purl.org/goodrelations/v1#Sunday <br />
851
+ http://purl.org/goodrelations/v1#PublicHolidays <br />
791
852
  ).freeze,
792
853
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
793
854
  label: "DayOfWeek".freeze,
@@ -826,17 +887,17 @@ module RDF
826
887
  type: "rdfs:Class".freeze
827
888
  term :DeliveryMethod,
828
889
  comment: %(A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.
829
-
830
- Commonly used values:
831
-
832
- http://purl.org/goodrelations/v1#DeliveryModeDirectDownload
833
- http://purl.org/goodrelations/v1#DeliveryModeFreight
834
- http://purl.org/goodrelations/v1#DeliveryModeMail
835
- http://purl.org/goodrelations/v1#DeliveryModeOwnFleet
836
- http://purl.org/goodrelations/v1#DeliveryModePickUp
837
- http://purl.org/goodrelations/v1#DHL
838
- http://purl.org/goodrelations/v1#FederalExpress
839
- http://purl.org/goodrelations/v1#UPS
890
+ <br />
891
+ Commonly used values:<br />
892
+ <br />
893
+ http://purl.org/goodrelations/v1#DeliveryModeDirectDownload <br />
894
+ http://purl.org/goodrelations/v1#DeliveryModeFreight <br />
895
+ http://purl.org/goodrelations/v1#DeliveryModeMail <br />
896
+ http://purl.org/goodrelations/v1#DeliveryModeOwnFleet <br />
897
+ http://purl.org/goodrelations/v1#DeliveryModePickUp <br />
898
+ http://purl.org/goodrelations/v1#DHL <br />
899
+ http://purl.org/goodrelations/v1#FederalExpress <br />
900
+ http://purl.org/goodrelations/v1#UPS <br />
840
901
  ).freeze,
841
902
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
842
903
  label: "DeliveryMethod".freeze,
@@ -931,6 +992,12 @@ module RDF
931
992
  label: "DrinkAction".freeze,
932
993
  subClassOf: "schema:ConsumeAction".freeze,
933
994
  type: "rdfs:Class".freeze
995
+ term :DriveWheelConfigurationValue,
996
+ comment: %(A value indicating which roadwheels will receive torque.).freeze,
997
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
998
+ label: "DriveWheelConfigurationValue".freeze,
999
+ subClassOf: "schema:QualitativeValue".freeze,
1000
+ type: "rdfs:Class".freeze
934
1001
  term :Drug,
935
1002
  comment: %(A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.).freeze,
936
1003
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
@@ -1056,6 +1123,12 @@ module RDF
1056
1123
  label: "Energy".freeze,
1057
1124
  subClassOf: "schema:Quantity".freeze,
1058
1125
  type: "rdfs:Class".freeze
1126
+ term :EngineSpecification,
1127
+ comment: %(Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.).freeze,
1128
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
1129
+ label: "EngineSpecification".freeze,
1130
+ subClassOf: "schema:StructuredValue".freeze,
1131
+ type: "rdfs:Class".freeze
1059
1132
  term :EntertainmentBusiness,
1060
1133
  comment: %(A business providing entertainment.).freeze,
1061
1134
  label: "EntertainmentBusiness".freeze,
@@ -1080,7 +1153,7 @@ module RDF
1080
1153
  term :Event,
1081
1154
  comment: %(An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the 'offers' property. Repeated events may be structured as separate Event objects.).freeze,
1082
1155
  label: "Event".freeze,
1083
- "owl:equivalentClass" => %(http://purl.org/dc/dcmitype/Event).freeze,
1156
+ "owl:equivalentClass" => %(dcmitype:Event).freeze,
1084
1157
  subClassOf: "schema:Thing".freeze,
1085
1158
  type: "rdfs:Class".freeze
1086
1159
  term :EventReservation,
@@ -1239,7 +1312,7 @@ module RDF
1239
1312
  subClassOf: "schema:StructuredValue".freeze,
1240
1313
  type: "rdfs:Class".freeze
1241
1314
  term :GeoShape,
1242
- comment: %(The geographic shape of a place.).freeze,
1315
+ comment: %(The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.).freeze,
1243
1316
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
1244
1317
  label: "GeoShape".freeze,
1245
1318
  subClassOf: "schema:StructuredValue".freeze,
@@ -1372,7 +1445,7 @@ module RDF
1372
1445
  term :ImageObject,
1373
1446
  comment: %(An image file.).freeze,
1374
1447
  label: "ImageObject".freeze,
1375
- "owl:equivalentClass" => %(http://purl.org/dc/dcmitype/Image).freeze,
1448
+ "owl:equivalentClass" => %(dcmitype:Image).freeze,
1376
1449
  subClassOf: "schema:MediaObject".freeze,
1377
1450
  type: "rdfs:Class".freeze
1378
1451
  term :ImagingTest,
@@ -1511,7 +1584,7 @@ module RDF
1511
1584
  subClassOf: "schema:Intangible".freeze,
1512
1585
  type: "rdfs:Class".freeze
1513
1586
  term :LeaveAction,
1514
- comment: %(An agent leaves an event / group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: The antagonym of LeaveAction.</li><li><a href="http://schema.org/UnRegisterAction">UnRegisterAction</a>: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service</li></ul>.).freeze,
1587
+ comment: %(An agent leaves an event / group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: The antonym of LeaveAction.</li><li><a href="http://schema.org/UnRegisterAction">UnRegisterAction</a>: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service</li></ul>.).freeze,
1515
1588
  label: "LeaveAction".freeze,
1516
1589
  subClassOf: "schema:InteractAction".freeze,
1517
1590
  type: "rdfs:Class".freeze
@@ -1927,6 +2000,11 @@ module RDF
1927
2000
  label: "Movie".freeze,
1928
2001
  subClassOf: "schema:CreativeWork".freeze,
1929
2002
  type: "rdfs:Class".freeze
2003
+ term :MovieClip,
2004
+ comment: %(A short segment/part of a movie.).freeze,
2005
+ label: "MovieClip".freeze,
2006
+ subClassOf: "schema:Clip".freeze,
2007
+ type: "rdfs:Class".freeze
1930
2008
  term :MovieRentalStore,
1931
2009
  comment: %(A movie rental store.).freeze,
1932
2010
  label: "MovieRentalStore".freeze,
@@ -1935,7 +2013,7 @@ module RDF
1935
2013
  term :MovieSeries,
1936
2014
  comment: %(A series of movies. Included movies can be indicated with the hasPart property.).freeze,
1937
2015
  label: "MovieSeries".freeze,
1938
- subClassOf: "schema:Series".freeze,
2016
+ subClassOf: "schema:CreativeWorkSeries".freeze,
1939
2017
  type: "rdfs:Class".freeze
1940
2018
  term :MovieTheater,
1941
2019
  comment: %(A movie theater.).freeze,
@@ -2067,8 +2145,7 @@ module RDF
2067
2145
  term :Number,
2068
2146
  comment: %(Data type: Number.).freeze,
2069
2147
  label: "Number".freeze,
2070
- subClassOf: "schema:DataType".freeze,
2071
- type: "rdfs:Class".freeze
2148
+ type: ["rdfs:Class".freeze, "schema:DataType".freeze]
2072
2149
  term :NutritionInformation,
2073
2150
  comment: %(Nutritional information about the recipe.).freeze,
2074
2151
  label: "NutritionInformation".freeze,
@@ -2126,6 +2203,11 @@ module RDF
2126
2203
  label: "OrderAction".freeze,
2127
2204
  subClassOf: "schema:TradeAction".freeze,
2128
2205
  type: "rdfs:Class".freeze
2206
+ term :OrderItem,
2207
+ comment: %(An order item is a line of an order. It includes the quantity and shipping details of a bought offer.).freeze,
2208
+ label: "OrderItem".freeze,
2209
+ subClassOf: "schema:Intangible".freeze,
2210
+ type: "rdfs:Class".freeze
2129
2211
  term :OrderStatus,
2130
2212
  comment: %(Enumerated status values for Order.).freeze,
2131
2213
  label: "OrderStatus".freeze,
@@ -2180,12 +2262,12 @@ module RDF
2180
2262
  type: "rdfs:Class".freeze
2181
2263
  term :ParcelService,
2182
2264
  comment: %(A private parcel service as the delivery mode available for a certain offer.
2183
-
2184
- Commonly used values:
2185
-
2186
- http://purl.org/goodrelations/v1#DHL
2187
- http://purl.org/goodrelations/v1#FederalExpress
2188
- http://purl.org/goodrelations/v1#UPS
2265
+ <br />
2266
+ Commonly used values:<br />
2267
+ <br />
2268
+ http://purl.org/goodrelations/v1#DHL <br />
2269
+ http://purl.org/goodrelations/v1#FederalExpress <br />
2270
+ http://purl.org/goodrelations/v1#UPS <br />
2189
2271
  ).freeze,
2190
2272
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
2191
2273
  label: "ParcelService".freeze,
@@ -2230,18 +2312,18 @@ module RDF
2230
2312
  type: "rdfs:Class".freeze
2231
2313
  term :PaymentMethod,
2232
2314
  comment: %(A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.
2233
-
2234
- Commonly used values:
2235
-
2236
- http://purl.org/goodrelations/v1#ByBankTransferInAdvance
2237
- http://purl.org/goodrelations/v1#ByInvoice
2238
- http://purl.org/goodrelations/v1#Cash
2239
- http://purl.org/goodrelations/v1#CheckInAdvance
2240
- http://purl.org/goodrelations/v1#COD
2241
- http://purl.org/goodrelations/v1#DirectDebit
2242
- http://purl.org/goodrelations/v1#GoogleCheckout
2243
- http://purl.org/goodrelations/v1#PayPal
2244
- http://purl.org/goodrelations/v1#PaySwarm
2315
+ <br />
2316
+ Commonly used values:<br />
2317
+ <br />
2318
+ http://purl.org/goodrelations/v1#ByBankTransferInAdvance <br />
2319
+ http://purl.org/goodrelations/v1#ByInvoice <br />
2320
+ http://purl.org/goodrelations/v1#Cash <br />
2321
+ http://purl.org/goodrelations/v1#CheckInAdvance <br />
2322
+ http://purl.org/goodrelations/v1#COD <br />
2323
+ http://purl.org/goodrelations/v1#DirectDebit <br />
2324
+ http://purl.org/goodrelations/v1#GoogleCheckout <br />
2325
+ http://purl.org/goodrelations/v1#PayPal <br />
2326
+ http://purl.org/goodrelations/v1#PaySwarm <br />
2245
2327
  ).freeze,
2246
2328
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
2247
2329
  label: "PaymentMethod".freeze,
@@ -2279,7 +2361,7 @@ module RDF
2279
2361
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
2280
2362
  label: "Periodical".freeze,
2281
2363
  "owl:equivalentClass" => %(http://purl.org/ontology/bibo/Periodical).freeze,
2282
- subClassOf: "schema:Series".freeze,
2364
+ subClassOf: "schema:CreativeWorkSeries".freeze,
2283
2365
  type: "rdfs:Class".freeze
2284
2366
  term :Permit,
2285
2367
  comment: %(A permit issued by an organization, e.g. a parking pass.).freeze,
@@ -2442,7 +2524,7 @@ module RDF
2442
2524
  type: "rdfs:Class".freeze
2443
2525
  term :ProgramMembership,
2444
2526
  comment: %(Used to describe membership in a loyalty programs \(e.g. "StarAliance"\), traveler clubs \(e.g. "AAA"\), purchase clubs \("Safeway Club"\), etc.).freeze,
2445
- label: "Program Membership".freeze,
2527
+ label: "ProgramMembership".freeze,
2446
2528
  subClassOf: "schema:Intangible".freeze,
2447
2529
  type: "rdfs:Class".freeze
2448
2530
  term :Property,
@@ -2450,6 +2532,15 @@ module RDF
2450
2532
  label: "Property".freeze,
2451
2533
  subClassOf: "schema:Intangible".freeze,
2452
2534
  type: "rdfs:Class".freeze
2535
+ term :PropertyValue,
2536
+ comment: %(A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.
2537
+ <br/><br/>
2538
+ Always use specific schema.org properties when a\) they exist and b\) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.
2539
+ ).freeze,
2540
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
2541
+ label: "PropertyValue".freeze,
2542
+ subClassOf: "schema:StructuredValue".freeze,
2543
+ type: "rdfs:Class".freeze
2453
2544
  term :PropertyValueSpecification,
2454
2545
  comment: %(A Property value specification.).freeze,
2455
2546
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass).freeze,
@@ -2537,6 +2628,11 @@ module RDF
2537
2628
  label: "RadiationTherapy".freeze,
2538
2629
  subClassOf: "schema:MedicalTherapy".freeze,
2539
2630
  type: "rdfs:Class".freeze
2631
+ term :RadioChannel,
2632
+ comment: %(A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.).freeze,
2633
+ label: "RadioChannel".freeze,
2634
+ subClassOf: "schema:BroadcastChannel".freeze,
2635
+ type: "rdfs:Class".freeze
2540
2636
  term :RadioClip,
2541
2637
  comment: %(A short radio program or a segment/part of a radio program.).freeze,
2542
2638
  label: "RadioClip".freeze,
@@ -2550,12 +2646,12 @@ module RDF
2550
2646
  term :RadioSeason,
2551
2647
  comment: %(Season dedicated to radio broadcast and associated online delivery.).freeze,
2552
2648
  label: "RadioSeason".freeze,
2553
- subClassOf: "schema:Season".freeze,
2649
+ subClassOf: "schema:CreativeWorkSeason".freeze,
2554
2650
  type: "rdfs:Class".freeze
2555
2651
  term :RadioSeries,
2556
- comment: %(Series dedicated to radio broadcast and associated online delivery.).freeze,
2652
+ comment: %(CreativeWorkSeries dedicated to radio broadcast and associated online delivery.).freeze,
2557
2653
  label: "RadioSeries".freeze,
2558
- subClassOf: "schema:Series".freeze,
2654
+ subClassOf: "schema:CreativeWorkSeries".freeze,
2559
2655
  type: "rdfs:Class".freeze
2560
2656
  term :RadioStation,
2561
2657
  comment: %(A radio station.).freeze,
@@ -2608,7 +2704,7 @@ module RDF
2608
2704
  subClassOf: "schema:InteractAction".freeze,
2609
2705
  type: "rdfs:Class".freeze
2610
2706
  term :RejectAction,
2611
- comment: %(The act of rejecting to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/AcceptAction">AcceptAction</a>: The antagonym of RejectAction</li></ul>.).freeze,
2707
+ comment: %(The act of rejecting to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/AcceptAction">AcceptAction</a>: The antonym of RejectAction</li></ul>.).freeze,
2612
2708
  label: "RejectAction".freeze,
2613
2709
  subClassOf: "schema:AllocateAction".freeze,
2614
2710
  type: "rdfs:Class".freeze
@@ -2739,6 +2835,11 @@ module RDF
2739
2835
  label: "School".freeze,
2740
2836
  subClassOf: "schema:EducationalOrganization".freeze,
2741
2837
  type: "rdfs:Class".freeze
2838
+ term :ScreeningEvent,
2839
+ comment: %(A screening of a movie or other video.).freeze,
2840
+ label: "ScreeningEvent".freeze,
2841
+ subClassOf: "schema:Event".freeze,
2842
+ type: "rdfs:Class".freeze
2742
2843
  term :Sculpture,
2743
2844
  comment: %(A piece of sculpture.).freeze,
2744
2845
  label: "Sculpture".freeze,
@@ -2762,6 +2863,7 @@ module RDF
2762
2863
  term :Season,
2763
2864
  comment: %(A media season e.g. tv, radio, video game etc.).freeze,
2764
2865
  label: "Season".freeze,
2866
+ "schema:supersededBy" => %(schema:CreativeWorkSeason).freeze,
2765
2867
  subClassOf: "schema:CreativeWork".freeze,
2766
2868
  type: "rdfs:Class".freeze
2767
2869
  term :Seat,
@@ -2786,29 +2888,9 @@ module RDF
2786
2888
  type: "rdfs:Class".freeze
2787
2889
  term :Series,
2788
2890
  comment: %(
2789
- A Series in schema.org is a group of related items, typically but not necessarily of the same kind.
2790
- Series are usually organized into some order, often chronological. Unlike <a href="/ItemList">ItemList</a> which
2791
- is a general purpose data structure for lists of things, the emphasis with Series
2792
- is on published materials \(written e.g. books and periodicals, or media such as
2793
- tv, radio and games\).
2794
-
2795
- <br/><br/>
2796
-
2797
- Specific subtypes are available for describing <a href="/TVSeries">TVSeries</a>, <a href="/RadioSeries">RadioSeries</a>,
2798
- <a href="/MovieSeries">MovieSeries</a>,
2799
- <a href="/BookSeries">BookSeries</a>,
2800
- <a href="/Periodical">Periodical</a>
2801
- and <a href="/VideoGameSeries">VideoGameSeries</a>. In each case,
2802
- the <a href="/hasPart">hasPart</a> / <a href="/isPartOf">isPartOf</a> properties
2803
- can be used to relate the Series to its parts. The general Series type serves largely
2804
- just to organize these more specific and practical subtypes.
2805
-
2806
- <br/><br/>
2807
-
2808
- It is common for properties applicable to an item from the series to be usefully applied to the containing group.
2809
- Schema.org attempts to anticipate some of these cases, but publishers should be free to apply
2810
- properties of the series parts to the series as a whole wherever they seem appropriate.).freeze,
2891
+ A Series in schema.org is a group of related items, typically but not necessarily of the same kind. ).freeze,
2811
2892
  label: "Series".freeze,
2893
+ "schema:supersededBy" => %(schema:CreativeWorkSeries).freeze,
2812
2894
  subClassOf: "schema:CreativeWork".freeze,
2813
2895
  type: "rdfs:Class".freeze
2814
2896
  term :Service,
@@ -2861,6 +2943,11 @@ module RDF
2861
2943
  label: "SoftwareApplication".freeze,
2862
2944
  subClassOf: "schema:CreativeWork".freeze,
2863
2945
  type: "rdfs:Class".freeze
2946
+ term :SoftwareSourceCode,
2947
+ comment: %(Computer programming source code. Example: Full \(compile ready\) solutions, code snippet samples, scripts, templates.).freeze,
2948
+ label: "SoftwareSourceCode".freeze,
2949
+ subClassOf: "schema:CreativeWork".freeze,
2950
+ type: "rdfs:Class".freeze
2864
2951
  term :SomeProducts,
2865
2952
  comment: %(A placeholder for multiple similar products of the same kind.).freeze,
2866
2953
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
@@ -2912,13 +2999,19 @@ module RDF
2912
2999
  label: "State".freeze,
2913
3000
  subClassOf: "schema:AdministrativeArea".freeze,
2914
3001
  type: "rdfs:Class".freeze
3002
+ term :SteeringPositionValue,
3003
+ comment: %(A value indicating a steering position.).freeze,
3004
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
3005
+ label: "SteeringPositionValue".freeze,
3006
+ subClassOf: "schema:QualitativeValue".freeze,
3007
+ type: "rdfs:Class".freeze
2915
3008
  term :Store,
2916
3009
  comment: %(A retail good store.).freeze,
2917
3010
  label: "Store".freeze,
2918
3011
  subClassOf: "schema:LocalBusiness".freeze,
2919
3012
  type: "rdfs:Class".freeze
2920
3013
  term :StructuredValue,
2921
- comment: %(Structured values are strings&#x2014;for example, addresses&#x2014;that have certain constraints on their structure.).freeze,
3014
+ comment: %(Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.).freeze,
2922
3015
  label: "StructuredValue".freeze,
2923
3016
  subClassOf: "schema:Intangible".freeze,
2924
3017
  type: "rdfs:Class".freeze
@@ -2961,12 +3054,12 @@ module RDF
2961
3054
  term :TVSeason,
2962
3055
  comment: %(Season dedicated to TV broadcast and associated online delivery.).freeze,
2963
3056
  label: "TVSeason".freeze,
2964
- subClassOf: ["schema:CreativeWork".freeze, "schema:Season".freeze],
3057
+ subClassOf: ["schema:CreativeWork".freeze, "schema:CreativeWorkSeason".freeze],
2965
3058
  type: "rdfs:Class".freeze
2966
3059
  term :TVSeries,
2967
- comment: %(Series dedicated to TV broadcast and associated online delivery.).freeze,
3060
+ comment: %(CreativeWorkSeries dedicated to TV broadcast and associated online delivery.).freeze,
2968
3061
  label: "TVSeries".freeze,
2969
- subClassOf: ["schema:CreativeWork".freeze, "schema:Series".freeze],
3062
+ subClassOf: ["schema:CreativeWork".freeze, "schema:CreativeWorkSeries".freeze],
2970
3063
  type: "rdfs:Class".freeze
2971
3064
  term :Table,
2972
3065
  comment: %(A table on a Web page.).freeze,
@@ -2986,6 +3079,7 @@ module RDF
2986
3079
  term :Taxi,
2987
3080
  comment: %(A taxi.).freeze,
2988
3081
  label: "Taxi".freeze,
3082
+ "schema:supersededBy" => %(schema:TaxiService).freeze,
2989
3083
  subClassOf: "schema:Service".freeze,
2990
3084
  type: "rdfs:Class".freeze
2991
3085
  term :TaxiReservation,
@@ -2993,6 +3087,11 @@ module RDF
2993
3087
  label: " TaxiReservation".freeze,
2994
3088
  subClassOf: "schema:Reservation".freeze,
2995
3089
  type: "rdfs:Class".freeze
3090
+ term :TaxiService,
3091
+ comment: %(A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.).freeze,
3092
+ label: "TaxiService".freeze,
3093
+ subClassOf: "schema:Service".freeze,
3094
+ type: "rdfs:Class".freeze
2996
3095
  term :TaxiStand,
2997
3096
  comment: %(A taxi stand.).freeze,
2998
3097
  label: "TaxiStand".freeze,
@@ -3003,6 +3102,11 @@ module RDF
3003
3102
  label: "TechArticle".freeze,
3004
3103
  subClassOf: "schema:Article".freeze,
3005
3104
  type: "rdfs:Class".freeze
3105
+ term :TelevisionChannel,
3106
+ comment: %(A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.).freeze,
3107
+ label: "TelevisionChannel".freeze,
3108
+ subClassOf: "schema:BroadcastChannel".freeze,
3109
+ type: "rdfs:Class".freeze
3006
3110
  term :TelevisionStation,
3007
3111
  comment: %(A television station.).freeze,
3008
3112
  label: "TelevisionStation".freeze,
@@ -3016,8 +3120,7 @@ module RDF
3016
3120
  term :Text,
3017
3121
  comment: %(Data type: Text.).freeze,
3018
3122
  label: "Text".freeze,
3019
- subClassOf: "schema:DataType".freeze,
3020
- type: "rdfs:Class".freeze
3123
+ type: ["rdfs:Class".freeze, "schema:DataType".freeze]
3021
3124
  term :TheaterEvent,
3022
3125
  comment: %(Event type: Theater performance.).freeze,
3023
3126
  label: "TheaterEvent".freeze,
@@ -3051,8 +3154,7 @@ module RDF
3051
3154
  term :Time,
3052
3155
  comment: %(A point in time recurring on multiple days in the form hh:mm:ss[Z|\(+|-\)hh:mm] \(see <a href="http://www.w3.org/TR/xmlschema-2/#time">XML schema for details</a>\).).freeze,
3053
3156
  label: "Time".freeze,
3054
- subClassOf: "schema:DataType".freeze,
3055
- type: "rdfs:Class".freeze
3157
+ type: ["rdfs:Class".freeze, "schema:DataType".freeze]
3056
3158
  term :TipAction,
3057
3159
  comment: %(The act of giving money voluntarily to a beneficiary in recognition of services rendered.).freeze,
3058
3160
  label: "TipAction".freeze,
@@ -3100,7 +3202,7 @@ module RDF
3100
3202
  type: "rdfs:Class".freeze
3101
3203
  term :TrainTrip,
3102
3204
  comment: %(A trip on a commercial train line.).freeze,
3103
- label: "Train Trip".freeze,
3205
+ label: "TrainTrip".freeze,
3104
3206
  subClassOf: "schema:Intangible".freeze,
3105
3207
  type: "rdfs:Class".freeze
3106
3208
  term :TransferAction,
@@ -3136,7 +3238,7 @@ module RDF
3136
3238
  subClassOf: "schema:Text".freeze,
3137
3239
  type: "rdfs:Class".freeze
3138
3240
  term :UnRegisterAction,
3139
- comment: %(The act of un-registering from a service.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Antagonym of UnRegisterAction.</li><li><a href="http://schema.org/Leave">Leave</a>: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people</li></ul>.).freeze,
3241
+ comment: %(The act of un-registering from a service.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: antonym of UnRegisterAction.</li><li><a href="http://schema.org/Leave">Leave</a>: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people</li></ul>.).freeze,
3140
3242
  label: "UnRegisterAction".freeze,
3141
3243
  subClassOf: "schema:InteractAction".freeze,
3142
3244
  type: "rdfs:Class".freeze
@@ -3157,58 +3259,78 @@ module RDF
3157
3259
  subClassOf: "schema:ConsumeAction".freeze,
3158
3260
  type: "rdfs:Class".freeze
3159
3261
  term :UserBlocks,
3160
- comment: %(User interaction: Block this content.).freeze,
3262
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3263
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3264
+ ).freeze,
3161
3265
  label: "UserBlocks".freeze,
3162
3266
  subClassOf: "schema:UserInteraction".freeze,
3163
3267
  type: "rdfs:Class".freeze
3164
3268
  term :UserCheckins,
3165
- comment: %(User interaction: Check-in at a place.).freeze,
3269
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3270
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3271
+ ).freeze,
3166
3272
  label: "UserCheckins".freeze,
3167
3273
  subClassOf: "schema:UserInteraction".freeze,
3168
3274
  type: "rdfs:Class".freeze
3169
3275
  term :UserComments,
3170
- comment: %(The UserInteraction event in which a user comments on an item.).freeze,
3276
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3277
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3278
+ ).freeze,
3171
3279
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
3172
3280
  label: "UserComments".freeze,
3173
3281
  subClassOf: "schema:UserInteraction".freeze,
3174
3282
  type: "rdfs:Class".freeze
3175
3283
  term :UserDownloads,
3176
- comment: %(User interaction: Download of an item.).freeze,
3284
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3285
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3286
+ ).freeze,
3177
3287
  label: "UserDownloads".freeze,
3178
3288
  subClassOf: "schema:UserInteraction".freeze,
3179
3289
  type: "rdfs:Class".freeze
3180
3290
  term :UserInteraction,
3181
- comment: %(A user interacting with a page.).freeze,
3291
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3292
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3293
+ ).freeze,
3182
3294
  label: "UserInteraction".freeze,
3183
3295
  subClassOf: "schema:Event".freeze,
3184
3296
  type: "rdfs:Class".freeze
3185
3297
  term :UserLikes,
3186
- comment: %(User interaction: Like an item.).freeze,
3298
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3299
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3300
+ ).freeze,
3187
3301
  label: "UserLikes".freeze,
3188
3302
  subClassOf: "schema:UserInteraction".freeze,
3189
3303
  type: "rdfs:Class".freeze
3190
3304
  term :UserPageVisits,
3191
- comment: %(User interaction: Visit to a web page.).freeze,
3305
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3306
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3307
+ ).freeze,
3192
3308
  label: "UserPageVisits".freeze,
3193
3309
  subClassOf: "schema:UserInteraction".freeze,
3194
3310
  type: "rdfs:Class".freeze
3195
3311
  term :UserPlays,
3196
- comment: %(User interaction: Play count of an item, for example a video or a song.).freeze,
3312
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3313
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3314
+ ).freeze,
3197
3315
  label: "UserPlays".freeze,
3198
3316
  subClassOf: "schema:UserInteraction".freeze,
3199
3317
  type: "rdfs:Class".freeze
3200
3318
  term :UserPlusOnes,
3201
- comment: %(User interaction: +1.).freeze,
3319
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3320
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3321
+ ).freeze,
3202
3322
  label: "UserPlusOnes".freeze,
3203
3323
  subClassOf: "schema:UserInteraction".freeze,
3204
3324
  type: "rdfs:Class".freeze
3205
3325
  term :UserTweets,
3206
- comment: %(User interaction: Tweets.).freeze,
3326
+ comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use
3327
+ <a href="/Action">Action</a>-based vocabulary, alongside types such as <a href="/Comment">Comment</a>.
3328
+ ).freeze,
3207
3329
  label: "UserTweets".freeze,
3208
3330
  subClassOf: "schema:UserInteraction".freeze,
3209
3331
  type: "rdfs:Class".freeze
3210
3332
  term :Vehicle,
3211
- comment: %(A vehicle.).freeze,
3333
+ comment: %(A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.).freeze,
3212
3334
  label: "Vehicle".freeze,
3213
3335
  subClassOf: "schema:Product".freeze,
3214
3336
  type: "rdfs:Class".freeze
@@ -3239,10 +3361,15 @@ module RDF
3239
3361
  label: "VideoGame".freeze,
3240
3362
  subClassOf: ["schema:SoftwareApplication".freeze, "schema:Game".freeze],
3241
3363
  type: "rdfs:Class".freeze
3364
+ term :VideoGameClip,
3365
+ comment: %(A short segment/part of a video game.).freeze,
3366
+ label: "VideoGameClip".freeze,
3367
+ subClassOf: "schema:Clip".freeze,
3368
+ type: "rdfs:Class".freeze
3242
3369
  term :VideoGameSeries,
3243
3370
  comment: %(A <a href="/VideoGame">video game</a> series.).freeze,
3244
3371
  label: "VideoGameSeries".freeze,
3245
- subClassOf: "schema:Series".freeze,
3372
+ subClassOf: "schema:CreativeWorkSeries".freeze,
3246
3373
  type: "rdfs:Class".freeze
3247
3374
  term :VideoObject,
3248
3375
  comment: %(A video file.).freeze,
@@ -3313,12 +3440,12 @@ module RDF
3313
3440
  type: "rdfs:Class".freeze
3314
3441
  term :WarrantyScope,
3315
3442
  comment: %(A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.
3316
-
3317
- Commonly used values:
3318
-
3319
- http://purl.org/goodrelations/v1#Labor-BringIn
3320
- http://purl.org/goodrelations/v1#PartsAndLabor-BringIn
3321
- http://purl.org/goodrelations/v1#PartsAndLabor-PickUp
3443
+ <br />
3444
+ Commonly used values:<br />
3445
+ <br />
3446
+ http://purl.org/goodrelations/v1#Labor-BringIn <br />
3447
+ http://purl.org/goodrelations/v1#PartsAndLabor-BringIn <br />
3448
+ http://purl.org/goodrelations/v1#PartsAndLabor-PickUp <br />
3322
3449
  ).freeze,
3323
3450
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
3324
3451
  label: "WarrantyScope".freeze,
@@ -3472,6 +3599,19 @@ module RDF
3472
3599
  rangeIncludes: "schema:Text".freeze,
3473
3600
  "schema:supersededBy" => %(schema:muscleAction).freeze,
3474
3601
  type: "rdf:Property".freeze
3602
+ property :actionApplication,
3603
+ comment: %(An application that can complete the request.).freeze,
3604
+ domainIncludes: "schema:EntryPoint".freeze,
3605
+ label: "actionApplication".freeze,
3606
+ rangeIncludes: "schema:SoftwareApplication".freeze,
3607
+ type: "rdf:Property".freeze
3608
+ property :actionOption,
3609
+ comment: %(A sub property of object. The options subject to this action.).freeze,
3610
+ domainIncludes: "schema:ChooseAction".freeze,
3611
+ label: "actionOption".freeze,
3612
+ rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze],
3613
+ subPropertyOf: "schema:object".freeze,
3614
+ type: "rdf:Property".freeze
3475
3615
  property :actionStatus,
3476
3616
  comment: %(Indicates the current disposition of the Action.).freeze,
3477
3617
  domainIncludes: "schema:Action".freeze,
@@ -3498,7 +3638,7 @@ module RDF
3498
3638
  type: "rdf:Property".freeze
3499
3639
  property :actor,
3500
3640
  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,
3501
- 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],
3641
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:Clip".freeze],
3502
3642
  label: "actor".freeze,
3503
3643
  rangeIncludes: "schema:Person".freeze,
3504
3644
  type: "rdf:Property".freeze
@@ -3527,6 +3667,15 @@ module RDF
3527
3667
  label: "additionalNumberOfGuests".freeze,
3528
3668
  rangeIncludes: "schema:Number".freeze,
3529
3669
  type: "rdf:Property".freeze
3670
+ property :additionalProperty,
3671
+ comment: %(A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org. <br /><br />
3672
+
3673
+ Note: Publishers should be aware that applications designed to use specific schema.org properties \(e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...\) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.
3674
+ ).freeze,
3675
+ domainIncludes: ["schema:Product".freeze, "schema:Place".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze],
3676
+ label: "additionalProperty".freeze,
3677
+ rangeIncludes: "schema:PropertyValue".freeze,
3678
+ type: "rdf:Property".freeze
3530
3679
  property :additionalType,
3531
3680
  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,
3532
3681
  domainIncludes: "schema:Thing".freeze,
@@ -3602,7 +3751,7 @@ module RDF
3602
3751
  type: "rdf:Property".freeze
3603
3752
  property :aggregateRating,
3604
3753
  comment: %(The overall rating, based on a collection of reviews or ratings, of the item.).freeze,
3605
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Offer".freeze, "schema:Product".freeze],
3754
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Brand".freeze, "schema:Service".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Offer".freeze, "schema:Product".freeze],
3606
3755
  label: "aggregateRating".freeze,
3607
3756
  rangeIncludes: "schema:AggregateRating".freeze,
3608
3757
  type: "rdf:Property".freeze
@@ -3725,6 +3874,7 @@ module RDF
3725
3874
  domainIncludes: "schema:EntryPoint".freeze,
3726
3875
  label: "application".freeze,
3727
3876
  rangeIncludes: "schema:SoftwareApplication".freeze,
3877
+ "schema:supersededBy" => %(schema:actionApplication).freeze,
3728
3878
  type: "rdf:Property".freeze
3729
3879
  property :applicationCategory,
3730
3880
  comment: %(Type of software application, e.g. "Game, Multimedia".).freeze,
@@ -3761,6 +3911,7 @@ module RDF
3761
3911
  domainIncludes: "schema:BroadcastService".freeze,
3762
3912
  label: "area".freeze,
3763
3913
  rangeIncludes: "schema:Place".freeze,
3914
+ "schema:supersededBy" => %(schema:serviceArea).freeze,
3764
3915
  type: "rdf:Property".freeze
3765
3916
  property :areaServed,
3766
3917
  comment: %(The location served by this contact point \(e.g., a phone number intended for Europeans vs. North Americans or only within the United States\).).freeze,
@@ -3771,7 +3922,7 @@ module RDF
3771
3922
  property :arrivalAirport,
3772
3923
  comment: %(The airport where the flight terminates.).freeze,
3773
3924
  domainIncludes: "schema:Flight".freeze,
3774
- label: "departureAirport".freeze,
3925
+ label: "arrivalAirport".freeze,
3775
3926
  rangeIncludes: "schema:Airport".freeze,
3776
3927
  type: "rdf:Property".freeze
3777
3928
  property :arrivalBusStop,
@@ -3816,6 +3967,12 @@ module RDF
3816
3967
  label: "artEdition".freeze,
3817
3968
  rangeIncludes: ["schema:Text".freeze, "schema:Integer".freeze],
3818
3969
  type: "rdf:Property".freeze
3970
+ property :artMedium,
3971
+ comment: %(The material used. \(e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.\)).freeze,
3972
+ domainIncludes: "schema:VisualArtwork".freeze,
3973
+ label: "artMedium".freeze,
3974
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
3975
+ type: "rdf:Property".freeze
3819
3976
  property :arterialBranch,
3820
3977
  comment: %(The branches that comprise the arterial structure.).freeze,
3821
3978
  domainIncludes: "schema:Artery".freeze,
@@ -3840,6 +3997,12 @@ module RDF
3840
3997
  label: "articleSection".freeze,
3841
3998
  rangeIncludes: "schema:Text".freeze,
3842
3999
  type: "rdf:Property".freeze
4000
+ property :artworkSurface,
4001
+ comment: %(The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.).freeze,
4002
+ domainIncludes: "schema:VisualArtwork".freeze,
4003
+ label: "artworkSurface".freeze,
4004
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
4005
+ type: "rdf:Property".freeze
3843
4006
  property :aspect,
3844
4007
  comment: %(An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.).freeze,
3845
4008
  domainIncludes: "schema:MedicalWebPage".freeze,
@@ -3851,6 +4014,7 @@ module RDF
3851
4014
  domainIncludes: "schema:APIReference".freeze,
3852
4015
  label: "assembly".freeze,
3853
4016
  rangeIncludes: "schema:Text".freeze,
4017
+ "schema:supersededBy" => %(schema:executableLibraryName).freeze,
3854
4018
  type: "rdf:Property".freeze
3855
4019
  property :assemblyVersion,
3856
4020
  comment: %(Associated product/technology version. e.g., .NET Framework 4.5.).freeze,
@@ -3902,7 +4066,7 @@ module RDF
3902
4066
  "schema:supersededBy" => %(schema:attendee).freeze,
3903
4067
  type: "rdf:Property".freeze
3904
4068
  property :audience,
3905
- comment: %(The intended audience of the item, i.e. the group for whom the item was created.).freeze,
4069
+ comment: %(An intended audience, i.e. a group for whom something was created.).freeze,
3906
4070
  domainIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze, "schema:PlayAction".freeze],
3907
4071
  label: "audience".freeze,
3908
4072
  rangeIncludes: "schema:Audience".freeze,
@@ -3979,6 +4143,12 @@ module RDF
3979
4143
  label: "availableLanguage".freeze,
3980
4144
  rangeIncludes: "schema:Language".freeze,
3981
4145
  type: "rdf:Property".freeze
4146
+ property :availableOnDevice,
4147
+ comment: %(Device required to run the application. Used in cases where a specific make/model is required to run the application.).freeze,
4148
+ domainIncludes: "schema:SoftwareApplication".freeze,
4149
+ label: "availableOnDevice".freeze,
4150
+ rangeIncludes: "schema:Text".freeze,
4151
+ type: "rdf:Property".freeze
3982
4152
  property :availableService,
3983
4153
  comment: %(A medical service available from this provider.).freeze,
3984
4154
  domainIncludes: ["schema:Hospital".freeze, "schema:MedicalClinic".freeze, "schema:Physician".freeze],
@@ -4004,14 +4174,14 @@ module RDF
4004
4174
  rangeIncludes: "schema:DateTime".freeze,
4005
4175
  type: "rdf:Property".freeze
4006
4176
  property :award,
4007
- comment: %(An award won by this person or for this creative work.).freeze,
4008
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Person".freeze],
4177
+ comment: %(An award won by or for this item.).freeze,
4178
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Product".freeze],
4009
4179
  label: "award".freeze,
4010
4180
  rangeIncludes: "schema:Text".freeze,
4011
4181
  type: "rdf:Property".freeze
4012
4182
  property :awards,
4013
- comment: %(Awards won by this person or for this creative work.).freeze,
4014
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Person".freeze],
4183
+ comment: %(Awards won by or for this item.).freeze,
4184
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Product".freeze],
4015
4185
  label: "awards".freeze,
4016
4186
  rangeIncludes: "schema:Text".freeze,
4017
4187
  "schema:supersededBy" => %(schema:award).freeze,
@@ -4040,6 +4210,7 @@ module RDF
4040
4210
  domainIncludes: "schema:JobPosting".freeze,
4041
4211
  label: "benefits".freeze,
4042
4212
  rangeIncludes: "schema:Text".freeze,
4213
+ "schema:supersededBy" => %(schema:jobBenefits).freeze,
4043
4214
  type: "rdf:Property".freeze
4044
4215
  property :bestRating,
4045
4216
  comment: %(The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.).freeze,
@@ -4114,6 +4285,12 @@ module RDF
4114
4285
  label: "boardingGroup".freeze,
4115
4286
  rangeIncludes: "schema:Text".freeze,
4116
4287
  type: "rdf:Property".freeze
4288
+ property :boardingPolicy,
4289
+ comment: %(The type of boarding policy used by the airline \(e.g. zone-based or group-based\).).freeze,
4290
+ domainIncludes: ["schema:Airline".freeze, "schema:Flight".freeze],
4291
+ label: "boardingPolicy".freeze,
4292
+ rangeIncludes: "schema:BoardingPolicyType".freeze,
4293
+ type: "rdf:Property".freeze
4117
4294
  property :bodyLocation,
4118
4295
  comment: %(Location in the body of the anatomical structure.).freeze,
4119
4296
  domainIncludes: "schema:AnatomicalStructure".freeze,
@@ -4153,7 +4330,7 @@ module RDF
4153
4330
  subPropertyOf: "schema:participant".freeze,
4154
4331
  type: "rdf:Property".freeze
4155
4332
  property :box,
4156
- 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,
4333
+ comment: %(A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.).freeze,
4157
4334
  domainIncludes: "schema:GeoShape".freeze,
4158
4335
  label: "box".freeze,
4159
4336
  rangeIncludes: "schema:Text".freeze,
@@ -4169,6 +4346,7 @@ module RDF
4169
4346
  domainIncludes: "schema:LocalBusiness".freeze,
4170
4347
  label: "branchOf".freeze,
4171
4348
  rangeIncludes: "schema:Organization".freeze,
4349
+ "schema:supersededBy" => %(schema:parentOrganization).freeze,
4172
4350
  type: "rdf:Property".freeze
4173
4351
  property :brand,
4174
4352
  comment: %(The brand\(s\) associated with a product or service, or the brand\(s\) maintained by an organization or business person.).freeze,
@@ -4188,6 +4366,36 @@ module RDF
4188
4366
  label: "breastfeedingWarning".freeze,
4189
4367
  rangeIncludes: "schema:Text".freeze,
4190
4368
  type: "rdf:Property".freeze
4369
+ property :broadcastAffiliateOf,
4370
+ comment: %(The media network\(s\) whose content is broadcast on this station.).freeze,
4371
+ domainIncludes: "schema:BroadcastService".freeze,
4372
+ label: "broadcastAffiliateOf".freeze,
4373
+ rangeIncludes: "schema:Organization".freeze,
4374
+ type: "rdf:Property".freeze
4375
+ property :broadcastChannelId,
4376
+ comment: %(The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.).freeze,
4377
+ domainIncludes: "schema:BroadcastChannel".freeze,
4378
+ label: "broadcastChannelId".freeze,
4379
+ rangeIncludes: "schema:Text".freeze,
4380
+ type: "rdf:Property".freeze
4381
+ property :broadcastDisplayName,
4382
+ comment: %(The name displayed in the channel guide. For many US affiliates, it is the network name.).freeze,
4383
+ domainIncludes: "schema:BroadcastService".freeze,
4384
+ label: "broadcastDisplayName".freeze,
4385
+ rangeIncludes: "schema:Text".freeze,
4386
+ type: "rdf:Property".freeze
4387
+ property :broadcastServiceTier,
4388
+ comment: %(The type of service required to have access to the channel \(e.g. Standard or Premium\).).freeze,
4389
+ domainIncludes: "schema:BroadcastChannel".freeze,
4390
+ label: "broadcastServiceTier".freeze,
4391
+ rangeIncludes: "schema:Text".freeze,
4392
+ type: "rdf:Property".freeze
4393
+ property :broadcastTimezone,
4394
+ comment: %(The timezone in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 format</a> for which the service bases its broadcasts.).freeze,
4395
+ domainIncludes: "schema:BroadcastService".freeze,
4396
+ label: "timezone".freeze,
4397
+ rangeIncludes: "schema:Text".freeze,
4398
+ type: "rdf:Property".freeze
4191
4399
  property :broadcaster,
4192
4400
  comment: %(The organization owning or operating the broadcast service.).freeze,
4193
4401
  domainIncludes: "schema:BroadcastService".freeze,
@@ -4262,6 +4470,16 @@ module RDF
4262
4470
  label: "carbohydrateContent".freeze,
4263
4471
  rangeIncludes: "schema:Mass".freeze,
4264
4472
  type: "rdf:Property".freeze
4473
+ property :cargoVolume,
4474
+ comment: %(The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.<br />
4475
+ Typical unit code\(s\): LTR for liters, FTQ for cubic foot/feet<br />
4476
+
4477
+ Note: You can use <a href="minValue">minValue</a> and <a href="maxValue">maxValue</a> to indicate ranges.).freeze,
4478
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
4479
+ domainIncludes: "schema:Vehicle".freeze,
4480
+ label: "cargoVolume".freeze,
4481
+ rangeIncludes: "schema:QuantitativeValue".freeze,
4482
+ type: "rdf:Property".freeze
4265
4483
  property :carrier,
4266
4484
  comment: %('carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.).freeze,
4267
4485
  domainIncludes: ["schema:ParcelDelivery".freeze, "schema:Flight".freeze],
@@ -4280,6 +4498,7 @@ module RDF
4280
4498
  domainIncludes: "schema:Dataset".freeze,
4281
4499
  label: "catalog".freeze,
4282
4500
  rangeIncludes: "schema:DataCatalog".freeze,
4501
+ "schema:supersededBy" => %(schema:includedDataCatalog).freeze,
4283
4502
  type: "rdf:Property".freeze
4284
4503
  property :catalogNumber,
4285
4504
  comment: %(The catalog number for the release.).freeze,
@@ -4290,7 +4509,7 @@ module RDF
4290
4509
  type: "rdf:Property".freeze
4291
4510
  property :category,
4292
4511
  comment: %(A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.).freeze,
4293
- domainIncludes: ["schema:Offer".freeze, "schema:Invoice".freeze, "schema:PhysicalActivity".freeze],
4512
+ domainIncludes: ["schema:Product".freeze, "schema:Offer".freeze, "schema:Invoice".freeze, "schema:PhysicalActivity".freeze],
4294
4513
  label: "category".freeze,
4295
4514
  rangeIncludes: ["schema:PhysicalActivityCategory".freeze, "schema:Text".freeze, "schema:Thing".freeze],
4296
4515
  type: "rdf:Property".freeze
@@ -4383,6 +4602,7 @@ module RDF
4383
4602
  domainIncludes: "schema:Drug".freeze,
4384
4603
  label: "clinicalPharmacology".freeze,
4385
4604
  rangeIncludes: "schema:Text".freeze,
4605
+ "schema:supersededBy" => %(schema:clinicalPharmacology).freeze,
4386
4606
  type: "rdf:Property".freeze
4387
4607
  property :clinicalPharmacology,
4388
4608
  comment: %(Description of the absorption and elimination of drugs, including their concentration \(pharmacokinetics, pK\) and biological effects \(pharmacodynamics, pD\).).freeze,
@@ -4417,10 +4637,16 @@ module RDF
4417
4637
  type: "rdf:Property".freeze
4418
4638
  property :codeRepository,
4419
4639
  comment: %(Link to the repository where the un-compiled, human readable code and related code is located \(SVN, github, CodePlex\).).freeze,
4420
- domainIncludes: "schema:Code".freeze,
4640
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
4421
4641
  label: "codeRepository".freeze,
4422
4642
  rangeIncludes: "schema:URL".freeze,
4423
4643
  type: "rdf:Property".freeze
4644
+ property :codeSampleType,
4645
+ comment: %(Full \(compile ready\) solution, code snippet, inline code, scripts, template.).freeze,
4646
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
4647
+ label: "codeSampleType".freeze,
4648
+ rangeIncludes: "schema:Text".freeze,
4649
+ type: "rdf:Property".freeze
4424
4650
  property :codeValue,
4425
4651
  comment: %(The actual code.).freeze,
4426
4652
  domainIncludes: "schema:MedicalCode".freeze,
@@ -4451,6 +4677,7 @@ module RDF
4451
4677
  domainIncludes: "schema:UpdateAction".freeze,
4452
4678
  label: "collection".freeze,
4453
4679
  rangeIncludes: "schema:Thing".freeze,
4680
+ "schema:supersededBy" => %(schema:targetCollection).freeze,
4454
4681
  subPropertyOf: "schema:object".freeze,
4455
4682
  type: "rdf:Property".freeze
4456
4683
  property :color,
@@ -4460,10 +4687,10 @@ module RDF
4460
4687
  rangeIncludes: "schema:Text".freeze,
4461
4688
  type: "rdf:Property".freeze
4462
4689
  property :comment,
4463
- comment: %(Comments, typically from users, on this CreativeWork.).freeze,
4464
- domainIncludes: "schema:CreativeWork".freeze,
4690
+ comment: %(Comments, typically from users.).freeze,
4691
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:RsvpAction".freeze],
4465
4692
  label: "comment".freeze,
4466
- rangeIncludes: ["schema:UserComments".freeze, "schema:Comment".freeze],
4693
+ rangeIncludes: "schema:Comment".freeze,
4467
4694
  type: "rdf:Property".freeze
4468
4695
  property :commentCount,
4469
4696
  comment: %(The number of comments this CreativeWork \(e.g. Article, Question or Answer\) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.).freeze,
@@ -4545,8 +4772,15 @@ module RDF
4545
4772
  label: "containedIn".freeze,
4546
4773
  rangeIncludes: "schema:Place".freeze,
4547
4774
  type: "rdf:Property".freeze
4775
+ property :containsSeason,
4776
+ comment: %(A season that is part of the media series.).freeze,
4777
+ domainIncludes: ["schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
4778
+ label: "containsSeason".freeze,
4779
+ rangeIncludes: "schema:CreativeWorkSeason".freeze,
4780
+ subPropertyOf: "schema:hasPart".freeze,
4781
+ type: "rdf:Property".freeze
4548
4782
  property :contentLocation,
4549
- comment: %(The location of the content.).freeze,
4783
+ comment: %(The location depicted or described in the content. For example, the location in a photograph or painting.).freeze,
4550
4784
  domainIncludes: "schema:CreativeWork".freeze,
4551
4785
  label: "contentLocation".freeze,
4552
4786
  rangeIncludes: "schema:Place".freeze,
@@ -4658,10 +4892,11 @@ module RDF
4658
4892
  domainIncludes: "schema:ExerciseAction".freeze,
4659
4893
  label: "course".freeze,
4660
4894
  rangeIncludes: "schema:Place".freeze,
4895
+ "schema:supersededBy" => %(schema:exerciseCourse).freeze,
4661
4896
  subPropertyOf: "schema:location".freeze,
4662
4897
  type: "rdf:Property".freeze
4663
4898
  property :creator,
4664
- comment: %(The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.).freeze,
4899
+ comment: %(The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.).freeze,
4665
4900
  domainIncludes: ["schema:CreativeWork".freeze, "schema:UserComments".freeze],
4666
4901
  label: "creator".freeze,
4667
4902
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -4697,6 +4932,12 @@ module RDF
4697
4932
  label: "dataset".freeze,
4698
4933
  rangeIncludes: "schema:Dataset".freeze,
4699
4934
  type: "rdf:Property".freeze
4935
+ property :datasetTimeInterval,
4936
+ comment: %(The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 \(in ISO 8601 time interval format\).).freeze,
4937
+ domainIncludes: "schema:Dataset".freeze,
4938
+ label: "datasetTimeInterval".freeze,
4939
+ rangeIncludes: "schema:DateTime".freeze,
4940
+ type: "rdf:Property".freeze
4700
4941
  property :dateCreated,
4701
4942
  comment: %(The date on which the CreativeWork was created.).freeze,
4702
4943
  domainIncludes: "schema:CreativeWork".freeze,
@@ -4727,6 +4968,13 @@ module RDF
4727
4968
  label: "datePublished".freeze,
4728
4969
  rangeIncludes: "schema:Date".freeze,
4729
4970
  type: "rdf:Property".freeze
4971
+ property :dateVehicleFirstRegistered,
4972
+ comment: %(The date of the first registration of the vehicle with the respective public authorities.).freeze,
4973
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
4974
+ domainIncludes: "schema:Vehicle".freeze,
4975
+ label: "dateVehicleFirstRegistered".freeze,
4976
+ rangeIncludes: "schema:Date".freeze,
4977
+ type: "rdf:Property".freeze
4730
4978
  property :dateline,
4731
4979
  comment: %(The location where the NewsArticle was produced.).freeze,
4732
4980
  domainIncludes: "schema:NewsArticle".freeze,
@@ -4854,6 +5102,7 @@ module RDF
4854
5102
  domainIncludes: "schema:SoftwareApplication".freeze,
4855
5103
  label: "device".freeze,
4856
5104
  rangeIncludes: "schema:Text".freeze,
5105
+ "schema:supersededBy" => %(schema:availableOnDevice).freeze,
4857
5106
  type: "rdf:Property".freeze
4858
5107
  property :diagnosis,
4859
5108
  comment: %(One or more alternative conditions considered in the differential diagnosis process.).freeze,
@@ -4872,6 +5121,7 @@ module RDF
4872
5121
  domainIncludes: "schema:ExerciseAction".freeze,
4873
5122
  label: "diet".freeze,
4874
5123
  rangeIncludes: "schema:Diet".freeze,
5124
+ "schema:supersededBy" => %(schema:exerciseRelatedDiet).freeze,
4875
5125
  subPropertyOf: "schema:instrument".freeze,
4876
5126
  type: "rdf:Property".freeze
4877
5127
  property :dietFeatures,
@@ -4888,7 +5138,7 @@ module RDF
4888
5138
  type: "rdf:Property".freeze
4889
5139
  property :director,
4890
5140
  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,
4891
- 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],
5141
+ domainIncludes: ["schema:Movie".freeze, "schema:VideoObject".freeze, "schema:VideoGame".freeze, "schema:Episode".freeze, "schema:CreativeWorkSeason".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:Clip".freeze],
4892
5142
  label: "director".freeze,
4893
5143
  rangeIncludes: "schema:Person".freeze,
4894
5144
  type: "rdf:Property".freeze
@@ -4996,8 +5246,8 @@ module RDF
4996
5246
  rangeIncludes: "schema:URL".freeze,
4997
5247
  type: "rdf:Property".freeze
4998
5248
  property :downvoteCount,
4999
- comment: %(The number of downvotes this question has received from the community.).freeze,
5000
- domainIncludes: ["schema:Question".freeze, "schema:Answer".freeze, "schema:Comment".freeze],
5249
+ comment: %(The number of downvotes this question, answer or comment has received from the community.).freeze,
5250
+ domainIncludes: ["schema:Question".freeze, "schema:Comment".freeze],
5001
5251
  label: "downvoteCount".freeze,
5002
5252
  rangeIncludes: "schema:Integer".freeze,
5003
5253
  type: "rdf:Property".freeze
@@ -5007,6 +5257,13 @@ module RDF
5007
5257
  label: "drainsTo".freeze,
5008
5258
  rangeIncludes: "schema:Vessel".freeze,
5009
5259
  type: "rdf:Property".freeze
5260
+ property :driveWheelConfiguration,
5261
+ comment: %(The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.).freeze,
5262
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
5263
+ domainIncludes: "schema:Vehicle".freeze,
5264
+ label: "driveWheelConfiguration".freeze,
5265
+ rangeIncludes: ["schema:DriveWheelConfigurationValue".freeze, "schema:Text".freeze],
5266
+ type: "rdf:Property".freeze
5010
5267
  property :dropoffLocation,
5011
5268
  comment: %(Where a rental car can be dropped off.).freeze,
5012
5269
  domainIncludes: "schema:RentalCarReservation".freeze,
@@ -5122,10 +5379,10 @@ module RDF
5122
5379
  rangeIncludes: "schema:QuantitativeValue".freeze,
5123
5380
  type: "rdf:Property".freeze
5124
5381
  property :eligibleRegion,
5125
- comment: %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, or the GeoShape for the geo-political region\(s\) for which the offer or delivery charge specification is valid.).freeze,
5382
+ comment: %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region\(s\) for which the offer or delivery charge specification is valid.).freeze,
5126
5383
  domainIncludes: ["schema:Offer".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze],
5127
5384
  label: "eligibleRegion".freeze,
5128
- rangeIncludes: ["schema:GeoShape".freeze, "schema:Text".freeze],
5385
+ rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze],
5129
5386
  type: "rdf:Property".freeze
5130
5387
  property :eligibleTransactionVolume,
5131
5388
  comment: %(The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.).freeze,
@@ -5197,7 +5454,7 @@ module RDF
5197
5454
  type: "rdf:Property".freeze
5198
5455
  property :endDate,
5199
5456
  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,
5200
- domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:DatedMoneySpecification".freeze],
5457
+ domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze],
5201
5458
  label: "endDate".freeze,
5202
5459
  rangeIncludes: "schema:Date".freeze,
5203
5460
  type: "rdf:Property".freeze
@@ -5237,7 +5494,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5237
5494
  type: "rdf:Property".freeze
5238
5495
  property :episode,
5239
5496
  comment: %(An episode of a tv, radio or game media within a series or season.).freeze,
5240
- domainIncludes: ["schema:Season".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
5497
+ domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
5241
5498
  label: "episode".freeze,
5242
5499
  rangeIncludes: "schema:Episode".freeze,
5243
5500
  subPropertyOf: "schema:hasPart".freeze,
@@ -5251,7 +5508,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5251
5508
  type: "rdf:Property".freeze
5252
5509
  property :episodes,
5253
5510
  comment: %(An episode of a TV/radio series or season.).freeze,
5254
- domainIncludes: ["schema:Season".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
5511
+ domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze, "schema:TVSeries".freeze],
5255
5512
  label: "episodes".freeze,
5256
5513
  rangeIncludes: "schema:Episode".freeze,
5257
5514
  "schema:supersededBy" => %(schema:episode).freeze,
@@ -5319,6 +5576,19 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5319
5576
  label: "exampleOfWork".freeze,
5320
5577
  rangeIncludes: "schema:CreativeWork".freeze,
5321
5578
  type: "rdf:Property".freeze
5579
+ property :executableLibraryName,
5580
+ comment: %(Library file name e.g., mscorlib.dll, system.web.dll.).freeze,
5581
+ domainIncludes: "schema:APIReference".freeze,
5582
+ label: "executableLibraryName".freeze,
5583
+ rangeIncludes: "schema:Text".freeze,
5584
+ type: "rdf:Property".freeze
5585
+ property :exerciseCourse,
5586
+ comment: %(A sub property of location. The course where this action was taken.).freeze,
5587
+ domainIncludes: "schema:ExerciseAction".freeze,
5588
+ label: "exerciseCourse".freeze,
5589
+ rangeIncludes: "schema:Place".freeze,
5590
+ subPropertyOf: "schema:location".freeze,
5591
+ type: "rdf:Property".freeze
5322
5592
  property :exercisePlan,
5323
5593
  comment: %(A sub property of instrument. The exercise plan used on this action.).freeze,
5324
5594
  domainIncludes: "schema:ExerciseAction".freeze,
@@ -5326,6 +5596,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5326
5596
  rangeIncludes: "schema:ExercisePlan".freeze,
5327
5597
  subPropertyOf: "schema:instrument".freeze,
5328
5598
  type: "rdf:Property".freeze
5599
+ property :exerciseRelatedDiet,
5600
+ comment: %(A sub property of instrument. The diet used in this action.).freeze,
5601
+ domainIncludes: "schema:ExerciseAction".freeze,
5602
+ label: "exerciseRelatedDiet".freeze,
5603
+ rangeIncludes: "schema:Diet".freeze,
5604
+ subPropertyOf: "schema:instrument".freeze,
5605
+ type: "rdf:Property".freeze
5329
5606
  property :exerciseType,
5330
5607
  comment: %(Type\(s\) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.).freeze,
5331
5608
  domainIncludes: ["schema:ExercisePlan".freeze, "schema:ExerciseAction".freeze],
@@ -5336,7 +5613,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5336
5613
  comment: %(exif data for this object.).freeze,
5337
5614
  domainIncludes: "schema:ImageObject".freeze,
5338
5615
  label: "exifData".freeze,
5339
- rangeIncludes: "schema:Text".freeze,
5616
+ rangeIncludes: ["schema:Text".freeze, "schema:PropertyValue".freeze],
5340
5617
  type: "rdf:Property".freeze
5341
5618
  property :expectedArrivalFrom,
5342
5619
  comment: %(The earliest date the package may arrive.).freeze,
@@ -5510,6 +5787,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5510
5787
  domainIncludes: "schema:PublicationEvent".freeze,
5511
5788
  label: "free".freeze,
5512
5789
  rangeIncludes: "schema:Boolean".freeze,
5790
+ "schema:supersededBy" => %(schema:isAccessibleForFree).freeze,
5513
5791
  type: "rdf:Property".freeze
5514
5792
  property :frequency,
5515
5793
  comment: %(How often the dose is taken, e.g. 'daily'.).freeze,
@@ -5524,6 +5802,35 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5524
5802
  rangeIncludes: "schema:Place".freeze,
5525
5803
  subPropertyOf: "schema:location".freeze,
5526
5804
  type: "rdf:Property".freeze
5805
+ property :fuelConsumption,
5806
+ comment: %(The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle \(e.g. liters per 100 km\).<br />
5807
+ Note 1: There are unfortunately no standard unit codes for liters per 100 km.<br />
5808
+ Use <a href="unitText">unitText</a> to indicate the unit of measurement, e.g. L/100 km.
5809
+ Note 2: There are two ways of indicating the fuel consumption, <a href="fuelConsumption">fuelConsumption</a> \(e.g. 8 liters per 100 km\) and <a href="fuelEfficiency">fuelEfficiency</a> \(e.g. 30 miles per gallon\). They are reciprocal.<br />
5810
+ Note 3: Often, the absolute value is useful only when related to driving speed \("at 80 km/h"\) or usage pattern \("city traffic"\). You can use <a href="valueReference">valueReference</a> to link the value for the fuel consumption to another value.).freeze,
5811
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
5812
+ domainIncludes: "schema:Vehicle".freeze,
5813
+ label: "fuelConsumption".freeze,
5814
+ rangeIncludes: "schema:QuantitativeValue".freeze,
5815
+ type: "rdf:Property".freeze
5816
+ property :fuelEfficiency,
5817
+ comment: %(The distance traveled per unit of fuel used; most commonly miles per gallon \(mpg\) or kilometers per liter \(km/L\).<br />
5818
+ Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter.<br />
5819
+ Use <a href="unitText">unitText</a> to indicate the unit of measurement, e.g. mpg or km/L.
5820
+ Note 2: There are two ways of indicating the fuel consumption, <a href="fuelConsumption">fuelConsumption</a> \(e.g. 8 liters per 100 km\) and <a href="fuelEfficiency">fuelEfficiency</a> \(e.g. 30 miles per gallon\). They are reciprocal.<br />
5821
+ Note 3: Often, the absolute value is useful only when related to driving speed \("at 80 km/h"\) or usage pattern \("city traffic"\). You can use <a href="valueReference">valueReference</a> to link the value for the fuel economy to another value.).freeze,
5822
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
5823
+ domainIncludes: "schema:Vehicle".freeze,
5824
+ label: "fuelEfficiency".freeze,
5825
+ rangeIncludes: "schema:QuantitativeValue".freeze,
5826
+ type: "rdf:Property".freeze
5827
+ property :fuelType,
5828
+ comment: %(The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.).freeze,
5829
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
5830
+ domainIncludes: ["schema:Vehicle".freeze, "schema:EngineSpecification".freeze],
5831
+ label: "fuelType".freeze,
5832
+ rangeIncludes: ["schema:Text".freeze, "schema:QualitativeValue".freeze, "schema:URL".freeze],
5833
+ type: "rdf:Property".freeze
5527
5834
  property :function,
5528
5835
  comment: %(Function of the anatomical structure.).freeze,
5529
5836
  domainIncludes: "schema:AnatomicalStructure".freeze,
@@ -5551,7 +5858,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5551
5858
  type: "rdf:Property".freeze
5552
5859
  property :gameLocation,
5553
5860
  comment: %(Real or fictional location of the game \(or part of game\).).freeze,
5554
- domainIncludes: "schema:Game".freeze,
5861
+ domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze],
5555
5862
  label: "gameLocation".freeze,
5556
5863
  rangeIncludes: ["schema:URL".freeze, "schema:Place".freeze, "schema:PostalAddress".freeze],
5557
5864
  type: "rdf:Property".freeze
@@ -5605,7 +5912,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5605
5912
  rangeIncludes: "schema:Text".freeze,
5606
5913
  type: "rdf:Property".freeze
5607
5914
  property :globalLocationNumber,
5608
- comment: %(The Global Location Number \(GLN, sometimes also referred to as International Location Number or ILN\) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.).freeze,
5915
+ comment: %(The <a href="http://www.gs1.org/gln">Global Location Number</a> \(GLN, sometimes also referred to as International Location Number or ILN\) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.).freeze,
5609
5916
  domainIncludes: ["schema:Organization".freeze, "schema:Place".freeze, "schema:Person".freeze],
5610
5917
  label: "globalLocationNumber".freeze,
5611
5918
  rangeIncludes: "schema:Text".freeze,
@@ -5622,6 +5929,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5622
5929
  label: "greaterOrEqual".freeze,
5623
5930
  rangeIncludes: "schema:QualitativeValue".freeze,
5624
5931
  type: "rdf:Property".freeze
5932
+ property :gtin12,
5933
+ comment: %(The <a href="http://apps.gs1.org/GDD/glossary/Pages/GTIN-12.aspx">GTIN-12</a> code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See <a href="http://www.gs1.org/barcodes/technical/idkeys/gtin">GS1 GTIN Summary</a> for more details.).freeze,
5934
+ domainIncludes: ["schema:Offer".freeze, "schema:Product".freeze, "schema:Demand".freeze],
5935
+ label: "gtin12".freeze,
5936
+ rangeIncludes: "schema:Text".freeze,
5937
+ type: "rdf:Property".freeze
5625
5938
  property :gtin13,
5626
5939
  comment: %(The <a href="http://apps.gs1.org/GDD/glossary/Pages/GTIN-13.aspx">GTIN-13</a> code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See <a href="http://www.gs1.org/barcodes/technical/idkeys/gtin">GS1 GTIN Summary</a> for more details.).freeze,
5627
5940
  domainIncludes: ["schema:Offer".freeze, "schema:Product".freeze, "schema:Demand".freeze],
@@ -5817,11 +6130,17 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5817
6130
  label: "inAlbum".freeze,
5818
6131
  rangeIncludes: "schema:MusicAlbum".freeze,
5819
6132
  type: "rdf:Property".freeze
6133
+ property :inBroadcastLineup,
6134
+ comment: %(The CableOrSatelliteService offering the channel.).freeze,
6135
+ domainIncludes: "schema:BroadcastChannel".freeze,
6136
+ label: "inBroadcastLineup".freeze,
6137
+ rangeIncludes: "schema:CableOrSatelliteService".freeze,
6138
+ type: "rdf:Property".freeze
5820
6139
  property :inLanguage,
5821
- comment: %(The language of the content. please use one of the language codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard</a>.).freeze,
5822
- domainIncludes: "schema:CreativeWork".freeze,
6140
+ comment: %(The language of the content or performance or used in an action. Please use one of the language codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard</a>.).freeze,
6141
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:CommunicateAction".freeze, "schema:WriteAction".freeze],
5823
6142
  label: "inLanguage".freeze,
5824
- rangeIncludes: "schema:Text".freeze,
6143
+ rangeIncludes: ["schema:Text".freeze, "schema:Language".freeze],
5825
6144
  type: "rdf:Property".freeze
5826
6145
  property :inPlaylist,
5827
6146
  comment: %(The playlist to which this recording belongs.).freeze,
@@ -5829,11 +6148,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5829
6148
  label: "inPlaylist".freeze,
5830
6149
  rangeIncludes: "schema:MusicPlaylist".freeze,
5831
6150
  type: "rdf:Property".freeze
6151
+ property :incentiveCompensation,
6152
+ comment: %(Description of bonus and commission compensation aspects of the job.).freeze,
6153
+ domainIncludes: "schema:JobPosting".freeze,
6154
+ label: "incentiveCompensation".freeze,
6155
+ rangeIncludes: "schema:Text".freeze,
6156
+ type: "rdf:Property".freeze
5832
6157
  property :incentives,
5833
6158
  comment: %(Description of bonus and commission compensation aspects of the job.).freeze,
5834
6159
  domainIncludes: "schema:JobPosting".freeze,
5835
6160
  label: "incentives".freeze,
5836
6161
  rangeIncludes: "schema:Text".freeze,
6162
+ "schema:supersededBy" => %(schema:incentiveCompensation).freeze,
5837
6163
  type: "rdf:Property".freeze
5838
6164
  property :includedComposition,
5839
6165
  comment: %(Smaller compositions included in this work \(e.g. a movement in a symphony\).).freeze,
@@ -5842,6 +6168,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5842
6168
  label: "includedComposition".freeze,
5843
6169
  rangeIncludes: "schema:MusicComposition".freeze,
5844
6170
  type: "rdf:Property".freeze
6171
+ property :includedDataCatalog,
6172
+ comment: %(A data catalog contained in the dataset.).freeze,
6173
+ domainIncludes: "schema:Dataset".freeze,
6174
+ label: "includedDataCatalog".freeze,
6175
+ rangeIncludes: "schema:DataCatalog".freeze,
6176
+ type: "rdf:Property".freeze
5845
6177
  property :includedRiskFactor,
5846
6178
  comment: %(A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.).freeze,
5847
6179
  domainIncludes: "schema:MedicalRiskEstimator".freeze,
@@ -5873,10 +6205,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5873
6205
  rangeIncludes: "schema:Text".freeze,
5874
6206
  type: "rdf:Property".freeze
5875
6207
  property :ineligibleRegion,
5876
- comment: %(The place\(s\) from which the offer cannot be obtained \(e.g. a region where the transaction is not allowed\).).freeze,
5877
- domainIncludes: "schema:Offer".freeze,
6208
+ comment: %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region\(s\) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.).freeze,
6209
+ domainIncludes: ["schema:Offer".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze],
5878
6210
  label: "ineligibleRegion".freeze,
5879
- rangeIncludes: "schema:Place".freeze,
6211
+ rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze],
5880
6212
  type: "rdf:Property".freeze
5881
6213
  property :infectiousAgent,
5882
6214
  comment: %(The actual infectious agent, such as a specific bacterium.).freeze,
@@ -5891,10 +6223,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5891
6223
  rangeIncludes: "schema:InfectiousAgentClass".freeze,
5892
6224
  type: "rdf:Property".freeze
5893
6225
  property :ingredients,
5894
- comment: %(An ingredient used in the recipe.).freeze,
6226
+ comment: %(A single ingredient used in the recipe, e.g. sugar, flour or garlic.).freeze,
5895
6227
  domainIncludes: "schema:Recipe".freeze,
5896
6228
  label: "ingredients".freeze,
5897
6229
  rangeIncludes: "schema:Text".freeze,
6230
+ "schema:supersededBy" => %(schema:recipeIngredient).freeze,
5898
6231
  type: "rdf:Property".freeze
5899
6232
  property :insertion,
5900
6233
  comment: %(The place of attachment of a muscle, or what the muscle moves.).freeze,
@@ -5927,10 +6260,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5927
6260
  rangeIncludes: "schema:Drug".freeze,
5928
6261
  type: "rdf:Property".freeze
5929
6262
  property :interactionCount,
5930
- 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,
5931
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Person".freeze],
6263
+ comment: %(This property is deprecated, alongside the UserInteraction types on which it depended.).freeze,
5932
6264
  label: "interactionCount".freeze,
5933
- rangeIncludes: "schema:Text".freeze,
5934
6265
  type: "rdf:Property".freeze
5935
6266
  property :interactivityType,
5936
6267
  comment: %(The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.).freeze,
@@ -5950,6 +6281,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5950
6281
  label: "inverseOf".freeze,
5951
6282
  rangeIncludes: "schema:Property".freeze,
5952
6283
  type: "rdf:Property".freeze
6284
+ property :isAcccessibleForFree,
6285
+ comment: %(A flag to signal that the publication is accessible for free.).freeze,
6286
+ domainIncludes: "schema:PublicationEvent".freeze,
6287
+ label: "isAccessibleForFree".freeze,
6288
+ rangeIncludes: "schema:Boolean".freeze,
6289
+ type: "rdf:Property".freeze
5953
6290
  property :isAccessoryOrSparePartFor,
5954
6291
  comment: %(A pointer to another product \(or multiple products\) for which this product is an accessory or spare part.).freeze,
5955
6292
  domainIncludes: "schema:Product".freeze,
@@ -5986,6 +6323,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
5986
6323
  label: "isGift".freeze,
5987
6324
  rangeIncludes: "schema:Boolean".freeze,
5988
6325
  type: "rdf:Property".freeze
6326
+ property :isLiveBroadcast,
6327
+ comment: %(True is the broadcast is of a live event.).freeze,
6328
+ domainIncludes: "schema:BroadcastEvent".freeze,
6329
+ label: "isLiveBroadcast".freeze,
6330
+ rangeIncludes: "schema:Boolean".freeze,
6331
+ type: "rdf:Property".freeze
5989
6332
  property :isPartOf,
5990
6333
  comment: %(Indicates a CreativeWork that this CreativeWork is \(in some sense\) part of.).freeze,
5991
6334
  domainIncludes: "schema:CreativeWork".freeze,
@@ -6119,6 +6462,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6119
6462
  label: "itemShipped".freeze,
6120
6463
  rangeIncludes: "schema:Product".freeze,
6121
6464
  type: "rdf:Property".freeze
6465
+ property :jobBenefits,
6466
+ comment: %(Description of benefits associated with the job.).freeze,
6467
+ domainIncludes: "schema:JobPosting".freeze,
6468
+ label: "jobBenefits".freeze,
6469
+ rangeIncludes: "schema:Text".freeze,
6470
+ type: "rdf:Property".freeze
6122
6471
  property :jobLocation,
6123
6472
  comment: %(A \(typically single\) geographic location associated with the job position.).freeze,
6124
6473
  domainIncludes: "schema:JobPosting".freeze,
@@ -6137,6 +6486,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6137
6486
  label: "keywords".freeze,
6138
6487
  rangeIncludes: "schema:Text".freeze,
6139
6488
  type: "rdf:Property".freeze
6489
+ property :knownVehicleDamages,
6490
+ comment: %(A textual description of known damages, both repaired and unrepaired.).freeze,
6491
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
6492
+ domainIncludes: "schema:Vehicle".freeze,
6493
+ label: "knownVehicleDamages".freeze,
6494
+ rangeIncludes: "schema:Text".freeze,
6495
+ type: "rdf:Property".freeze
6140
6496
  property :knows,
6141
6497
  comment: %(The most generic bi-directional social/work relation.).freeze,
6142
6498
  domainIncludes: "schema:Person".freeze,
@@ -6161,6 +6517,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6161
6517
  domainIncludes: ["schema:CommunicateAction".freeze, "schema:WriteAction".freeze],
6162
6518
  label: "language".freeze,
6163
6519
  rangeIncludes: "schema:Language".freeze,
6520
+ "schema:supersededBy" => %(schema:inLanguage).freeze,
6164
6521
  subPropertyOf: "schema:instrument".freeze,
6165
6522
  type: "rdf:Property".freeze
6166
6523
  property :lastReviewed,
@@ -6281,6 +6638,47 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6281
6638
  label: "mainContentOfPage".freeze,
6282
6639
  rangeIncludes: "schema:WebPageElement".freeze,
6283
6640
  type: "rdf:Property".freeze
6641
+ property :mainEntity,
6642
+ comment: %(Indicates the primary entity described in some page or other CreativeWork.).freeze,
6643
+ domainIncludes: "schema:CreativeWork".freeze,
6644
+ inverseOf: "schema:mainEntityOfPage".freeze,
6645
+ label: "mainEntity".freeze,
6646
+ rangeIncludes: "schema:Thing".freeze,
6647
+ type: "rdf:Property".freeze
6648
+ property :mainEntityOfPage,
6649
+ comment: %(Indicates a page \(or other CreativeWork\) for which this thing is the main entity being described.
6650
+ <br /><br />
6651
+ Many \(but not all\) pages have a fairly clear primary topic, some entity or thing that the page describes. For
6652
+ example a restaurant's home page might be primarily about that Restaurant, or an event listing page might
6653
+ represent a single event. The mainEntity and mainEntityOfPage properties allow you to explicitly express the relationship
6654
+ between the page and the primary entity.
6655
+ <br /><br />
6656
+
6657
+ Related properties include sameAs, about, and url.
6658
+ <br /><br />
6659
+
6660
+ The sameAs and url properties are both similar to mainEntityOfPage. The url property should be reserved to refer to more
6661
+ official or authoritative web pages, such as the item’s official website. The sameAs property also relates a thing
6662
+ to a page that indirectly identifies it. Whereas sameAs emphasises well known pages, the mainEntityOfPage property
6663
+ serves more to clarify which of several entities is the main one for that page.
6664
+ <br /><br />
6665
+
6666
+ mainEntityOfPage can be used for any page, including those not recognized as authoritative for that entity. For example,
6667
+ for a product, sameAs might refer to a page on the manufacturer’s official site with specs for the product, while
6668
+ mainEntityOfPage might be used on pages within various retailers’ sites giving details for the same product.
6669
+ <br /><br />
6670
+
6671
+ about is similar to mainEntity, with two key differences. First, about can refer to multiple entities/topics,
6672
+ while mainEntity should be used for only the primary one. Second, some pages have a primary entity that itself
6673
+ describes some other entity. For example, one web page may display a news article about a particular person.
6674
+ Another page may display a product review for a particular product. In these cases, mainEntity for the pages
6675
+ should refer to the news article or review, respectively, while about would more properly refer to the person or product.
6676
+ ).freeze,
6677
+ domainIncludes: "schema:Thing".freeze,
6678
+ inverseOf: "schema:mainEntity".freeze,
6679
+ label: "mainEntityOfPage".freeze,
6680
+ rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
6681
+ type: "rdf:Property".freeze
6284
6682
  property :makesOffer,
6285
6683
  comment: %(A pointer to products or services offered by the organization or person.).freeze,
6286
6684
  domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -6318,6 +6716,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6318
6716
  domainIncludes: "schema:VisualArtwork".freeze,
6319
6717
  label: "material".freeze,
6320
6718
  rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
6719
+ "schema:supersededBy" => %(schema:artMedium).freeze,
6321
6720
  type: "rdf:Property".freeze
6322
6721
  property :maxPrice,
6323
6722
  comment: %(The highest price if the price is a range.).freeze,
@@ -6327,7 +6726,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6327
6726
  type: "rdf:Property".freeze
6328
6727
  property :maxValue,
6329
6728
  comment: %(The upper value of some characteristic or property.).freeze,
6330
- domainIncludes: ["schema:QuantitativeValue".freeze, "schema:PropertyValueSpecification".freeze],
6729
+ domainIncludes: ["schema:QuantitativeValue".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze],
6331
6730
  label: "maxValue".freeze,
6332
6731
  rangeIncludes: "schema:Number".freeze,
6333
6732
  type: "rdf:Property".freeze
@@ -6413,6 +6812,14 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6413
6812
  rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
6414
6813
  "schema:supersededBy" => %(schema:seller).freeze,
6415
6814
  type: "rdf:Property".freeze
6815
+ property :mileageFromOdometer,
6816
+ comment: %(The total distance travelled by the particular vehicle since its initial production, as read from its odometer.<br />
6817
+ Typical unit code\(s\): KMT for kilometers, SMI for statute miles).freeze,
6818
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
6819
+ domainIncludes: "schema:Vehicle".freeze,
6820
+ label: "mileageFromOdometer".freeze,
6821
+ rangeIncludes: "schema:QuantitativeValue".freeze,
6822
+ type: "rdf:Property".freeze
6416
6823
  property :minPrice,
6417
6824
  comment: %(The lowest price if the price is a range.).freeze,
6418
6825
  domainIncludes: "schema:PriceSpecification".freeze,
@@ -6421,7 +6828,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6421
6828
  type: "rdf:Property".freeze
6422
6829
  property :minValue,
6423
6830
  comment: %(The lower value of some characteristic or property.).freeze,
6424
- domainIncludes: ["schema:QuantitativeValue".freeze, "schema:PropertyValueSpecification".freeze],
6831
+ domainIncludes: ["schema:QuantitativeValue".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze],
6425
6832
  label: "minValue".freeze,
6426
6833
  rangeIncludes: "schema:Number".freeze,
6427
6834
  type: "rdf:Property".freeze
@@ -6579,13 +6986,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6579
6986
  comment: %(The number of adults staying in the unit.).freeze,
6580
6987
  domainIncludes: "schema:LodgingReservation".freeze,
6581
6988
  label: "numAdults".freeze,
6582
- rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze],
6989
+ rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze],
6583
6990
  type: "rdf:Property".freeze
6584
6991
  property :numChildren,
6585
6992
  comment: %(The number of children staying in the unit.).freeze,
6586
6993
  domainIncludes: "schema:LodgingReservation".freeze,
6587
6994
  label: "numChildren".freeze,
6588
- rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze],
6995
+ rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze],
6589
6996
  type: "rdf:Property".freeze
6590
6997
  property :numTracks,
6591
6998
  comment: %(The number of tracks in this album or playlist.).freeze,
@@ -6593,23 +7000,54 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6593
7000
  label: "numTracks".freeze,
6594
7001
  rangeIncludes: "schema:Integer".freeze,
6595
7002
  type: "rdf:Property".freeze
7003
+ property :numberOfAirbags,
7004
+ comment: %(The number or type of airbags in the vehicle.).freeze,
7005
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7006
+ domainIncludes: "schema:Vehicle".freeze,
7007
+ label: "numberOfAirbags".freeze,
7008
+ rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze],
7009
+ type: "rdf:Property".freeze
7010
+ property :numberOfAxles,
7011
+ comment: %(The number of axles.<br />
7012
+ Typical unit code\(s\): C62).freeze,
7013
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7014
+ domainIncludes: "schema:Vehicle".freeze,
7015
+ label: "numberOfAxles".freeze,
7016
+ rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Number".freeze],
7017
+ type: "rdf:Property".freeze
7018
+ property :numberOfDoors,
7019
+ comment: %(The number of doors.<br />
7020
+ Typical unit code\(s\): C62).freeze,
7021
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7022
+ domainIncludes: "schema:Vehicle".freeze,
7023
+ label: "numberOfDoors".freeze,
7024
+ rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Number".freeze],
7025
+ type: "rdf:Property".freeze
6596
7026
  property :numberOfEmployees,
6597
- comment: %(The size of business by number of employees.).freeze,
6598
- domainIncludes: "schema:BusinessAudience".freeze,
7027
+ comment: %(The number of employees in an organization e.g. business.).freeze,
7028
+ domainIncludes: ["schema:BusinessAudience".freeze, "schema:Organization".freeze],
6599
7029
  label: "numberOfEmployees".freeze,
6600
7030
  rangeIncludes: "schema:QuantitativeValue".freeze,
6601
7031
  type: "rdf:Property".freeze
6602
7032
  property :numberOfEpisodes,
6603
7033
  comment: %(The number of episodes in this season or series.).freeze,
6604
- domainIncludes: ["schema:Season".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze, "schema:RadioSeries".freeze],
7034
+ domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze, "schema:RadioSeries".freeze],
6605
7035
  label: "numberOfEpisodes".freeze,
6606
- rangeIncludes: "schema:Number".freeze,
7036
+ rangeIncludes: "schema:Integer".freeze,
7037
+ type: "rdf:Property".freeze
7038
+ property :numberOfForwardGears,
7039
+ comment: %(The total number of forward gears available for the transmission system of the vehicle.<br />
7040
+ Typical unit code\(s\): C62).freeze,
7041
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7042
+ domainIncludes: "schema:Vehicle".freeze,
7043
+ label: "numberOfForwardGears".freeze,
7044
+ rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Number".freeze],
6607
7045
  type: "rdf:Property".freeze
6608
7046
  property :numberOfItems,
6609
- 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,
7047
+ comment: %(The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list \(e.g., multi-page pagination\); in such cases, the numberOfItems would be for the entire list.).freeze,
6610
7048
  domainIncludes: "schema:ItemList".freeze,
6611
7049
  label: "numberOfItems".freeze,
6612
- rangeIncludes: "schema:Number".freeze,
7050
+ rangeIncludes: "schema:Integer".freeze,
6613
7051
  type: "rdf:Property".freeze
6614
7052
  property :numberOfPages,
6615
7053
  comment: %(The number of pages in the book.).freeze,
@@ -6623,11 +7061,19 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6623
7061
  label: "numberOfPlayers".freeze,
6624
7062
  rangeIncludes: "schema:QuantitativeValue".freeze,
6625
7063
  type: "rdf:Property".freeze
7064
+ property :numberOfPreviousOwners,
7065
+ comment: %(The number of owners of the vehicle, including the current one.<br />
7066
+ Typical unit code\(s\): C62).freeze,
7067
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7068
+ domainIncludes: "schema:Vehicle".freeze,
7069
+ label: "numberOfPreviousOwners".freeze,
7070
+ rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Number".freeze],
7071
+ type: "rdf:Property".freeze
6626
7072
  property :numberOfSeasons,
6627
7073
  comment: %(The number of seasons in this series.).freeze,
6628
7074
  domainIncludes: ["schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:VideoGameSeries".freeze],
6629
7075
  label: "numberOfSeasons".freeze,
6630
- rangeIncludes: "schema:Number".freeze,
7076
+ rangeIncludes: "schema:Integer".freeze,
6631
7077
  type: "rdf:Property".freeze
6632
7078
  property :numberedPosition,
6633
7079
  comment: %(A number associated with a role in an organization, for example, the number on an athlete's jersey.).freeze,
@@ -6669,7 +7115,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6669
7115
  comment: %(The opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.<br />- Days are specified using the following two-letter combinations: <code>Mo</code>, <code>Tu</code>, <code>We</code>, <code>Th</code>, <code>Fr</code>, <code>Sa</code>, <code>Su</code>.<br />- Times are specified using 24:00 time. For example, 3pm is specified as <code>15:00</code>. <br />- Here is an example: <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>. <br />- If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>.).freeze,
6670
7116
  domainIncludes: ["schema:LocalBusiness".freeze, "schema:CivicStructure".freeze],
6671
7117
  label: "openingHours".freeze,
6672
- rangeIncludes: "schema:Duration".freeze,
7118
+ rangeIncludes: "schema:Text".freeze,
6673
7119
  type: "rdf:Property".freeze
6674
7120
  property :openingHoursSpecification,
6675
7121
  comment: %(The opening hours of a certain place.).freeze,
@@ -6701,6 +7147,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6701
7147
  domainIncludes: "schema:ChooseAction".freeze,
6702
7148
  label: "option".freeze,
6703
7149
  rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze],
7150
+ "schema:supersededBy" => %(schema:actionOption).freeze,
6704
7151
  subPropertyOf: "schema:object".freeze,
6705
7152
  type: "rdf:Property".freeze
6706
7153
  property :orderDate,
@@ -6709,12 +7156,36 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6709
7156
  label: "orderDate".freeze,
6710
7157
  rangeIncludes: "schema:DateTime".freeze,
6711
7158
  type: "rdf:Property".freeze
7159
+ property :orderDelivery,
7160
+ comment: %(The delivery of the parcel related to this order or order item.).freeze,
7161
+ domainIncludes: ["schema:Order".freeze, "schema:OrderItem".freeze],
7162
+ label: "orderDelivery".freeze,
7163
+ rangeIncludes: "schema:ParcelDelivery".freeze,
7164
+ type: "rdf:Property".freeze
7165
+ property :orderItemNumber,
7166
+ comment: %(The identifier of the order item.).freeze,
7167
+ domainIncludes: "schema:OrderItem".freeze,
7168
+ label: "orderItemNumber".freeze,
7169
+ rangeIncludes: "schema:Text".freeze,
7170
+ type: "rdf:Property".freeze
7171
+ property :orderItemStatus,
7172
+ comment: %(The current status of the order item.).freeze,
7173
+ domainIncludes: "schema:OrderItem".freeze,
7174
+ label: "orderItemStatus".freeze,
7175
+ rangeIncludes: "schema:OrderStatus".freeze,
7176
+ type: "rdf:Property".freeze
6712
7177
  property :orderNumber,
6713
7178
  comment: %(The identifier of the transaction.).freeze,
6714
7179
  domainIncludes: "schema:Order".freeze,
6715
7180
  label: "orderNumber".freeze,
6716
7181
  rangeIncludes: "schema:Text".freeze,
6717
7182
  type: "rdf:Property".freeze
7183
+ property :orderQuantity,
7184
+ comment: %(The number of the item ordered. If the property is not set, assume the quantity is one.).freeze,
7185
+ domainIncludes: "schema:OrderItem".freeze,
7186
+ label: "orderQuantity".freeze,
7187
+ rangeIncludes: "schema:Number".freeze,
7188
+ type: "rdf:Property".freeze
6718
7189
  property :orderStatus,
6719
7190
  comment: %(The current status of the order.).freeze,
6720
7191
  domainIncludes: "schema:Order".freeze,
@@ -6723,9 +7194,9 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6723
7194
  type: "rdf:Property".freeze
6724
7195
  property :orderedItem,
6725
7196
  comment: %(The item ordered.).freeze,
6726
- domainIncludes: "schema:Order".freeze,
7197
+ domainIncludes: ["schema:Order".freeze, "schema:OrderItem".freeze],
6727
7198
  label: "orderedItem".freeze,
6728
- rangeIncludes: "schema:Product".freeze,
7199
+ rangeIncludes: ["schema:Product".freeze, "schema:OrderItem".freeze],
6729
7200
  type: "rdf:Property".freeze
6730
7201
  property :organizer,
6731
7202
  comment: %(An organizer of an Event.).freeze,
@@ -6819,10 +7290,16 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6819
7290
  type: "rdf:Property".freeze
6820
7291
  property :parentItem,
6821
7292
  comment: %(The parent of a question, answer or item in general.).freeze,
6822
- domainIncludes: ["schema:Answer".freeze, "schema:Comment".freeze],
7293
+ domainIncludes: "schema:Comment".freeze,
6823
7294
  label: "parentItem".freeze,
6824
7295
  rangeIncludes: "schema:Question".freeze,
6825
7296
  type: "rdf:Property".freeze
7297
+ property :parentOrganization,
7298
+ comment: %(The larger organization that this local business is a branch of, if any.).freeze,
7299
+ domainIncludes: "schema:LocalBusiness".freeze,
7300
+ label: "parentOrganization".freeze,
7301
+ rangeIncludes: "schema:Organization".freeze,
7302
+ type: "rdf:Property".freeze
6826
7303
  property :parentService,
6827
7304
  comment: %(A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.).freeze,
6828
7305
  domainIncludes: "schema:BroadcastService".freeze,
@@ -6860,14 +7337,14 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6860
7337
  comment: %(The season to which this episode belongs.).freeze,
6861
7338
  domainIncludes: ["schema:Episode".freeze, "schema:Clip".freeze],
6862
7339
  label: "partOfSeason".freeze,
6863
- rangeIncludes: "schema:Season".freeze,
7340
+ rangeIncludes: "schema:CreativeWorkSeason".freeze,
6864
7341
  subPropertyOf: "schema:isPartOf".freeze,
6865
7342
  type: "rdf:Property".freeze
6866
7343
  property :partOfSeries,
6867
7344
  comment: %(The series to which this episode or season belongs.).freeze,
6868
- domainIncludes: ["schema:Episode".freeze, "schema:Season".freeze, "schema:Clip".freeze],
7345
+ domainIncludes: ["schema:Episode".freeze, "schema:CreativeWorkSeason".freeze, "schema:Clip".freeze],
6869
7346
  label: "partOfSeries".freeze,
6870
- rangeIncludes: "schema:Series".freeze,
7347
+ rangeIncludes: "schema:CreativeWorkSeries".freeze,
6871
7348
  subPropertyOf: "schema:isPartOf".freeze,
6872
7349
  type: "rdf:Property".freeze
6873
7350
  property :partOfSystem,
@@ -6895,7 +7372,19 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
6895
7372
  comment: %(Number of people the reservation should accommodate.).freeze,
6896
7373
  domainIncludes: ["schema:FoodEstablishmentReservation".freeze, "schema:TaxiReservation".freeze],
6897
7374
  label: "partySize".freeze,
6898
- rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze],
7375
+ rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze],
7376
+ type: "rdf:Property".freeze
7377
+ property :passengerPriorityStatus,
7378
+ comment: %(The priority status assigned to a passenger for security or boarding \(e.g. FastTrack or Priority\).).freeze,
7379
+ domainIncludes: "schema:FlightReservation".freeze,
7380
+ label: "passengerPriorityStatus".freeze,
7381
+ rangeIncludes: ["schema:Text".freeze, "schema:QualitativeValue".freeze],
7382
+ type: "rdf:Property".freeze
7383
+ property :passengerSequenceNumber,
7384
+ comment: %(The passenger's sequence number as assigned by the airline.).freeze,
7385
+ domainIncludes: "schema:FlightReservation".freeze,
7386
+ label: "passengerSequenceNumber".freeze,
7387
+ rangeIncludes: "schema:Text".freeze,
6899
7388
  type: "rdf:Property".freeze
6900
7389
  property :pathophysiology,
6901
7390
  comment: %(Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.).freeze,
@@ -7024,7 +7513,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7024
7513
  comment: %(Number of players on the server.).freeze,
7025
7514
  domainIncludes: "schema:GameServer".freeze,
7026
7515
  label: "playersOnline".freeze,
7027
- rangeIncludes: "schema:Number".freeze,
7516
+ rangeIncludes: "schema:Integer".freeze,
7028
7517
  type: "rdf:Property".freeze
7029
7518
  property :polygon,
7030
7519
  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,
@@ -7267,6 +7756,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7267
7756
  domainIncludes: "schema:Service".freeze,
7268
7757
  label: "produces".freeze,
7269
7758
  rangeIncludes: "schema:Thing".freeze,
7759
+ "schema:supersededBy" => %(schema:serviceOutput).freeze,
7270
7760
  type: "rdf:Property".freeze
7271
7761
  property :productID,
7272
7762
  comment: %(The product identifier, such as ISBN. For example: <code>&lt;meta itemprop='productID' content='isbn:123-456-789'/&gt;</code>.).freeze,
@@ -7282,10 +7772,17 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7282
7772
  type: "rdf:Property".freeze
7283
7773
  property :productionCompany,
7284
7774
  comment: %(The production company or studio responsible for the item e.g. series, video game, episode etc.).freeze,
7285
- 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],
7775
+ domainIncludes: ["schema:MediaObject".freeze, "schema:Movie".freeze, "schema:Episode".freeze, "schema:CreativeWorkSeason".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:MovieSeries".freeze, "schema:VideoGameSeries".freeze],
7286
7776
  label: "productionCompany".freeze,
7287
7777
  rangeIncludes: "schema:Organization".freeze,
7288
7778
  type: "rdf:Property".freeze
7779
+ property :productionDate,
7780
+ comment: %(The date of production of the item, e.g. vehicle.).freeze,
7781
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7782
+ domainIncludes: ["schema:Vehicle".freeze, "schema:Product".freeze],
7783
+ label: "productionDate".freeze,
7784
+ rangeIncludes: "schema:Date".freeze,
7785
+ type: "rdf:Property".freeze
7289
7786
  property :proficiencyLevel,
7290
7787
  comment: %(Proficiency needed for this content; expected values: 'Beginner', 'Expert'.).freeze,
7291
7788
  domainIncludes: "schema:TechArticle".freeze,
@@ -7306,9 +7803,9 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7306
7803
  type: "rdf:Property".freeze
7307
7804
  property :programmingLanguage,
7308
7805
  comment: %(The computer programming language.).freeze,
7309
- domainIncludes: "schema:Code".freeze,
7806
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
7310
7807
  label: "programmingLanguage".freeze,
7311
- rangeIncludes: "schema:Thing".freeze,
7808
+ rangeIncludes: "schema:Language".freeze,
7312
7809
  type: "rdf:Property".freeze
7313
7810
  property :programmingModel,
7314
7811
  comment: %(Indicates whether API is managed or unmanaged.).freeze,
@@ -7316,6 +7813,15 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7316
7813
  label: "programmingModel".freeze,
7317
7814
  rangeIncludes: "schema:Text".freeze,
7318
7815
  type: "rdf:Property".freeze
7816
+ property :propertyID,
7817
+ comment: %(A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be
7818
+ \(1\) a prefixed string, mainly meant to be used with standards for product properties; \(2\) a site-specific, non-prefixed string \(e.g. the primary key of the property or the vendor-specific id of the property\), or \(3\)
7819
+ a URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property \(e.g. a glossary entry\).
7820
+ Standards bodies should promote a standard prefix for the identifiers of properties from their standards.).freeze,
7821
+ domainIncludes: "schema:PropertyValue".freeze,
7822
+ label: "propertyID".freeze,
7823
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
7824
+ type: "rdf:Property".freeze
7319
7825
  property :proprietaryName,
7320
7826
  comment: %(Proprietary name given to the diet plan, typically by its originator or creator.).freeze,
7321
7827
  domainIncludes: "schema:Diet".freeze,
@@ -7334,6 +7840,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7334
7840
  label: "provider".freeze,
7335
7841
  rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
7336
7842
  type: "rdf:Property".freeze
7843
+ property :providesBroadcastService,
7844
+ comment: %(The BroadcastService offered on this channel.).freeze,
7845
+ domainIncludes: "schema:BroadcastChannel".freeze,
7846
+ label: "providesBroadcastService".freeze,
7847
+ rangeIncludes: "schema:BroadcastService".freeze,
7848
+ type: "rdf:Property".freeze
7337
7849
  property :providesService,
7338
7850
  comment: %(The service provided by this channel.).freeze,
7339
7851
  domainIncludes: "schema:ServiceChannel".freeze,
@@ -7341,8 +7853,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7341
7853
  rangeIncludes: "schema:Service".freeze,
7342
7854
  type: "rdf:Property".freeze
7343
7855
  property :publication,
7344
- comment: %(A publication event associated with the episode, clip or media object.).freeze,
7345
- domainIncludes: ["schema:MediaObject".freeze, "schema:Episode".freeze, "schema:Clip".freeze],
7856
+ comment: %(A publication event associated with the item.).freeze,
7857
+ domainIncludes: "schema:CreativeWork".freeze,
7346
7858
  label: "publication".freeze,
7347
7859
  rangeIncludes: "schema:PublicationEvent".freeze,
7348
7860
  type: "rdf:Property".freeze
@@ -7370,6 +7882,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7370
7882
  label: "publishingPrinciples".freeze,
7371
7883
  rangeIncludes: "schema:URL".freeze,
7372
7884
  type: "rdf:Property".freeze
7885
+ property :purchaseDate,
7886
+ comment: %(The date the item e.g. vehicle was purchased by the current owner.).freeze,
7887
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
7888
+ domainIncludes: ["schema:Vehicle".freeze, "schema:Product".freeze],
7889
+ label: "purchaseDate".freeze,
7890
+ rangeIncludes: "schema:Date".freeze,
7891
+ type: "rdf:Property".freeze
7373
7892
  property :purpose,
7374
7893
  comment: %(A goal towards an action is taken. Can be concrete or abstract.).freeze,
7375
7894
  domainIncludes: ["schema:MedicalDevice".freeze, "schema:AllocateAction".freeze, "schema:PayAction".freeze],
@@ -7386,7 +7905,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7386
7905
  comment: %(A sub property of instrument. The query used on this action.).freeze,
7387
7906
  domainIncludes: "schema:SearchAction".freeze,
7388
7907
  label: "query".freeze,
7389
- rangeIncludes: ["schema:Class".freeze, "schema:Text".freeze],
7908
+ rangeIncludes: "schema:Text".freeze,
7390
7909
  subPropertyOf: "schema:instrument".freeze,
7391
7910
  type: "rdf:Property".freeze
7392
7911
  property :quest,
@@ -7399,7 +7918,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7399
7918
  comment: %(A sub property of object. A question.).freeze,
7400
7919
  domainIncludes: "schema:AskAction".freeze,
7401
7920
  label: "question".freeze,
7402
- rangeIncludes: "schema:Text".freeze,
7921
+ rangeIncludes: "schema:Question".freeze,
7403
7922
  subPropertyOf: "schema:object".freeze,
7404
7923
  type: "rdf:Property".freeze
7405
7924
  property :rangeIncludes,
@@ -7412,7 +7931,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7412
7931
  comment: %(The count of total number of ratings.).freeze,
7413
7932
  domainIncludes: "schema:AggregateRating".freeze,
7414
7933
  label: "ratingCount".freeze,
7415
- rangeIncludes: "schema:Number".freeze,
7934
+ rangeIncludes: "schema:Integer".freeze,
7416
7935
  type: "rdf:Property".freeze
7417
7936
  property :ratingValue,
7418
7937
  comment: %(The rating for the content.).freeze,
@@ -7452,11 +7971,17 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7452
7971
  label: "recipeCuisine".freeze,
7453
7972
  rangeIncludes: "schema:Text".freeze,
7454
7973
  type: "rdf:Property".freeze
7974
+ property :recipeIngredient,
7975
+ comment: %(A single ingredient used in the recipe, e.g. sugar, flour or garlic.).freeze,
7976
+ domainIncludes: "schema:Recipe".freeze,
7977
+ label: "recipeIngredient".freeze,
7978
+ rangeIncludes: "schema:Text".freeze,
7979
+ type: "rdf:Property".freeze
7455
7980
  property :recipeInstructions,
7456
- comment: %(The steps to make the dish.).freeze,
7981
+ comment: %(A step or instruction involved in making the recipe.).freeze,
7457
7982
  domainIncludes: "schema:Recipe".freeze,
7458
7983
  label: "recipeInstructions".freeze,
7459
- rangeIncludes: "schema:Text".freeze,
7984
+ rangeIncludes: ["schema:Text".freeze, "schema:ItemList".freeze],
7460
7985
  type: "rdf:Property".freeze
7461
7986
  property :recipeYield,
7462
7987
  comment: %(The quantity produced by the recipe \(for example, number of people served, number of servings, etc\).).freeze,
@@ -7494,6 +8019,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7494
8019
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
7495
8020
  domainIncludes: "schema:MusicRelease".freeze,
7496
8021
  label: "recordLabel".freeze,
8022
+ "owl:equivalentProperty" => %(mo:label).freeze,
7497
8023
  rangeIncludes: "schema:Organization".freeze,
7498
8024
  type: "rdf:Property".freeze
7499
8025
  property :recordedAs,
@@ -7673,6 +8199,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7673
8199
  domainIncludes: "schema:SoftwareApplication".freeze,
7674
8200
  label: "requirements".freeze,
7675
8201
  rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
8202
+ "schema:supersededBy" => %(schema:softwareRequirements).freeze,
7676
8203
  type: "rdf:Property".freeze
7677
8204
  property :requiresSubscription,
7678
8205
  comment: %(Indicates if use of the media require a subscription \(either paid or free\). Allowed values are <code>true</code> or <code>false</code> \(note that an earlier version had 'yes', 'no'\).).freeze,
@@ -7722,6 +8249,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7722
8249
  label: "result".freeze,
7723
8250
  rangeIncludes: "schema:Thing".freeze,
7724
8251
  type: "rdf:Property".freeze
8252
+ property :resultComment,
8253
+ comment: %(A sub property of result. The Comment created or sent as a result of this action.).freeze,
8254
+ domainIncludes: ["schema:CommentAction".freeze, "schema:ReplyAction".freeze],
8255
+ label: "resultComment".freeze,
8256
+ rangeIncludes: "schema:Comment".freeze,
8257
+ subPropertyOf: "schema:result".freeze,
8258
+ type: "rdf:Property".freeze
7725
8259
  property :resultReview,
7726
8260
  comment: %(A sub property of result. The review that resulted in the performing of the action.).freeze,
7727
8261
  domainIncludes: "schema:ReviewAction".freeze,
@@ -7731,7 +8265,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7731
8265
  type: "rdf:Property".freeze
7732
8266
  property :review,
7733
8267
  comment: %(A review of the item.).freeze,
7734
- domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Offer".freeze, "schema:Product".freeze],
8268
+ domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Brand".freeze, "schema:Service".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Offer".freeze, "schema:Product".freeze],
7735
8269
  label: "review".freeze,
7736
8270
  rangeIncludes: "schema:Review".freeze,
7737
8271
  type: "rdf:Property".freeze
@@ -7745,7 +8279,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7745
8279
  comment: %(The count of total number of reviews.).freeze,
7746
8280
  domainIncludes: "schema:AggregateRating".freeze,
7747
8281
  label: "reviewCount".freeze,
7748
- rangeIncludes: "schema:Number".freeze,
8282
+ rangeIncludes: "schema:Integer".freeze,
7749
8283
  type: "rdf:Property".freeze
7750
8284
  property :reviewRating,
7751
8285
  comment: %(The rating given in this review. Note that reviews can themselves be rated. The <code>reviewRating</code> applies to rating given by the review. The <code>aggregateRating</code> property applies to the review itself, as a creative work.).freeze,
@@ -7798,9 +8332,16 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7798
8332
  type: "rdf:Property".freeze
7799
8333
  property :runtime,
7800
8334
  comment: %(Runtime platform or script interpreter dependencies \(Example - Java v1, Python2.3, .Net Framework 3.0\).).freeze,
7801
- domainIncludes: "schema:Code".freeze,
8335
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
7802
8336
  label: "runtime".freeze,
7803
8337
  rangeIncludes: "schema:Text".freeze,
8338
+ "schema:supersededBy" => %(schema:runtimePlatform).freeze,
8339
+ type: "rdf:Property".freeze
8340
+ property :runtimePlatform,
8341
+ comment: %(Runtime platform or script interpreter dependencies \(Example - Java v1, Python2.3, .Net Framework 3.0\).).freeze,
8342
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
8343
+ label: "runtimePlatform".freeze,
8344
+ rangeIncludes: "schema:Text".freeze,
7804
8345
  type: "rdf:Property".freeze
7805
8346
  property :safetyConsideration,
7806
8347
  comment: %(Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.).freeze,
@@ -7822,9 +8363,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7822
8363
  type: "rdf:Property".freeze
7823
8364
  property :sampleType,
7824
8365
  comment: %(Full \(compile ready\) solution, code snippet, inline code, scripts, template.).freeze,
7825
- domainIncludes: "schema:Code".freeze,
8366
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
7826
8367
  label: "sampleType".freeze,
7827
8368
  rangeIncludes: "schema:Text".freeze,
8369
+ "schema:supersededBy" => %(schema:codeSampleType).freeze,
7828
8370
  type: "rdf:Property".freeze
7829
8371
  property :saturatedFatContent,
7830
8372
  comment: %(The number of grams of saturated fat.).freeze,
@@ -7844,6 +8386,18 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7844
8386
  label: "scheduledTime".freeze,
7845
8387
  rangeIncludes: "schema:DateTime".freeze,
7846
8388
  type: "rdf:Property".freeze
8389
+ property :schemaVersion,
8390
+ comment: %(Indicates \(by URL or string\) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application. ).freeze,
8391
+ domainIncludes: "schema:CreativeWork".freeze,
8392
+ label: "schemaVersion".freeze,
8393
+ rangeIncludes: ["schema:URL".freeze, "schema:Text".freeze],
8394
+ type: "rdf:Property".freeze
8395
+ property :screenCount,
8396
+ comment: %(The number of screens in the movie theater.).freeze,
8397
+ domainIncludes: "schema:MovieTheater".freeze,
8398
+ label: "screenCount".freeze,
8399
+ rangeIncludes: "schema:Number".freeze,
8400
+ type: "rdf:Property".freeze
7847
8401
  property :screenshot,
7848
8402
  comment: %(A link to a screenshot image of the app.).freeze,
7849
8403
  domainIncludes: "schema:SoftwareApplication".freeze,
@@ -7854,12 +8408,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7854
8408
  comment: %(A season in a media series.).freeze,
7855
8409
  domainIncludes: ["schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7856
8410
  label: "season".freeze,
7857
- rangeIncludes: "schema:Season".freeze,
8411
+ rangeIncludes: "schema:CreativeWorkSeason".freeze,
8412
+ "schema:supersededBy" => %(schema:containsSeason).freeze,
7858
8413
  subPropertyOf: "schema:hasPart".freeze,
7859
8414
  type: "rdf:Property".freeze
7860
8415
  property :seasonNumber,
7861
8416
  comment: %(Position of the season within an ordered group of seasons.).freeze,
7862
- domainIncludes: "schema:Season".freeze,
8417
+ domainIncludes: "schema:CreativeWorkSeason".freeze,
7863
8418
  label: "seasonNumber".freeze,
7864
8419
  rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze],
7865
8420
  subPropertyOf: "schema:position".freeze,
@@ -7868,7 +8423,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7868
8423
  comment: %(A season in a media series.).freeze,
7869
8424
  domainIncludes: ["schema:VideoGameSeries".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
7870
8425
  label: "seasons".freeze,
7871
- rangeIncludes: "schema:Season".freeze,
8426
+ rangeIncludes: "schema:CreativeWorkSeason".freeze,
7872
8427
  "schema:supersededBy" => %(schema:season).freeze,
7873
8428
  type: "rdf:Property".freeze
7874
8429
  property :seatNumber,
@@ -7901,6 +8456,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7901
8456
  label: "secondaryPrevention".freeze,
7902
8457
  rangeIncludes: "schema:MedicalTherapy".freeze,
7903
8458
  type: "rdf:Property".freeze
8459
+ property :securityScreening,
8460
+ comment: %(The type of security screening the passenger is subject to.).freeze,
8461
+ domainIncludes: "schema:FlightReservation".freeze,
8462
+ label: "securityScreening".freeze,
8463
+ rangeIncludes: "schema:Text".freeze,
8464
+ type: "rdf:Property".freeze
7904
8465
  property :seeks,
7905
8466
  comment: %(A pointer to products or services sought by the organization or person \(demand\).).freeze,
7906
8467
  domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
@@ -7962,6 +8523,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7962
8523
  domainIncludes: "schema:Service".freeze,
7963
8524
  label: "serviceAudience".freeze,
7964
8525
  rangeIncludes: "schema:Audience".freeze,
8526
+ "schema:supersededBy" => %(schema:audience).freeze,
7965
8527
  type: "rdf:Property".freeze
7966
8528
  property :serviceLocation,
7967
8529
  comment: %(The location \(e.g. civic structure, local business, etc.\) where a person can go to access the service.).freeze,
@@ -7975,6 +8537,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
7975
8537
  label: "serviceOperator".freeze,
7976
8538
  rangeIncludes: "schema:Organization".freeze,
7977
8539
  type: "rdf:Property".freeze
8540
+ property :serviceOutput,
8541
+ comment: %(The tangible thing generated by the service, e.g. a passport, permit, etc.).freeze,
8542
+ domainIncludes: "schema:Service".freeze,
8543
+ label: "serviceOutput".freeze,
8544
+ rangeIncludes: "schema:Thing".freeze,
8545
+ type: "rdf:Property".freeze
7978
8546
  property :servicePhone,
7979
8547
  comment: %(The phone number to use to access the service.).freeze,
7980
8548
  domainIncludes: "schema:ServiceChannel".freeze,
@@ -8085,6 +8653,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8085
8653
  label: "softwareHelp".freeze,
8086
8654
  rangeIncludes: "schema:CreativeWork".freeze,
8087
8655
  type: "rdf:Property".freeze
8656
+ property :softwareRequirements,
8657
+ comment: %(Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application \(Examples: DirectX, Java or .NET runtime\).).freeze,
8658
+ domainIncludes: "schema:SoftwareApplication".freeze,
8659
+ label: "softwareRequirements".freeze,
8660
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
8661
+ type: "rdf:Property".freeze
8088
8662
  property :softwareVersion,
8089
8663
  comment: %(Version of the software instance.).freeze,
8090
8664
  domainIncludes: "schema:SoftwareApplication".freeze,
@@ -8180,7 +8754,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8180
8754
  type: "rdf:Property".freeze
8181
8755
  property :startDate,
8182
8756
  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,
8183
- domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:Season".freeze, "schema:Series".freeze, "schema:DatedMoneySpecification".freeze],
8757
+ domainIncludes: ["schema:Role".freeze, "schema:Event".freeze, "schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze],
8184
8758
  label: "startDate".freeze,
8185
8759
  rangeIncludes: "schema:Date".freeze,
8186
8760
  type: "rdf:Property".freeze
@@ -8198,6 +8772,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8198
8772
  label: "status".freeze,
8199
8773
  rangeIncludes: "schema:MedicalStudyStatus".freeze,
8200
8774
  type: "rdf:Property".freeze
8775
+ property :steeringPosition,
8776
+ comment: %(The position of the steering wheel or similar device \(mostly for cars\).).freeze,
8777
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
8778
+ domainIncludes: "schema:Vehicle".freeze,
8779
+ label: "steeringPosition".freeze,
8780
+ rangeIncludes: "schema:SteeringPositionValue".freeze,
8781
+ type: "rdf:Property".freeze
8201
8782
  property :stepValue,
8202
8783
  comment: %(The stepValue attribute indicates the granularity that is expected \(and required\) of the value in a PropertyValueSpecification.).freeze,
8203
8784
  domainIncludes: "schema:PropertyValueSpecification".freeze,
@@ -8301,6 +8882,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8301
8882
  label: "subTest".freeze,
8302
8883
  rangeIncludes: "schema:MedicalTest".freeze,
8303
8884
  type: "rdf:Property".freeze
8885
+ property :subtitleLanguage,
8886
+ comment: %(Languages in which subtitles/captions are available, in <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard format.</a>).freeze,
8887
+ domainIncludes: ["schema:Movie".freeze, "schema:ScreeningEvent".freeze, "schema:TVEpisode".freeze],
8888
+ label: "subtitleLanguage".freeze,
8889
+ rangeIncludes: ["schema:Text".freeze, "schema:Language".freeze],
8890
+ type: "rdf:Property".freeze
8304
8891
  property :subtype,
8305
8892
  comment: %(A more specific type of the condition, where applicable, for example 'Type 1 Diabetes', 'Type 2 Diabetes', or 'Gestational Diabetes' for Diabetes.).freeze,
8306
8893
  domainIncludes: "schema:MedicalCondition".freeze,
@@ -8350,10 +8937,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8350
8937
  rangeIncludes: "schema:Event".freeze,
8351
8938
  type: "rdf:Property".freeze
8352
8939
  property :supersededBy,
8353
- comment: %(Relates a property to one that supersedes it.).freeze,
8354
- domainIncludes: "schema:Property".freeze,
8940
+ comment: %(Relates a term \(i.e. a property, class or enumeration\) to one that supersedes it.).freeze,
8941
+ domainIncludes: ["schema:Property".freeze, "schema:Class".freeze, "schema:Enumeration".freeze],
8355
8942
  label: "supersededBy".freeze,
8356
- rangeIncludes: "schema:Property".freeze,
8943
+ rangeIncludes: ["schema:Property".freeze, "schema:Class".freeze, "schema:Enumeration".freeze],
8357
8944
  type: "rdf:Property".freeze
8358
8945
  property :supplyTo,
8359
8946
  comment: %(The area to which the artery supplies blood.).freeze,
@@ -8366,6 +8953,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8366
8953
  domainIncludes: "schema:VisualArtwork".freeze,
8367
8954
  label: "surface".freeze,
8368
8955
  rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
8956
+ "schema:supersededBy" => %(schema:artworkSurface).freeze,
8369
8957
  type: "rdf:Property".freeze
8370
8958
  property :target,
8371
8959
  comment: %(Indicates a target EntryPoint for an Action.).freeze,
@@ -8373,6 +8961,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8373
8961
  label: "target".freeze,
8374
8962
  rangeIncludes: "schema:EntryPoint".freeze,
8375
8963
  type: "rdf:Property".freeze
8964
+ property :targetCollection,
8965
+ comment: %(A sub property of object. The collection target of the action.).freeze,
8966
+ domainIncludes: "schema:UpdateAction".freeze,
8967
+ label: "targetCollection".freeze,
8968
+ rangeIncludes: "schema:Thing".freeze,
8969
+ subPropertyOf: "schema:object".freeze,
8970
+ type: "rdf:Property".freeze
8376
8971
  property :targetDescription,
8377
8972
  comment: %(The description of a node in an established educational framework.).freeze,
8378
8973
  domainIncludes: "schema:AlignmentObject".freeze,
@@ -8399,7 +8994,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8399
8994
  type: "rdf:Property".freeze
8400
8995
  property :targetProduct,
8401
8996
  comment: %(Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.).freeze,
8402
- domainIncludes: "schema:Code".freeze,
8997
+ domainIncludes: "schema:SoftwareSourceCode".freeze,
8403
8998
  label: "targetProduct".freeze,
8404
8999
  rangeIncludes: "schema:SoftwareApplication".freeze,
8405
9000
  type: "rdf:Property".freeze
@@ -8426,6 +9021,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8426
9021
  domainIncludes: "schema:Dataset".freeze,
8427
9022
  label: "temporal".freeze,
8428
9023
  rangeIncludes: "schema:DateTime".freeze,
9024
+ "schema:supersededBy" => %(schema:datasetTimeInterval).freeze,
8429
9025
  type: "rdf:Property".freeze
8430
9026
  property :text,
8431
9027
  comment: %(The textual content of this CreativeWork.).freeze,
@@ -8540,7 +9136,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8540
9136
  type: "rdf:Property".freeze
8541
9137
  property :trailer,
8542
9138
  comment: %(The trailer of a movie or tv/radio series, season, episode, etc.).freeze,
8543
- domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:Season".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze],
9139
+ domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:CreativeWorkSeason".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze],
8544
9140
  label: "trailer".freeze,
8545
9141
  rangeIncludes: "schema:VideoObject".freeze,
8546
9142
  type: "rdf:Property".freeze
@@ -8617,9 +9213,16 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8617
9213
  rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
8618
9214
  type: "rdf:Property".freeze
8619
9215
  property :unitCode,
8620
- comment: %(The unit of measurement given using the UN/CEFACT Common Code \(3 characters\).).freeze,
8621
- domainIncludes: ["schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze],
9216
+ comment: %(The unit of measurement given using the UN/CEFACT Common Code \(3 characters\) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.).freeze,
9217
+ domainIncludes: ["schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze, "schema:PropertyValue".freeze],
8622
9218
  label: "unitCode".freeze,
9219
+ rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
9220
+ type: "rdf:Property".freeze
9221
+ property :unitText,
9222
+ comment: %(A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for
9223
+ <a href='unitCode'>unitCode</a>.).freeze,
9224
+ domainIncludes: ["schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze],
9225
+ label: "unitText".freeze,
8623
9226
  rangeIncludes: "schema:Text".freeze,
8624
9227
  type: "rdf:Property".freeze
8625
9228
  property :unsaturatedFatContent,
@@ -8635,8 +9238,8 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8635
9238
  rangeIncludes: "schema:Date".freeze,
8636
9239
  type: "rdf:Property".freeze
8637
9240
  property :upvoteCount,
8638
- comment: %(The number of upvotes this question has received from the community.).freeze,
8639
- domainIncludes: ["schema:Question".freeze, "schema:Answer".freeze, "schema:Comment".freeze],
9241
+ comment: %(The number of upvotes this question, answer or comment has received from the community.).freeze,
9242
+ domainIncludes: ["schema:Question".freeze, "schema:Comment".freeze],
8640
9243
  label: "upvoteCount".freeze,
8641
9244
  rangeIncludes: "schema:Integer".freeze,
8642
9245
  type: "rdf:Property".freeze
@@ -8695,10 +9298,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8695
9298
  rangeIncludes: "schema:Date".freeze,
8696
9299
  type: "rdf:Property".freeze
8697
9300
  property :value,
8698
- comment: %(The value of the product characteristic.).freeze,
8699
- domainIncludes: "schema:QuantitativeValue".freeze,
9301
+ comment: %(The value of the quantitative value or property value node. For QuantitativeValue, the recommended type for values is 'Number'. For PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.).freeze,
9302
+ domainIncludes: ["schema:QuantitativeValue".freeze, "schema:PropertyValue".freeze],
8700
9303
  label: "value".freeze,
8701
- rangeIncludes: "schema:Number".freeze,
9304
+ rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze, "schema:Boolean".freeze, "schema:StructuredValue".freeze],
8702
9305
  type: "rdf:Property".freeze
8703
9306
  property :valueAddedTaxIncluded,
8704
9307
  comment: %(Specifies whether the applicable value-added tax \(VAT\) is included in the price specification or not.).freeze,
@@ -8732,9 +9335,9 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8732
9335
  type: "rdf:Property".freeze
8733
9336
  property :valueReference,
8734
9337
  comment: %(A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.).freeze,
8735
- domainIncludes: ["schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze],
9338
+ domainIncludes: ["schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze, "schema:PropertyValue".freeze],
8736
9339
  label: "valueReference".freeze,
8737
- rangeIncludes: ["schema:Enumeration".freeze, "schema:StructuredValue".freeze],
9340
+ rangeIncludes: ["schema:Enumeration".freeze, "schema:StructuredValue".freeze, "schema:PropertyValue".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze],
8738
9341
  type: "rdf:Property".freeze
8739
9342
  property :valueRequired,
8740
9343
  comment: %(Whether the property must be filled in to complete the action. Default is false.).freeze,
@@ -8748,6 +9351,68 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8748
9351
  label: "vatID".freeze,
8749
9352
  rangeIncludes: "schema:Text".freeze,
8750
9353
  type: "rdf:Property".freeze
9354
+ property :vehicleConfiguration,
9355
+ comment: %(A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.).freeze,
9356
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9357
+ domainIncludes: "schema:Vehicle".freeze,
9358
+ label: "vehicleConfiguration".freeze,
9359
+ rangeIncludes: "schema:Text".freeze,
9360
+ type: "rdf:Property".freeze
9361
+ property :vehicleEngine,
9362
+ comment: %(Information about the engine or engines of the vehicle.).freeze,
9363
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9364
+ domainIncludes: "schema:Vehicle".freeze,
9365
+ label: "vehicleEngine".freeze,
9366
+ rangeIncludes: "schema:EngineSpecification".freeze,
9367
+ type: "rdf:Property".freeze
9368
+ property :vehicleIdentificationNumber,
9369
+ comment: %(The Vehicle Identification Number \(VIN\) is a unique serial number used by the automotive industry to identify individual motor vehicles.).freeze,
9370
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9371
+ domainIncludes: "schema:Vehicle".freeze,
9372
+ label: "vin".freeze,
9373
+ rangeIncludes: "schema:Text".freeze,
9374
+ subPropertyOf: "schema:serialNumber".freeze,
9375
+ type: "rdf:Property".freeze
9376
+ property :vehicleInteriorColor,
9377
+ comment: %(The color or color combination of the interior of the vehicle.).freeze,
9378
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9379
+ domainIncludes: "schema:Vehicle".freeze,
9380
+ label: "vehicleInteriorColor".freeze,
9381
+ rangeIncludes: "schema:Text".freeze,
9382
+ type: "rdf:Property".freeze
9383
+ property :vehicleInteriorType,
9384
+ comment: %(The type or material of the interior of the vehicle \(e.g. synthetic fabric, leather, wood, etc.\). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.).freeze,
9385
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9386
+ domainIncludes: "schema:Vehicle".freeze,
9387
+ label: "vehicleInteriorType".freeze,
9388
+ rangeIncludes: "schema:Text".freeze,
9389
+ type: "rdf:Property".freeze
9390
+ property :vehicleModelDate,
9391
+ comment: %(The release date of a vehicle model \(often used to differentiate versions of the same make and model\).).freeze,
9392
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9393
+ domainIncludes: "schema:Vehicle".freeze,
9394
+ label: "vehicleModelDate".freeze,
9395
+ rangeIncludes: "schema:Date".freeze,
9396
+ type: "rdf:Property".freeze
9397
+ property :vehicleSeatingCapacity,
9398
+ comment: %(The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.<br />
9399
+ Typical unit code\(s\): C62 for persons ).freeze,
9400
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9401
+ domainIncludes: "schema:Vehicle".freeze,
9402
+ label: "vehicleSeatingCapacity".freeze,
9403
+ rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Number".freeze],
9404
+ type: "rdf:Property".freeze
9405
+ property :vehicleSpecialUsage,
9406
+ comment: %(Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.).freeze,
9407
+ label: "vehicleSpecialUsage".freeze,
9408
+ type: "rdf:Property".freeze
9409
+ property :vehicleTransmission,
9410
+ comment: %(The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component\(s\) \("gearbox" for cars\).).freeze,
9411
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9412
+ domainIncludes: "schema:Vehicle".freeze,
9413
+ label: "vehicleTransmission".freeze,
9414
+ rangeIncludes: ["schema:Text".freeze, "schema:QualitativeValue".freeze, "schema:URL".freeze],
9415
+ type: "rdf:Property".freeze
8751
9416
  property :vendor,
8752
9417
  comment: %('vendor' is an earlier term for 'seller'.).freeze,
8753
9418
  domainIncludes: "schema:BuyAction".freeze,
@@ -8768,6 +9433,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8768
9433
  label: "video".freeze,
8769
9434
  rangeIncludes: "schema:VideoObject".freeze,
8770
9435
  type: "rdf:Property".freeze
9436
+ property :videoFormat,
9437
+ comment: %(The type of screening or video broadcast used \(e.g. IMAX, 3D, SD, HD, etc.\).).freeze,
9438
+ domainIncludes: ["schema:ScreeningEvent".freeze, "schema:TelevisionStation".freeze],
9439
+ label: "videoFormat".freeze,
9440
+ rangeIncludes: "schema:Text".freeze,
9441
+ type: "rdf:Property".freeze
8771
9442
  property :videoFrameSize,
8772
9443
  comment: %(The frame size of the video.).freeze,
8773
9444
  domainIncludes: "schema:VideoObject".freeze,
@@ -8806,6 +9477,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8806
9477
  domainIncludes: ["schema:BuyAction".freeze, "schema:SellAction".freeze],
8807
9478
  label: "warrantyPromise".freeze,
8808
9479
  rangeIncludes: "schema:WarrantyPromise".freeze,
9480
+ "schema:supersededBy" => %(schema:warranty).freeze,
8809
9481
  type: "rdf:Property".freeze
8810
9482
  property :warrantyScope,
8811
9483
  comment: %(The scope of the warranty promise.).freeze,
@@ -8870,6 +9542,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8870
9542
  label: "workPerformed".freeze,
8871
9543
  rangeIncludes: "schema:CreativeWork".freeze,
8872
9544
  type: "rdf:Property".freeze
9545
+ property :workPresented,
9546
+ comment: %(The movie presented during this event.).freeze,
9547
+ domainIncludes: "schema:ScreeningEvent".freeze,
9548
+ label: "workPresented".freeze,
9549
+ rangeIncludes: "schema:Movie".freeze,
9550
+ type: "rdf:Property".freeze
8873
9551
  property :workload,
8874
9552
  comment: %(Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.).freeze,
8875
9553
  domainIncludes: "schema:ExercisePlan".freeze,
@@ -8923,6 +9601,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
8923
9601
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
8924
9602
  label: "AlbumRelease".freeze,
8925
9603
  type: "schema:MusicAlbumReleaseType".freeze
9604
+ term :AllWheelDriveConfiguration,
9605
+ comment: %(All-wheel Drive is a transmission layout where the engine drives all four wheels.).freeze,
9606
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9607
+ label: "AllWheelDriveConfiguration".freeze,
9608
+ type: "schema:DriveWheelConfigurationValue".freeze
8926
9609
  term :AnaerobicActivity,
8927
9610
  comment: %(Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.).freeze,
8928
9611
  label: "AnaerobicActivity".freeze,
@@ -9064,6 +9747,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9064
9747
  comment: %(A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.).freeze,
9065
9748
  label: "DoubleBlindedTrial".freeze,
9066
9749
  type: "schema:MedicalTrialDesign".freeze
9750
+ term :DrivingSchoolVehicleUsage,
9751
+ comment: %(Indicates the usage of the vehicle for driving school.).freeze,
9752
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9753
+ label: "DrivingSchoolVehicleUsage".freeze,
9754
+ type: "schema:CarUsageType".freeze
9067
9755
  term :EBook,
9068
9756
  comment: %(Book format: Ebook.).freeze,
9069
9757
  label: "EBook".freeze,
@@ -9152,12 +9840,21 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9152
9840
  term :False,
9153
9841
  comment: %(The boolean value false.).freeze,
9154
9842
  label: "False".freeze,
9155
- subClassOf: "schema:Boolean".freeze,
9156
9843
  type: "schema:Boolean".freeze
9157
9844
  term :Flexibility,
9158
9845
  comment: %(Physical activity that is engaged in to improve joint and muscle flexibility.).freeze,
9159
9846
  label: "Flexibility".freeze,
9160
9847
  type: "schema:PhysicalActivityCategory".freeze
9848
+ term :FourWheelDriveConfiguration,
9849
+ comment: %(Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.).freeze,
9850
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9851
+ label: "FourWheelDriveConfiguration".freeze,
9852
+ type: "schema:DriveWheelConfigurationValue".freeze
9853
+ term :FrontWheelDriveConfiguration,
9854
+ comment: %(Front-wheel drive is a transmission layout where the engine drives the front wheels.).freeze,
9855
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9856
+ label: "FrontWheelDriveConfiguration".freeze,
9857
+ type: "schema:DriveWheelConfigurationValue".freeze
9161
9858
  term :Gastroenterologic,
9162
9859
  comment: %(A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.).freeze,
9163
9860
  label: "Gastroenterologic".freeze,
@@ -9174,6 +9871,10 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9174
9871
  comment: %(A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.).freeze,
9175
9872
  label: "Geriatric".freeze,
9176
9873
  type: "schema:MedicalSpecialty".freeze
9874
+ term :GroupBoardingPolicy,
9875
+ comment: %(The airline boards by groups based on check-in time, priority, etc.).freeze,
9876
+ label: "GroupBoardingPolicy".freeze,
9877
+ type: "schema:BoardingPolicyType".freeze
9177
9878
  term :Gynecologic,
9178
9879
  comment: %(A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.).freeze,
9179
9880
  label: "Gynecologic".freeze,
@@ -9235,6 +9936,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9235
9936
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
9236
9937
  label: "LaserDiscFormat".freeze,
9237
9938
  type: "schema:MusicReleaseFormatType".freeze
9939
+ term :LeftHandDriving,
9940
+ comment: %(The steering position is on the left side of the vehicle \(viewed from the main direction of driving\).).freeze,
9941
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
9942
+ label: "LeftHandDriving".freeze,
9943
+ type: "schema:SteeringPositionValue".freeze
9238
9944
  term :LeisureTimeActivity,
9239
9945
  comment: %(Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.).freeze,
9240
9946
  label: "LeisureTimeActivity".freeze,
@@ -9505,6 +10211,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9505
10211
  comment: %(A randomized trial design.).freeze,
9506
10212
  label: "RandomizedTrial".freeze,
9507
10213
  type: "schema:MedicalTrialDesign".freeze
10214
+ term :RearWheelDriveConfiguration,
10215
+ comment: %(Real-wheel drive is a transmission layout where the engine drives the rear wheels.).freeze,
10216
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
10217
+ label: "RearWheelDriveConfiguration".freeze,
10218
+ type: "schema:DriveWheelConfigurationValue".freeze
9508
10219
  term :Recruiting,
9509
10220
  comment: %(Recruiting participants.).freeze,
9510
10221
  label: "Recruiting".freeze,
@@ -9530,6 +10241,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9530
10241
  comment: %(A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.).freeze,
9531
10242
  label: "Renal".freeze,
9532
10243
  type: "schema:MedicalSpecialty".freeze
10244
+ term :RentalVehicleUsage,
10245
+ comment: %(Indicates the usage of the vehicle as a rental car.).freeze,
10246
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
10247
+ label: "RentalVehicleUsage".freeze,
10248
+ type: "schema:CarUsageType".freeze
9533
10249
  term :Researcher,
9534
10250
  comment: %(Researchers.).freeze,
9535
10251
  label: "Researcher".freeze,
@@ -9570,6 +10286,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9570
10286
  comment: %(A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.).freeze,
9571
10287
  label: "Rheumatologic".freeze,
9572
10288
  type: "schema:MedicalSpecialty".freeze
10289
+ term :RightHandDriving,
10290
+ comment: %(The steering position is on the right side of the vehicle \(viewed from the main direction of driving\).).freeze,
10291
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
10292
+ label: "RightHandDriving".freeze,
10293
+ type: "schema:SteeringPositionValue".freeze
9573
10294
  term :RsvpResponseMaybe,
9574
10295
  comment: %(The invitee may or may not attend.).freeze,
9575
10296
  label: "RsvpResponseMaybe".freeze,
@@ -9646,6 +10367,11 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9646
10367
  comment: %(Suspended.).freeze,
9647
10368
  label: "Suspended".freeze,
9648
10369
  type: "schema:MedicalStudyStatus".freeze
10370
+ term :TaxiVehicleUsage,
10371
+ comment: %(Indicates the usage of the car as a taxi.).freeze,
10372
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group).freeze,
10373
+ label: "TaxiVehicleUsage".freeze,
10374
+ type: "schema:CarUsageType".freeze
9649
10375
  term :Terminated,
9650
10376
  comment: %(Terminated.).freeze,
9651
10377
  label: "Terminated".freeze,
@@ -9681,7 +10407,6 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9681
10407
  term :True,
9682
10408
  comment: %(The boolean value true.).freeze,
9683
10409
  label: "True".freeze,
9684
- subClassOf: "schema:Boolean".freeze,
9685
10410
  type: "schema:Boolean".freeze
9686
10411
  term :Ultrasound,
9687
10412
  comment: %(Ultrasound imaging.).freeze,
@@ -9724,5 +10449,9 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
9724
10449
  comment: %(X-ray imaging.).freeze,
9725
10450
  label: "XRay".freeze,
9726
10451
  type: "schema:MedicalImagingTechnique".freeze
10452
+ term :ZoneBoardingPolicy,
10453
+ comment: %(The airline boards by zones of the plane.).freeze,
10454
+ label: "ZoneBoardingPolicy".freeze,
10455
+ type: "schema:BoardingPolicyType".freeze
9727
10456
  end
9728
10457
  end