rdf 1.1.4 → 1.1.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -111,6 +111,7 @@ module RDF
111
111
  # Extra definitions
112
112
  term :"",
113
113
  "dc11:title" => %(The RDF Schema vocabulary \(RDFS\)).freeze,
114
+ label: "".freeze,
114
115
  "rdfs:seeAlso" => %(http://www.w3.org/2000/01/rdf-schema-more).freeze,
115
116
  type: "owl:Ontology".freeze
116
117
  end
@@ -20,7 +20,7 @@ module RDF
20
20
  ).freeze,
21
21
  label: "RSA Private Key".freeze,
22
22
  "rdfs:seeAlso" => %(http://en.wikipedia.org/wiki/RSA).freeze,
23
- subClassOf: "cert:PrivateKey".freeze,
23
+ subClassOf: ["cert:PrivateKey".freeze, "rsa:RSAKey".freeze],
24
24
  type: "owl:Class".freeze,
25
25
  "vs:term_status" => %(unstable).freeze
26
26
  term :RSAPublicKey,
@@ -30,7 +30,7 @@ module RDF
30
30
  ).freeze,
31
31
  label: "RSA Public Key".freeze,
32
32
  "rdfs:seeAlso" => %(http://en.wikipedia.org/wiki/RSA).freeze,
33
- subClassOf: "cert:PublicKey".freeze,
33
+ subClassOf: ["cert:PublicKey".freeze, "rsa:RSAKey".freeze],
34
34
  type: "owl:Class".freeze,
35
35
  "vs:term_status" => %(unstable).freeze
36
36
 
@@ -23,7 +23,7 @@ module RDF
23
23
  term :AccountingService,
24
24
  comment: %(Accountancy business.).freeze,
25
25
  label: "AccountingService".freeze,
26
- subClassOf: "schema:FinancialService".freeze,
26
+ subClassOf: ["schema:FinancialService".freeze, "schema:ProfessionalService".freeze],
27
27
  type: "rdfs:Class".freeze
28
28
  term :AchieveAction,
29
29
  comment: %(The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.).freeze,
@@ -116,6 +116,7 @@ module RDF
116
116
  type: "rdfs:Class".freeze
117
117
  term :Answer,
118
118
  comment: %(An answer offered to a question; perhaps correct, perhaps opinionated or wrong.).freeze,
119
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange).freeze,
119
120
  label: "Answer".freeze,
120
121
  subClassOf: "schema:CreativeWork".freeze,
121
122
  type: "rdfs:Class".freeze
@@ -216,7 +217,7 @@ module RDF
216
217
  term :AutoPartsStore,
217
218
  comment: %(An auto parts store.).freeze,
218
219
  label: "AutoPartsStore".freeze,
219
- subClassOf: "schema:AutomotiveBusiness".freeze,
220
+ subClassOf: ["schema:AutomotiveBusiness".freeze, "schema:Store".freeze],
220
221
  type: "rdfs:Class".freeze
221
222
  term :AutoRental,
222
223
  comment: %(A car rental business.).freeze,
@@ -495,7 +496,7 @@ module RDF
495
496
  subClassOf: "schema:FindAction".freeze,
496
497
  type: "rdfs:Class".freeze
497
498
  term :CheckInAction,
498
- 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/existance.</li></ul>).freeze,
499
+ 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,
499
500
  label: "CheckInAction".freeze,
500
501
  subClassOf: "schema:CommunicateAction".freeze,
501
502
  type: "rdfs:Class".freeze
@@ -547,7 +548,7 @@ module RDF
547
548
  term :Class,
548
549
  comment: %(A class, also often called a 'Type'; equivalent to rdfs:Class.).freeze,
549
550
  label: "Class".freeze,
550
- subClassOf: "schema:Thing".freeze,
551
+ subClassOf: "schema:Intangible".freeze,
551
552
  type: "rdfs:Class".freeze
552
553
  term :Clip,
553
554
  comment: %(A short TV or radio program or a segment/part of a program.).freeze,
@@ -712,12 +713,14 @@ module RDF
712
713
  comment: %(A collection of datasets.).freeze,
713
714
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
714
715
  label: "DataCatalog".freeze,
716
+ "owl:equivalentClass" => %(dcat:DataCatalog).freeze,
715
717
  subClassOf: "schema:CreativeWork".freeze,
716
718
  type: "rdfs:Class".freeze
717
719
  term :DataDownload,
718
720
  comment: %(A dataset in downloadable form.).freeze,
719
721
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
720
722
  label: "DataDownload".freeze,
723
+ "owl:equivalentClass" => %(dcat:Distribution).freeze,
721
724
  subClassOf: "schema:MediaObject".freeze,
722
725
  type: "rdfs:Class".freeze
723
726
  term :DataType,
@@ -728,6 +731,7 @@ module RDF
728
731
  comment: %(A body of structured information describing some topic\(s\) of interest.).freeze,
729
732
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
730
733
  label: "Dataset".freeze,
734
+ "owl:equivalentClass" => [%(dcat:Dataset).freeze, %(void:Dataset).freeze, %(dc:Dataset).freeze],
731
735
  subClassOf: "schema:CreativeWork".freeze,
732
736
  type: "rdfs:Class".freeze
733
737
  term :Date,
@@ -785,7 +789,7 @@ module RDF
785
789
  subClassOf: "schema:Event".freeze,
786
790
  type: "rdfs:Class".freeze
787
791
  term :DeliveryMethod,
788
- comment: %(A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment 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.
792
+ 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.
789
793
 
790
794
  Commonly used values:
791
795
 
@@ -811,7 +815,7 @@ module RDF
811
815
  term :Dentist,
812
816
  comment: %(A dentist.).freeze,
813
817
  label: "Dentist".freeze,
814
- subClassOf: "schema:MedicalOrganization".freeze,
818
+ subClassOf: ["schema:MedicalOrganization".freeze, "schema:ProfessionalService".freeze],
815
819
  type: "rdfs:Class".freeze
816
820
  term :DepartAction,
817
821
  comment: %(The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.).freeze,
@@ -829,16 +833,16 @@ module RDF
829
833
  subClassOf: "schema:MedicalOrganization".freeze,
830
834
  type: "rdfs:Class".freeze
831
835
  term :DiagnosticProcedure,
832
- comment: %(A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes.).freeze,
836
+ comment: %(A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.).freeze,
833
837
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
834
838
  label: "DiagnosticProcedure".freeze,
835
- subClassOf: "schema:MedicalProcedure".freeze,
839
+ subClassOf: ["schema:MedicalProcedure".freeze, "schema:MedicalTest".freeze],
836
840
  type: "rdfs:Class".freeze
837
841
  term :Diet,
838
842
  comment: %(A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.).freeze,
839
843
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
840
844
  label: "Diet".freeze,
841
- subClassOf: "schema:CreativeWork".freeze,
845
+ subClassOf: ["schema:CreativeWork".freeze, "schema:LifestyleModification".freeze],
842
846
  type: "rdfs:Class".freeze
843
847
  term :DietarySupplement,
844
848
  comment: %(A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.).freeze,
@@ -911,7 +915,7 @@ module RDF
911
915
  term :DrugCostCategory,
912
916
  comment: %(Enumerated categories of medical drug costs.).freeze,
913
917
  label: "DrugCostCategory".freeze,
914
- subClassOf: "schema:MedicalEnumeration".freeze,
918
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
915
919
  type: "rdfs:Class".freeze
916
920
  term :DrugLegalStatus,
917
921
  comment: %(The legal availability status of a medical drug.).freeze,
@@ -922,12 +926,12 @@ module RDF
922
926
  term :DrugPregnancyCategory,
923
927
  comment: %(Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.).freeze,
924
928
  label: "DrugPregnancyCategory".freeze,
925
- subClassOf: "schema:MedicalEnumeration".freeze,
929
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
926
930
  type: "rdfs:Class".freeze
927
931
  term :DrugPrescriptionStatus,
928
932
  comment: %(Indicates whether this drug is available by prescription or over-the-counter.).freeze,
929
933
  label: "DrugPrescriptionStatus".freeze,
930
- subClassOf: "schema:MedicalEnumeration".freeze,
934
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
931
935
  type: "rdfs:Class".freeze
932
936
  term :DrugStrength,
933
937
  comment: %(A specific strength in which a medical drug is available in a specific country.).freeze,
@@ -969,7 +973,7 @@ module RDF
969
973
  term :Electrician,
970
974
  comment: %(An electrician.).freeze,
971
975
  label: "Electrician".freeze,
972
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
976
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
973
977
  type: "rdfs:Class".freeze
974
978
  term :ElectronicsStore,
975
979
  comment: %(An electronics store.).freeze,
@@ -1007,7 +1011,7 @@ module RDF
1007
1011
  subClassOf: "schema:ReactAction".freeze,
1008
1012
  type: "rdfs:Class".freeze
1009
1013
  term :Energy,
1010
- comment: %(Properties that take Enerygy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;').freeze,
1014
+ comment: %(Properties that take Energy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;').freeze,
1011
1015
  label: "Energy".freeze,
1012
1016
  subClassOf: "schema:Quantity".freeze,
1013
1017
  type: "rdfs:Class".freeze
@@ -1035,6 +1039,7 @@ module RDF
1035
1039
  term :Event,
1036
1040
  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,
1037
1041
  label: "Event".freeze,
1042
+ "owl:equivalentClass" => %(dc:Event).freeze,
1038
1043
  subClassOf: "schema:Thing".freeze,
1039
1044
  type: "rdfs:Class".freeze
1040
1045
  term :EventReservation,
@@ -1066,7 +1071,7 @@ module RDF
1066
1071
  comment: %(Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.).freeze,
1067
1072
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1068
1073
  label: "ExercisePlan".freeze,
1069
- subClassOf: "schema:CreativeWork".freeze,
1074
+ subClassOf: ["schema:CreativeWork".freeze, "schema:PhysicalActivity".freeze],
1070
1075
  type: "rdfs:Class".freeze
1071
1076
  term :FastFoodRestaurant,
1072
1077
  comment: %(A fast-food restaurant.).freeze,
@@ -1096,7 +1101,7 @@ module RDF
1096
1101
  term :FireStation,
1097
1102
  comment: %(A fire station. With firemen.).freeze,
1098
1103
  label: "FireStation".freeze,
1099
- subClassOf: "schema:CivicStructure".freeze,
1104
+ subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze],
1100
1105
  type: "rdfs:Class".freeze
1101
1106
  term :Flight,
1102
1107
  comment: %(An airline flight.).freeze,
@@ -1165,7 +1170,7 @@ module RDF
1165
1170
  term :GeneralContractor,
1166
1171
  comment: %(A general contractor.).freeze,
1167
1172
  label: "GeneralContractor".freeze,
1168
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
1173
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
1169
1174
  type: "rdfs:Class".freeze
1170
1175
  term :GeoCoordinates,
1171
1176
  comment: %(The geographic coordinates of a place or event.).freeze,
@@ -1241,7 +1246,7 @@ module RDF
1241
1246
  term :HealthClub,
1242
1247
  comment: %(A health club.).freeze,
1243
1248
  label: "HealthClub".freeze,
1244
- subClassOf: "schema:HealthAndBeautyBusiness".freeze,
1249
+ subClassOf: ["schema:HealthAndBeautyBusiness".freeze, "schema:SportsActivityLocation".freeze],
1245
1250
  type: "rdfs:Class".freeze
1246
1251
  term :HighSchool,
1247
1252
  comment: %(A high school.).freeze,
@@ -1271,7 +1276,7 @@ module RDF
1271
1276
  term :Hospital,
1272
1277
  comment: %(A hospital.).freeze,
1273
1278
  label: "Hospital".freeze,
1274
- subClassOf: "schema:CivicStructure".freeze,
1279
+ subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze, "schema:MedicalOrganization".freeze],
1275
1280
  type: "rdfs:Class".freeze
1276
1281
  term :Hostel,
1277
1282
  comment: %(A hostel.).freeze,
@@ -1286,7 +1291,7 @@ module RDF
1286
1291
  term :HousePainter,
1287
1292
  comment: %(A house painting service.).freeze,
1288
1293
  label: "HousePainter".freeze,
1289
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
1294
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
1290
1295
  type: "rdfs:Class".freeze
1291
1296
  term :IceCreamShop,
1292
1297
  comment: %(An ice cream shop).freeze,
@@ -1306,6 +1311,7 @@ module RDF
1306
1311
  term :ImageObject,
1307
1312
  comment: %(An image file.).freeze,
1308
1313
  label: "ImageObject".freeze,
1314
+ "owl:equivalentClass" => %(dc:Image).freeze,
1309
1315
  subClassOf: "schema:MediaObject".freeze,
1310
1316
  type: "rdfs:Class".freeze
1311
1317
  term :ImagingTest,
@@ -1324,7 +1330,7 @@ module RDF
1324
1330
  comment: %(Classes of agents or pathogens that transmit infectious diseases. Enumerated type.).freeze,
1325
1331
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1326
1332
  label: "InfectiousAgentClass".freeze,
1327
- subClassOf: "schema:MedicalEnumeration".freeze,
1333
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1328
1334
  type: "rdfs:Class".freeze
1329
1335
  term :InfectiousDisease,
1330
1336
  comment: %(An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.).freeze,
@@ -1488,7 +1494,7 @@ module RDF
1488
1494
  term :LocalBusiness,
1489
1495
  comment: %(A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.).freeze,
1490
1496
  label: "LocalBusiness".freeze,
1491
- subClassOf: "schema:Organization".freeze,
1497
+ subClassOf: ["schema:Organization".freeze, "schema:Place".freeze],
1492
1498
  type: "rdfs:Class".freeze
1493
1499
  term :LockerDelivery,
1494
1500
  comment: %(A DeliveryMethod in which an item is made available via locker.).freeze,
@@ -1498,7 +1504,7 @@ module RDF
1498
1504
  term :Locksmith,
1499
1505
  comment: %(A locksmith.).freeze,
1500
1506
  label: "Locksmith".freeze,
1501
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
1507
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
1502
1508
  type: "rdfs:Class".freeze
1503
1509
  term :LodgingBusiness,
1504
1510
  comment: %(A lodging business, such as a motel, hotel, or inn.).freeze,
@@ -1550,7 +1556,7 @@ module RDF
1550
1556
  comment: %(Target audiences for medical web pages. Enumerated type.).freeze,
1551
1557
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1552
1558
  label: "MedicalAudience".freeze,
1553
- subClassOf: "schema:Audience".freeze,
1559
+ subClassOf: ["schema:Audience".freeze, "schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze, "schema:PeopleAudience".freeze],
1554
1560
  type: "rdfs:Class".freeze
1555
1561
  term :MedicalCause,
1556
1562
  comment: %(The causative agent\(s\) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest \(the proximate cause\) would be the pulmonary embolism and not the fall. <p>Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.).freeze,
@@ -1597,7 +1603,7 @@ module RDF
1597
1603
  comment: %(Categories of medical devices, organized by the purpose or intended use of the device.).freeze,
1598
1604
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1599
1605
  label: "MedicalDevicePurpose".freeze,
1600
- subClassOf: "schema:MedicalEnumeration".freeze,
1606
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1601
1607
  type: "rdfs:Class".freeze
1602
1608
  term :MedicalEntity,
1603
1609
  comment: %(The most generic type of entity related to health and the practice of medicine.).freeze,
@@ -1608,13 +1614,13 @@ module RDF
1608
1614
  term :MedicalEnumeration,
1609
1615
  comment: %(Enumerations related to health and the practice of medicine.).freeze,
1610
1616
  label: "MedicalEnumeration".freeze,
1611
- subClassOf: "schema:MedicalIntangible".freeze,
1617
+ subClassOf: ["schema:MedicalIntangible".freeze, "schema:Enumeration".freeze],
1612
1618
  type: "rdfs:Class".freeze
1613
1619
  term :MedicalEvidenceLevel,
1614
1620
  comment: %(Level of evidence for a medical guideline. Enumerated type.).freeze,
1615
1621
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1616
1622
  label: "MedicalEvidenceLevel".freeze,
1617
- subClassOf: "schema:MedicalEnumeration".freeze,
1623
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1618
1624
  type: "rdfs:Class".freeze
1619
1625
  term :MedicalGuideline,
1620
1626
  comment: %(Any recommendation made by a standard society \(e.g. ACC/AHA\) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.).freeze,
@@ -1638,7 +1644,7 @@ module RDF
1638
1644
  comment: %(Any medical imaging modality typically used for diagnostic purposes. Enumerated type.).freeze,
1639
1645
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1640
1646
  label: "MedicalImagingTechnique".freeze,
1641
- subClassOf: "schema:MedicalEnumeration".freeze,
1647
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1642
1648
  type: "rdfs:Class".freeze
1643
1649
  term :MedicalIndication,
1644
1650
  comment: %(A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.).freeze,
@@ -1661,7 +1667,7 @@ module RDF
1661
1667
  comment: %(Design models for observational medical studies. Enumerated type.).freeze,
1662
1668
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1663
1669
  label: "MedicalObservationalStudyDesign".freeze,
1664
- subClassOf: "schema:MedicalEnumeration".freeze,
1670
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1665
1671
  type: "rdfs:Class".freeze
1666
1672
  term :MedicalOrganization,
1667
1673
  comment: %(A medical organization, such as a doctor's office or clinic.).freeze,
@@ -1678,7 +1684,7 @@ module RDF
1678
1684
  comment: %(An enumeration that describes different types of medical procedures.).freeze,
1679
1685
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1680
1686
  label: "MedicalProcedureType".freeze,
1681
- subClassOf: "schema:MedicalEnumeration".freeze,
1687
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1682
1688
  type: "rdfs:Class".freeze
1683
1689
  term :MedicalRiskCalculator,
1684
1690
  comment: %(A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.).freeze,
@@ -1725,7 +1731,7 @@ module RDF
1725
1731
  comment: %(Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.).freeze,
1726
1732
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1727
1733
  label: "MedicalSpecialty".freeze,
1728
- subClassOf: "schema:MedicalEnumeration".freeze,
1734
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze, "schema:Specialty".freeze],
1729
1735
  type: "rdfs:Class".freeze
1730
1736
  term :MedicalStudy,
1731
1737
  comment: %(A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.).freeze,
@@ -1737,7 +1743,7 @@ module RDF
1737
1743
  comment: %(The status of a medical study. Enumerated type.).freeze,
1738
1744
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1739
1745
  label: "MedicalStudyStatus".freeze,
1740
- subClassOf: "schema:MedicalEnumeration".freeze,
1746
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1741
1747
  type: "rdfs:Class".freeze
1742
1748
  term :MedicalSymptom,
1743
1749
  comment: %(Any indication of the existence of a medical condition or disease that is apparent to the patient.).freeze,
@@ -1773,7 +1779,7 @@ module RDF
1773
1779
  comment: %(Design models for medical trials. Enumerated type.).freeze,
1774
1780
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
1775
1781
  label: "MedicalTrialDesign".freeze,
1776
- subClassOf: "schema:MedicalEnumeration".freeze,
1782
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1777
1783
  type: "rdfs:Class".freeze
1778
1784
  term :MedicalWebPage,
1779
1785
  comment: %(A web page that provides medical information.).freeze,
@@ -1783,7 +1789,7 @@ module RDF
1783
1789
  term :MedicineSystem,
1784
1790
  comment: %(Systems of medical practice.).freeze,
1785
1791
  label: "MedicineSystem".freeze,
1786
- subClassOf: "schema:MedicalEnumeration".freeze,
1792
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
1787
1793
  type: "rdfs:Class".freeze
1788
1794
  term :MensClothingStore,
1789
1795
  comment: %(A men's clothing store.).freeze,
@@ -1848,7 +1854,7 @@ module RDF
1848
1854
  term :MovieTheater,
1849
1855
  comment: %(A movie theater.).freeze,
1850
1856
  label: "MovieTheater".freeze,
1851
- subClassOf: "schema:CivicStructure".freeze,
1857
+ subClassOf: ["schema:CivicStructure".freeze, "schema:EntertainmentBusiness".freeze],
1852
1858
  type: "rdfs:Class".freeze
1853
1859
  term :MovingCompany,
1854
1860
  comment: %(A moving company.).freeze,
@@ -2009,6 +2015,11 @@ module RDF
2009
2015
  label: "Organization".freeze,
2010
2016
  subClassOf: "schema:Thing".freeze,
2011
2017
  type: "rdfs:Class".freeze
2018
+ term :OrganizationRole,
2019
+ comment: %(A subclass of Role used to describe roles within organizations.).freeze,
2020
+ label: "OrganizationRole".freeze,
2021
+ subClassOf: "schema:Role".freeze,
2022
+ type: "rdfs:Class".freeze
2012
2023
  term :OrganizeAction,
2013
2024
  comment: %(The act of manipulating/administering/supervising/controlling one or more objects.).freeze,
2014
2025
  label: "OrganizeAction".freeze,
@@ -2036,10 +2047,10 @@ module RDF
2036
2047
  subClassOf: "schema:CreativeWork".freeze,
2037
2048
  type: "rdfs:Class".freeze
2038
2049
  term :PalliativeProcedure,
2039
- comment: %(A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition.).freeze,
2050
+ comment: %(A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.).freeze,
2040
2051
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
2041
2052
  label: "PalliativeProcedure".freeze,
2042
- subClassOf: "schema:MedicalProcedure".freeze,
2053
+ subClassOf: ["schema:MedicalProcedure".freeze, "schema:MedicalTherapy".freeze],
2043
2054
  type: "rdfs:Class".freeze
2044
2055
  term :ParcelDelivery,
2045
2056
  comment: %(The delivery of a parcel either via the postal service or a commercial service.).freeze,
@@ -2081,7 +2092,7 @@ module RDF
2081
2092
  subClassOf: "schema:MedicalTest".freeze,
2082
2093
  type: "rdfs:Class".freeze
2083
2094
  term :PawnShop,
2084
- comment: %(A pawnstore.).freeze,
2095
+ comment: %(A pawn store.).freeze,
2085
2096
  label: "PawnShop".freeze,
2086
2097
  subClassOf: "schema:Store".freeze,
2087
2098
  type: "rdfs:Class".freeze
@@ -2125,8 +2136,13 @@ module RDF
2125
2136
  label: "PerformAction".freeze,
2126
2137
  subClassOf: "schema:PlayAction".freeze,
2127
2138
  type: "rdfs:Class".freeze
2139
+ term :PerformanceRole,
2140
+ comment: %(A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.).freeze,
2141
+ label: "PerformanceRole".freeze,
2142
+ subClassOf: "schema:Role".freeze,
2143
+ type: "rdfs:Class".freeze
2128
2144
  term :PerformingArtsTheater,
2129
- comment: %(A theatre or other performing art center.).freeze,
2145
+ comment: %(A theater or other performing art center.).freeze,
2130
2146
  label: "PerformingArtsTheater".freeze,
2131
2147
  subClassOf: "schema:CivicStructure".freeze,
2132
2148
  type: "rdfs:Class".freeze
@@ -2144,6 +2160,7 @@ module RDF
2144
2160
  comment: %(A person \(alive, dead, undead, or fictional\).).freeze,
2145
2161
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
2146
2162
  label: "Person".freeze,
2163
+ "owl:equivalentClass" => %(foaf:Person).freeze,
2147
2164
  subClassOf: "schema:Thing".freeze,
2148
2165
  type: "rdfs:Class".freeze
2149
2166
  term :PetStore,
@@ -2176,13 +2193,13 @@ module RDF
2176
2193
  comment: %(Categories of physical activity, organized by physiologic classification.).freeze,
2177
2194
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
2178
2195
  label: "PhysicalActivityCategory".freeze,
2179
- subClassOf: "schema:MedicalEnumeration".freeze,
2196
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
2180
2197
  type: "rdfs:Class".freeze
2181
2198
  term :PhysicalExam,
2182
2199
  comment: %(A type of physical examination of a patient performed by a physician. Enumerated type.).freeze,
2183
2200
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
2184
2201
  label: "PhysicalExam".freeze,
2185
- subClassOf: "schema:MedicalEnumeration".freeze,
2202
+ subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Enumeration".freeze],
2186
2203
  type: "rdfs:Class".freeze
2187
2204
  term :PhysicalTherapy,
2188
2205
  comment: %(A process of progressive physical care and rehabilitation aimed at improving a health condition.).freeze,
@@ -2211,7 +2228,7 @@ module RDF
2211
2228
  subClassOf: "schema:OrganizeAction".freeze,
2212
2229
  type: "rdfs:Class".freeze
2213
2230
  term :PlayAction,
2214
- comment: %(The act of playing/exercising/training/performing for enjoyment, leisure, recreation, competion or exercise.<p>Related actions:</p><ul><li><a href="http://schema.org/ListenAction">ListenAction</a>: Unlike ListenAction \(which is under ConsumeAction\), PlayAction refers to performing for an audience or at an event, rather than consuming music.</li><li><a href="http://schema.org/WatchAction">WatchAction</a>: Unlike WatchAction \(which is under ConsumeAction\), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.</li></ul>).freeze,
2231
+ comment: %(The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.<p>Related actions:</p><ul><li><a href="http://schema.org/ListenAction">ListenAction</a>: Unlike ListenAction \(which is under ConsumeAction\), PlayAction refers to performing for an audience or at an event, rather than consuming music.</li><li><a href="http://schema.org/WatchAction">WatchAction</a>: Unlike WatchAction \(which is under ConsumeAction\), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.</li></ul>).freeze,
2215
2232
  label: "PlayAction".freeze,
2216
2233
  subClassOf: "schema:Action".freeze,
2217
2234
  type: "rdfs:Class".freeze
@@ -2223,12 +2240,12 @@ module RDF
2223
2240
  term :Plumber,
2224
2241
  comment: %(A plumbing service.).freeze,
2225
2242
  label: "Plumber".freeze,
2226
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
2243
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
2227
2244
  type: "rdfs:Class".freeze
2228
2245
  term :PoliceStation,
2229
2246
  comment: %(A police station.).freeze,
2230
2247
  label: "PoliceStation".freeze,
2231
- subClassOf: "schema:CivicStructure".freeze,
2248
+ subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze],
2232
2249
  type: "rdfs:Class".freeze
2233
2250
  term :Pond,
2234
2251
  comment: %(A pond).freeze,
@@ -2301,7 +2318,7 @@ module RDF
2301
2318
  term :Property,
2302
2319
  comment: %(A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.).freeze,
2303
2320
  label: "Property".freeze,
2304
- subClassOf: "schema:Thing".freeze,
2321
+ subClassOf: "schema:Intangible".freeze,
2305
2322
  type: "rdfs:Class".freeze
2306
2323
  term :PropertyValueSpecification,
2307
2324
  comment: %(A Property value specification.).freeze,
@@ -2353,6 +2370,7 @@ module RDF
2353
2370
  type: "rdfs:Class".freeze
2354
2371
  term :Question,
2355
2372
  comment: %(A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions \(FAQ\) document.).freeze,
2373
+ "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange).freeze,
2356
2374
  label: "Question".freeze,
2357
2375
  subClassOf: "schema:CreativeWork".freeze,
2358
2376
  type: "rdfs:Class".freeze
@@ -2373,7 +2391,7 @@ module RDF
2373
2391
  subClassOf: "schema:MedicalTherapy".freeze,
2374
2392
  type: "rdfs:Class".freeze
2375
2393
  term :RadioClip,
2376
- comment: %(A short radio progam or a segment/part of a radio program.).freeze,
2394
+ comment: %(A short radio program or a segment/part of a radio program.).freeze,
2377
2395
  label: "RadioClip".freeze,
2378
2396
  subClassOf: "schema:Clip".freeze,
2379
2397
  type: "rdfs:Class".freeze
@@ -2527,13 +2545,19 @@ module RDF
2527
2545
  label: "RiverBodyOfWater".freeze,
2528
2546
  subClassOf: "schema:BodyOfWater".freeze,
2529
2547
  type: "rdfs:Class".freeze
2548
+ term :Role,
2549
+ comment: %(Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occured during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.
2550
+ ).freeze,
2551
+ label: "Role".freeze,
2552
+ subClassOf: "schema:Intangible".freeze,
2553
+ type: "rdfs:Class".freeze
2530
2554
  term :RoofingContractor,
2531
2555
  comment: %(A roofing contractor.).freeze,
2532
2556
  label: "RoofingContractor".freeze,
2533
- subClassOf: "schema:HomeAndConstructionBusiness".freeze,
2557
+ subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
2534
2558
  type: "rdfs:Class".freeze
2535
2559
  term :RsvpAction,
2536
- comment: %(The act of notifying an event organiser as to whether you expect to attend the event.).freeze,
2560
+ comment: %(The act of notifying an event organizer as to whether you expect to attend the event.).freeze,
2537
2561
  label: "RsvpAction".freeze,
2538
2562
  subClassOf: "schema:InformAction".freeze,
2539
2563
  type: "rdfs:Class".freeze
@@ -2696,7 +2720,7 @@ module RDF
2696
2720
  term :StadiumOrArena,
2697
2721
  comment: %(A stadium.).freeze,
2698
2722
  label: "StadiumOrArena".freeze,
2699
- subClassOf: "schema:CivicStructure".freeze,
2723
+ subClassOf: ["schema:CivicStructure".freeze, "schema:SportsActivityLocation".freeze],
2700
2724
  type: "rdfs:Class".freeze
2701
2725
  term :State,
2702
2726
  comment: %(A state or province.).freeze,
@@ -2735,7 +2759,7 @@ module RDF
2735
2759
  subClassOf: "schema:PlaceOfWorship".freeze,
2736
2760
  type: "rdfs:Class".freeze
2737
2761
  term :TVClip,
2738
- comment: %(A short TV progam or a segment/part of a TV program.).freeze,
2762
+ comment: %(A short TV program or a segment/part of a TV program.).freeze,
2739
2763
  label: "TVClip".freeze,
2740
2764
  subClassOf: "schema:Clip".freeze,
2741
2765
  type: "rdfs:Class".freeze
@@ -2747,12 +2771,12 @@ module RDF
2747
2771
  term :TVSeason,
2748
2772
  comment: %(Season dedicated to TV broadcast and associated online delivery.).freeze,
2749
2773
  label: "TVSeason".freeze,
2750
- subClassOf: "schema:CreativeWork".freeze,
2774
+ subClassOf: ["schema:CreativeWork".freeze, "schema:Season".freeze],
2751
2775
  type: "rdfs:Class".freeze
2752
2776
  term :TVSeries,
2753
2777
  comment: %(Series dedicated to TV broadcast and associated online delivery.).freeze,
2754
2778
  label: "TVSeries".freeze,
2755
- subClassOf: "schema:CreativeWork".freeze,
2779
+ subClassOf: ["schema:CreativeWork".freeze, "schema:Series".freeze],
2756
2780
  type: "rdfs:Class".freeze
2757
2781
  term :Table,
2758
2782
  comment: %(A table on the page.).freeze,
@@ -2815,10 +2839,10 @@ module RDF
2815
2839
  subClassOf: "schema:PerformingGroup".freeze,
2816
2840
  type: "rdfs:Class".freeze
2817
2841
  term :TherapeuticProcedure,
2818
- comment: %(A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition.).freeze,
2842
+ comment: %(A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.).freeze,
2819
2843
  "dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc).freeze,
2820
2844
  label: "TherapeuticProcedure".freeze,
2821
- subClassOf: "schema:MedicalProcedure".freeze,
2845
+ subClassOf: ["schema:MedicalProcedure".freeze, "schema:MedicalTherapy".freeze],
2822
2846
  type: "rdfs:Class".freeze
2823
2847
  term :Thing,
2824
2848
  comment: %(The most generic type of item.).freeze,
@@ -2860,7 +2884,7 @@ module RDF
2860
2884
  subClassOf: "schema:LocalBusiness".freeze,
2861
2885
  type: "rdfs:Class".freeze
2862
2886
  term :ToyStore,
2863
- comment: %(A toystore.).freeze,
2887
+ comment: %(A toy store.).freeze,
2864
2888
  label: "ToyStore".freeze,
2865
2889
  subClassOf: "schema:Store".freeze,
2866
2890
  type: "rdfs:Class".freeze
@@ -3041,7 +3065,7 @@ module RDF
3041
3065
  subClassOf: "schema:Event".freeze,
3042
3066
  type: "rdfs:Class".freeze
3043
3067
  term :Volcano,
3044
- comment: %(A volcano, like Fuji san).freeze,
3068
+ comment: %(A volcano, like Fuji san.).freeze,
3045
3069
  label: "Volcano".freeze,
3046
3070
  subClassOf: "schema:Landform".freeze,
3047
3071
  type: "rdfs:Class".freeze
@@ -3154,7 +3178,7 @@ module RDF
3154
3178
  property :about,
3155
3179
  comment: %(The subject matter of the content.).freeze,
3156
3180
  label: "about".freeze,
3157
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3181
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:CommunicateAction).freeze],
3158
3182
  "schema:rangeIncludes" => %(schema:Thing).freeze,
3159
3183
  type: "rdf:Property".freeze
3160
3184
  property :acceptedAnswer,
@@ -3162,6 +3186,7 @@ module RDF
3162
3186
  label: "acceptedAnswer".freeze,
3163
3187
  "schema:domainIncludes" => %(schema:Question).freeze,
3164
3188
  "schema:rangeIncludes" => %(schema:Answer).freeze,
3189
+ subPropertyOf: "schema:suggestedAnswer".freeze,
3165
3190
  type: "rdf:Property".freeze
3166
3191
  property :acceptedOffer,
3167
3192
  comment: %(The offer\(s\) -- e.g., product, quantity and price combinations -- included in the order.).freeze,
@@ -3172,14 +3197,14 @@ module RDF
3172
3197
  property :acceptedPaymentMethod,
3173
3198
  comment: %(The payment method\(s\) accepted by seller for this offer.).freeze,
3174
3199
  label: "acceptedPaymentMethod".freeze,
3175
- "schema:domainIncludes" => %(schema:Offer).freeze,
3200
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3176
3201
  "schema:rangeIncludes" => %(schema:PaymentMethod).freeze,
3177
3202
  type: "rdf:Property".freeze
3178
3203
  property :acceptsReservations,
3179
- comment: %(Either <code>Yes/No</code>, or a URL at which reservations can be made.).freeze,
3204
+ comment: %(Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or \(for backwards compatibility\) the strings <code>Yes</code> or <code>No</code>.).freeze,
3180
3205
  label: "acceptsReservations".freeze,
3181
3206
  "schema:domainIncludes" => %(schema:FoodEstablishment).freeze,
3182
- "schema:rangeIncludes" => %(schema:Text).freeze,
3207
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze, %(schema:Boolean).freeze],
3183
3208
  type: "rdf:Property".freeze
3184
3209
  property :accessCode,
3185
3210
  comment: %(Password, PIN, or access code needed for delivery \(e.g. from a locker\).).freeze,
@@ -3222,7 +3247,7 @@ module RDF
3222
3247
  comment: %(The organization or person from which the product was acquired.).freeze,
3223
3248
  label: "acquiredFrom".freeze,
3224
3249
  "schema:domainIncludes" => %(schema:OwnershipInfo).freeze,
3225
- "schema:rangeIncludes" => %(schema:Organization).freeze,
3250
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
3226
3251
  type: "rdf:Property".freeze
3227
3252
  property :action,
3228
3253
  comment: %(The movement the muscle generates.).freeze,
@@ -3240,7 +3265,7 @@ module RDF
3240
3265
  property :activeIngredient,
3241
3266
  comment: %(An active ingredient, typically chemical compounds and/or biologic substances.).freeze,
3242
3267
  label: "activeIngredient".freeze,
3243
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
3268
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze, %(schema:DrugStrength).freeze],
3244
3269
  "schema:rangeIncludes" => %(schema:Text).freeze,
3245
3270
  type: "rdf:Property".freeze
3246
3271
  property :activityDuration,
@@ -3258,13 +3283,13 @@ module RDF
3258
3283
  property :actor,
3259
3284
  comment: %(A cast member of the movie, tv/radio series, season, episode, or video.).freeze,
3260
3285
  label: "actor".freeze,
3261
- "schema:domainIncludes" => %(schema:Movie).freeze,
3286
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
3262
3287
  "schema:rangeIncludes" => %(schema:Person).freeze,
3263
3288
  type: "rdf:Property".freeze
3264
3289
  property :actors,
3265
3290
  comment: %(A cast member of the movie, tv/radio series, season, episode, or video. \(legacy spelling; see singular form, actor\)).freeze,
3266
3291
  label: "actors".freeze,
3267
- "schema:domainIncludes" => %(schema:Movie).freeze,
3292
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
3268
3293
  "schema:rangeIncludes" => %(schema:Person).freeze,
3269
3294
  "schema:supercededBy" => %(schema:actor).freeze,
3270
3295
  type: "rdf:Property".freeze
@@ -3295,7 +3320,7 @@ module RDF
3295
3320
  property :address,
3296
3321
  comment: %(Physical address of the item.).freeze,
3297
3322
  label: "address".freeze,
3298
- "schema:domainIncludes" => %(schema:Organization).freeze,
3323
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Person).freeze],
3299
3324
  "schema:rangeIncludes" => %(schema:PostalAddress).freeze,
3300
3325
  type: "rdf:Property".freeze
3301
3326
  property :addressCountry,
@@ -3325,13 +3350,13 @@ module RDF
3325
3350
  property :advanceBookingRequirement,
3326
3351
  comment: %(The amount of time that is required between accepting the offer and the actual usage of the resource or service.).freeze,
3327
3352
  label: "advanceBookingRequirement".freeze,
3328
- "schema:domainIncludes" => %(schema:Offer).freeze,
3353
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3329
3354
  "schema:rangeIncludes" => %(schema:QuantitativeValue).freeze,
3330
3355
  type: "rdf:Property".freeze
3331
3356
  property :adverseOutcome,
3332
3357
  comment: %(A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious \(resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention\), tag it as a seriouseAdverseOutcome instead.).freeze,
3333
3358
  label: "adverseOutcome".freeze,
3334
- "schema:domainIncludes" => %(schema:MedicalTherapy).freeze,
3359
+ "schema:domainIncludes" => [%(schema:MedicalTherapy).freeze, %(schema:MedicalDevice).freeze],
3335
3360
  "schema:rangeIncludes" => %(schema:MedicalEntity).freeze,
3336
3361
  type: "rdf:Property".freeze
3337
3362
  property :affectedBy,
@@ -3350,19 +3375,19 @@ module RDF
3350
3375
  comment: %(The direct performer or driver of the action \(animate or inanimate\). e.g. *John* wrote a book.).freeze,
3351
3376
  label: "agent".freeze,
3352
3377
  "schema:domainIncludes" => %(schema:Action).freeze,
3353
- "schema:rangeIncludes" => %(schema:Organization).freeze,
3378
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
3354
3379
  type: "rdf:Property".freeze
3355
3380
  property :aggregateRating,
3356
3381
  comment: %(The overall rating, based on a collection of reviews or ratings, of the item.).freeze,
3357
3382
  label: "aggregateRating".freeze,
3358
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3383
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Offer).freeze, %(schema:Product).freeze],
3359
3384
  "schema:rangeIncludes" => %(schema:AggregateRating).freeze,
3360
3385
  type: "rdf:Property".freeze
3361
3386
  property :aircraft,
3362
3387
  comment: %(The kind of aircraft \(e.g., "Boeing 747"\).).freeze,
3363
3388
  label: "aircraft".freeze,
3364
3389
  "schema:domainIncludes" => %(schema:Flight).freeze,
3365
- "schema:rangeIncludes" => %(schema:Text).freeze,
3390
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:Vehicle).freeze],
3366
3391
  type: "rdf:Property".freeze
3367
3392
  property :album,
3368
3393
  comment: %(A music album.).freeze,
@@ -3398,7 +3423,7 @@ module RDF
3398
3423
  property :alternateName,
3399
3424
  comment: %(An alias for the item.).freeze,
3400
3425
  label: "alternateName".freeze,
3401
- "schema:domainIncludes" => %(schema:Thing).freeze,
3426
+ "schema:domainIncludes" => [%(schema:Thing).freeze, %(schema:MedicalEntity).freeze],
3402
3427
  "schema:rangeIncludes" => %(schema:Text).freeze,
3403
3428
  type: "rdf:Property".freeze
3404
3429
  property :alternativeHeadline,
@@ -3411,12 +3436,14 @@ module RDF
3411
3436
  comment: %(Alumni of educational organization.).freeze,
3412
3437
  label: "alumni".freeze,
3413
3438
  "schema:domainIncludes" => %(schema:EducationalOrganization).freeze,
3439
+ "schema:inverseOf" => %(schema:alumniOf).freeze,
3414
3440
  "schema:rangeIncludes" => %(schema:Person).freeze,
3415
3441
  type: "rdf:Property".freeze
3416
3442
  property :alumniOf,
3417
3443
  comment: %(An educational organizations that the person is an alumni of.).freeze,
3418
3444
  label: "alumniOf".freeze,
3419
3445
  "schema:domainIncludes" => %(schema:Person).freeze,
3446
+ "schema:inverseOf" => %(schema:alumni).freeze,
3420
3447
  "schema:rangeIncludes" => %(schema:EducationalOrganization).freeze,
3421
3448
  type: "rdf:Property".freeze
3422
3449
  property :amountOfThisGood,
@@ -3440,7 +3467,7 @@ module RDF
3440
3467
  property :applicableLocation,
3441
3468
  comment: %(The location in which the status applies.).freeze,
3442
3469
  label: "applicableLocation".freeze,
3443
- "schema:domainIncludes" => %(schema:DrugCost).freeze,
3470
+ "schema:domainIncludes" => [%(schema:DrugCost).freeze, %(schema:DrugLegalStatus).freeze],
3444
3471
  "schema:rangeIncludes" => %(schema:AdministrativeArea).freeze,
3445
3472
  type: "rdf:Property".freeze
3446
3473
  property :application,
@@ -3453,13 +3480,13 @@ module RDF
3453
3480
  comment: %(Type of software application, e.g. "Game, Multimedia".).freeze,
3454
3481
  label: "applicationCategory".freeze,
3455
3482
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
3456
- "schema:rangeIncludes" => %(schema:Text).freeze,
3483
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
3457
3484
  type: "rdf:Property".freeze
3458
3485
  property :applicationSubCategory,
3459
3486
  comment: %(Subcategory of the application, e.g. "Arcade Game".).freeze,
3460
3487
  label: "applicationSubCategory".freeze,
3461
3488
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
3462
- "schema:rangeIncludes" => %(schema:Text).freeze,
3489
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
3463
3490
  type: "rdf:Property".freeze
3464
3491
  property :applicationSuite,
3465
3492
  comment: %(The name of the application suite to which the application belongs \(e.g. Excel belongs to Office\)).freeze,
@@ -3470,7 +3497,7 @@ module RDF
3470
3497
  property :appliesToDeliveryMethod,
3471
3498
  comment: %(The delivery method\(s\) to which the delivery charge or payment charge specification applies.).freeze,
3472
3499
  label: "appliesToDeliveryMethod".freeze,
3473
- "schema:domainIncludes" => %(schema:DeliveryChargeSpecification).freeze,
3500
+ "schema:domainIncludes" => [%(schema:DeliveryChargeSpecification).freeze, %(schema:PaymentChargeSpecification).freeze],
3474
3501
  "schema:rangeIncludes" => %(schema:DeliveryMethod).freeze,
3475
3502
  type: "rdf:Property".freeze
3476
3503
  property :appliesToPaymentMethod,
@@ -3501,7 +3528,7 @@ module RDF
3501
3528
  comment: %(The stop or station from which the bus arrives.).freeze,
3502
3529
  label: "arrivalBusStop".freeze,
3503
3530
  "schema:domainIncludes" => %(schema:BusTrip).freeze,
3504
- "schema:rangeIncludes" => %(schema:BusStation).freeze,
3531
+ "schema:rangeIncludes" => [%(schema:BusStation).freeze, %(schema:BusStop).freeze],
3505
3532
  type: "rdf:Property".freeze
3506
3533
  property :arrivalGate,
3507
3534
  comment: %(Identifier of the flight's arrival gate.).freeze,
@@ -3530,7 +3557,7 @@ module RDF
3530
3557
  property :arrivalTime,
3531
3558
  comment: %(The expected arrival time.).freeze,
3532
3559
  label: "arrivalTime".freeze,
3533
- "schema:domainIncludes" => %(schema:BusTrip).freeze,
3560
+ "schema:domainIncludes" => [%(schema:BusTrip).freeze, %(schema:Flight).freeze, %(schema:TrainTrip).freeze],
3534
3561
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
3535
3562
  type: "rdf:Property".freeze
3536
3563
  property :arterialBranch,
@@ -3572,8 +3599,8 @@ module RDF
3572
3599
  property :associatedAnatomy,
3573
3600
  comment: %(The anatomy of the underlying organ system or structures associated with this entity.).freeze,
3574
3601
  label: "associatedAnatomy".freeze,
3575
- "schema:domainIncludes" => %(schema:PhysicalActivity).freeze,
3576
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
3602
+ "schema:domainIncludes" => [%(schema:PhysicalActivity).freeze, %(schema:MedicalCondition).freeze],
3603
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze, %(schema:SuperficialAnatomy).freeze],
3577
3604
  type: "rdf:Property".freeze
3578
3605
  property :associatedArticle,
3579
3606
  comment: %(A NewsArticle associated with the Media Object.).freeze,
@@ -3590,26 +3617,26 @@ module RDF
3590
3617
  property :associatedPathophysiology,
3591
3618
  comment: %(If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.).freeze,
3592
3619
  label: "associatedPathophysiology".freeze,
3593
- "schema:domainIncludes" => %(schema:AnatomicalStructure).freeze,
3620
+ "schema:domainIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze, %(schema:SuperficialAnatomy).freeze],
3594
3621
  "schema:rangeIncludes" => %(schema:Text).freeze,
3595
3622
  type: "rdf:Property".freeze
3596
3623
  property :attendee,
3597
3624
  comment: %(A person or organization attending the event.).freeze,
3598
3625
  label: "attendee".freeze,
3599
3626
  "schema:domainIncludes" => %(schema:Event).freeze,
3600
- "schema:rangeIncludes" => %(schema:Organization).freeze,
3627
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
3601
3628
  type: "rdf:Property".freeze
3602
3629
  property :attendees,
3603
3630
  comment: %(A person attending the event \(legacy spelling; see singular form, attendee\).).freeze,
3604
3631
  label: "attendees".freeze,
3605
3632
  "schema:domainIncludes" => %(schema:Event).freeze,
3606
- "schema:rangeIncludes" => %(schema:Organization).freeze,
3633
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
3607
3634
  "schema:supercededBy" => %(schema:attendees).freeze,
3608
3635
  type: "rdf:Property".freeze
3609
3636
  property :audience,
3610
3637
  comment: %(The intended audience of the item, i.e. the group for whom the item was created.).freeze,
3611
3638
  label: "audience".freeze,
3612
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3639
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Product).freeze, %(schema:PlayAction).freeze],
3613
3640
  "schema:rangeIncludes" => %(schema:Audience).freeze,
3614
3641
  type: "rdf:Property".freeze
3615
3642
  property :audienceType,
@@ -3631,30 +3658,30 @@ module RDF
3631
3658
  comment: %(The author of this content. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.).freeze,
3632
3659
  label: "author".freeze,
3633
3660
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3634
- "schema:rangeIncludes" => %(schema:Organization).freeze,
3661
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
3635
3662
  type: "rdf:Property".freeze
3636
3663
  property :availability,
3637
3664
  comment: %(The availability of this item&#x2014;for example In stock, Out of stock, Pre-order, etc.).freeze,
3638
3665
  label: "availability".freeze,
3639
- "schema:domainIncludes" => %(schema:Offer).freeze,
3666
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3640
3667
  "schema:rangeIncludes" => %(schema:ItemAvailability).freeze,
3641
3668
  type: "rdf:Property".freeze
3642
3669
  property :availabilityEnds,
3643
3670
  comment: %(The end of the availability of the product or service included in the offer.).freeze,
3644
3671
  label: "availabilityEnds".freeze,
3645
- "schema:domainIncludes" => %(schema:Offer).freeze,
3672
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3646
3673
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
3647
3674
  type: "rdf:Property".freeze
3648
3675
  property :availabilityStarts,
3649
3676
  comment: %(The beginning of the availability of the product or service included in the offer.).freeze,
3650
3677
  label: "availabilityStarts".freeze,
3651
- "schema:domainIncludes" => %(schema:Offer).freeze,
3678
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3652
3679
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
3653
3680
  type: "rdf:Property".freeze
3654
3681
  property :availableAtOrFrom,
3655
3682
  comment: %(The place\(s\) from which the offer can be obtained \(e.g. store locations\).).freeze,
3656
3683
  label: "availableAtOrFrom".freeze,
3657
- "schema:domainIncludes" => %(schema:Offer).freeze,
3684
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3658
3685
  "schema:rangeIncludes" => %(schema:Place).freeze,
3659
3686
  type: "rdf:Property".freeze
3660
3687
  property :availableChannel,
@@ -3666,7 +3693,7 @@ module RDF
3666
3693
  property :availableDeliveryMethod,
3667
3694
  comment: %(The delivery method\(s\) available for this offer.).freeze,
3668
3695
  label: "availableDeliveryMethod".freeze,
3669
- "schema:domainIncludes" => %(schema:Offer).freeze,
3696
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
3670
3697
  "schema:rangeIncludes" => %(schema:DeliveryMethod).freeze,
3671
3698
  type: "rdf:Property".freeze
3672
3699
  property :availableFrom,
@@ -3684,14 +3711,14 @@ module RDF
3684
3711
  property :availableLanguage,
3685
3712
  comment: %(A language someone may use with the item.).freeze,
3686
3713
  label: "availableLanguage".freeze,
3687
- "schema:domainIncludes" => %(schema:ContactPoint).freeze,
3714
+ "schema:domainIncludes" => [%(schema:ContactPoint).freeze, %(schema:ServiceChannel).freeze],
3688
3715
  "schema:rangeIncludes" => %(schema:Language).freeze,
3689
3716
  type: "rdf:Property".freeze
3690
3717
  property :availableService,
3691
3718
  comment: %(A medical service available from this provider.).freeze,
3692
3719
  label: "availableService".freeze,
3693
- "schema:domainIncludes" => %(schema:Hospital).freeze,
3694
- "schema:rangeIncludes" => %(schema:MedicalProcedure).freeze,
3720
+ "schema:domainIncludes" => [%(schema:Hospital).freeze, %(schema:MedicalClinic).freeze, %(schema:Physician).freeze],
3721
+ "schema:rangeIncludes" => [%(schema:MedicalProcedure).freeze, %(schema:MedicalTest).freeze, %(schema:MedicalTherapy).freeze],
3695
3722
  type: "rdf:Property".freeze
3696
3723
  property :availableStrength,
3697
3724
  comment: %(An available dosage strength for the drug.).freeze,
@@ -3714,13 +3741,13 @@ module RDF
3714
3741
  property :award,
3715
3742
  comment: %(An award won by this person or for this creative work.).freeze,
3716
3743
  label: "award".freeze,
3717
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3744
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Person).freeze],
3718
3745
  "schema:rangeIncludes" => %(schema:Text).freeze,
3719
3746
  type: "rdf:Property".freeze
3720
3747
  property :awards,
3721
3748
  comment: %(Awards won by this person or for this creative work. \(legacy spelling; see singular form, award\)).freeze,
3722
3749
  label: "awards".freeze,
3723
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
3750
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Person).freeze],
3724
3751
  "schema:rangeIncludes" => %(schema:Text).freeze,
3725
3752
  "schema:supercededBy" => %(schema:award).freeze,
3726
3753
  type: "rdf:Property".freeze
@@ -3746,7 +3773,7 @@ module RDF
3746
3773
  comment: %(The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.).freeze,
3747
3774
  label: "bestRating".freeze,
3748
3775
  "schema:domainIncludes" => %(schema:Rating).freeze,
3749
- "schema:rangeIncludes" => %(schema:Number).freeze,
3776
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
3750
3777
  type: "rdf:Property".freeze
3751
3778
  property :billingAddress,
3752
3779
  comment: %(The billing address for the order.).freeze,
@@ -3825,7 +3852,7 @@ module RDF
3825
3852
  comment: %(If the reservation was not booked directly through the provider, the third-party booking agent can be recorded through this property.).freeze,
3826
3853
  label: "bookingAgent".freeze,
3827
3854
  "schema:domainIncludes" => %(schema:Reservation).freeze,
3828
- "schema:rangeIncludes" => %(schema:Person).freeze,
3855
+ "schema:rangeIncludes" => [%(schema:Person).freeze, %(schema:Organization).freeze],
3829
3856
  type: "rdf:Property".freeze
3830
3857
  property :bookingTime,
3831
3858
  comment: %(The date and time the reservation was booked.).freeze,
@@ -3838,9 +3865,10 @@ module RDF
3838
3865
  label: "borrower".freeze,
3839
3866
  "schema:domainIncludes" => %(schema:LendAction).freeze,
3840
3867
  "schema:rangeIncludes" => %(schema:Person).freeze,
3868
+ subPropertyOf: "schema:participant".freeze,
3841
3869
  type: "rdf:Property".freeze
3842
3870
  property :box,
3843
- 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 spacedelimited points where the first and final points are identical.).freeze,
3871
+ 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,
3844
3872
  label: "box".freeze,
3845
3873
  "schema:domainIncludes" => %(schema:GeoShape).freeze,
3846
3874
  "schema:rangeIncludes" => %(schema:Text).freeze,
@@ -3849,7 +3877,7 @@ module RDF
3849
3877
  comment: %(The branches that delineate from the nerve bundle.).freeze,
3850
3878
  label: "branch".freeze,
3851
3879
  "schema:domainIncludes" => %(schema:Nerve).freeze,
3852
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
3880
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:Nerve).freeze],
3853
3881
  type: "rdf:Property".freeze
3854
3882
  property :branchOf,
3855
3883
  comment: %(The larger organization that this local business is a branch of, if any.).freeze,
@@ -3860,8 +3888,8 @@ module RDF
3860
3888
  property :brand,
3861
3889
  comment: %(The brand\(s\) associated with a product or service, or the brand\(s\) maintained by an organization or business person.).freeze,
3862
3890
  label: "brand".freeze,
3863
- "schema:domainIncludes" => %(schema:Organization).freeze,
3864
- "schema:rangeIncludes" => %(schema:Brand).freeze,
3891
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze, %(schema:Product).freeze],
3892
+ "schema:rangeIncludes" => [%(schema:Brand).freeze, %(schema:Organization).freeze],
3865
3893
  type: "rdf:Property".freeze
3866
3894
  property :breadcrumb,
3867
3895
  comment: %(A set of links that can help a user understand and navigate a website hierarchy.).freeze,
@@ -3902,7 +3930,7 @@ module RDF
3902
3930
  property :businessFunction,
3903
3931
  comment: %(The business function \(e.g. sell, lease, repair, dispose\) of the offer or component of a bundle \(TypeAndQuantityNode\). The default is http://purl.org/goodrelations/v1#Sell.).freeze,
3904
3932
  label: "businessFunction".freeze,
3905
- "schema:domainIncludes" => %(schema:Offer).freeze,
3933
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze, %(schema:TypeAndQuantityNode).freeze],
3906
3934
  "schema:rangeIncludes" => %(schema:BusinessFunction).freeze,
3907
3935
  type: "rdf:Property".freeze
3908
3936
  property :buyer,
@@ -3910,11 +3938,12 @@ module RDF
3910
3938
  label: "buyer".freeze,
3911
3939
  "schema:domainIncludes" => %(schema:SellAction).freeze,
3912
3940
  "schema:rangeIncludes" => %(schema:Person).freeze,
3941
+ subPropertyOf: "schema:participant".freeze,
3913
3942
  type: "rdf:Property".freeze
3914
3943
  property :byArtist,
3915
3944
  comment: %(The artist that performed this album or recording.).freeze,
3916
3945
  label: "byArtist".freeze,
3917
- "schema:domainIncludes" => %(schema:MusicAlbum).freeze,
3946
+ "schema:domainIncludes" => [%(schema:MusicAlbum).freeze, %(schema:MusicRecording).freeze],
3918
3947
  "schema:rangeIncludes" => %(schema:MusicGroup).freeze,
3919
3948
  type: "rdf:Property".freeze
3920
3949
  property :calories,
@@ -3928,11 +3957,12 @@ module RDF
3928
3957
  label: "candidate".freeze,
3929
3958
  "schema:domainIncludes" => %(schema:VoteAction).freeze,
3930
3959
  "schema:rangeIncludes" => %(schema:Person).freeze,
3960
+ subPropertyOf: "schema:object".freeze,
3931
3961
  type: "rdf:Property".freeze
3932
3962
  property :caption,
3933
3963
  comment: %(The caption for this object.).freeze,
3934
3964
  label: "caption".freeze,
3935
- "schema:domainIncludes" => %(schema:ImageObject).freeze,
3965
+ "schema:domainIncludes" => [%(schema:ImageObject).freeze, %(schema:VideoObject).freeze],
3936
3966
  "schema:rangeIncludes" => %(schema:Text).freeze,
3937
3967
  type: "rdf:Property".freeze
3938
3968
  property :carbohydrateContent,
@@ -3944,7 +3974,7 @@ module RDF
3944
3974
  property :carrier,
3945
3975
  comment: %(The party responsible for the parcel delivery.).freeze,
3946
3976
  label: "carrier".freeze,
3947
- "schema:domainIncludes" => %(schema:ParcelDelivery).freeze,
3977
+ "schema:domainIncludes" => [%(schema:ParcelDelivery).freeze, %(schema:Flight).freeze],
3948
3978
  "schema:rangeIncludes" => %(schema:Organization).freeze,
3949
3979
  type: "rdf:Property".freeze
3950
3980
  property :carrierRequirements,
@@ -3962,13 +3992,13 @@ module RDF
3962
3992
  property :category,
3963
3993
  comment: %(A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.).freeze,
3964
3994
  label: "category".freeze,
3965
- "schema:domainIncludes" => %(schema:Offer).freeze,
3966
- "schema:rangeIncludes" => %(schema:PhysicalActivityCategory).freeze,
3995
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PhysicalActivity).freeze],
3996
+ "schema:rangeIncludes" => [%(schema:PhysicalActivityCategory).freeze, %(schema:Text).freeze, %(schema:Thing).freeze],
3967
3997
  type: "rdf:Property".freeze
3968
3998
  property :cause,
3969
3999
  comment: %(An underlying cause. More specifically, one of the causative agent\(s\) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.).freeze,
3970
4000
  label: "cause".freeze,
3971
- "schema:domainIncludes" => %(schema:MedicalCondition).freeze,
4001
+ "schema:domainIncludes" => [%(schema:MedicalCondition).freeze, %(schema:MedicalSignOrSymptom).freeze],
3972
4002
  "schema:rangeIncludes" => %(schema:MedicalCause).freeze,
3973
4003
  type: "rdf:Property".freeze
3974
4004
  property :causeOf,
@@ -3977,6 +4007,12 @@ module RDF
3977
4007
  "schema:domainIncludes" => %(schema:MedicalCause).freeze,
3978
4008
  "schema:rangeIncludes" => %(schema:MedicalEntity).freeze,
3979
4009
  type: "rdf:Property".freeze
4010
+ property :characterName,
4011
+ comment: %(The name of a character played in some acting or performing role, i.e. in a PerformanceRole.).freeze,
4012
+ label: "characterName".freeze,
4013
+ "schema:domainIncludes" => %(schema:PerformanceRole).freeze,
4014
+ "schema:rangeIncludes" => %(schema:Text).freeze,
4015
+ type: "rdf:Property".freeze
3980
4016
  property :checkinTime,
3981
4017
  comment: %(The earliest someone may check into a lodging establishment.).freeze,
3982
4018
  label: "checkinTime".freeze,
@@ -4023,7 +4059,7 @@ module RDF
4023
4059
  comment: %(A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.).freeze,
4024
4060
  label: "citation".freeze,
4025
4061
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4026
- "schema:rangeIncludes" => %(schema:CreativeWork).freeze,
4062
+ "schema:rangeIncludes" => [%(schema:CreativeWork).freeze, %(schema:Text).freeze],
4027
4063
  type: "rdf:Property".freeze
4028
4064
  property :clincalPharmacology,
4029
4065
  comment: %(Description of the absorption and elimination of drugs, including their concentration \(pharmacokinetics, pK\) and biological effects \(pharmacodynamics, pD\).).freeze,
@@ -4085,6 +4121,7 @@ module RDF
4085
4121
  label: "collection".freeze,
4086
4122
  "schema:domainIncludes" => %(schema:UpdateAction).freeze,
4087
4123
  "schema:rangeIncludes" => %(schema:Thing).freeze,
4124
+ subPropertyOf: "schema:object".freeze,
4088
4125
  type: "rdf:Property".freeze
4089
4126
  property :color,
4090
4127
  comment: %(The color of the product.).freeze,
@@ -4096,7 +4133,7 @@ module RDF
4096
4133
  comment: %(Comments, typically from users, on this CreativeWork.).freeze,
4097
4134
  label: "comment".freeze,
4098
4135
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4099
- "schema:rangeIncludes" => %(schema:UserComments).freeze,
4136
+ "schema:rangeIncludes" => [%(schema:UserComments).freeze, %(schema:Comment).freeze],
4100
4137
  type: "rdf:Property".freeze
4101
4138
  property :commentCount,
4102
4139
  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,
@@ -4120,7 +4157,7 @@ module RDF
4120
4157
  comment: %(The underlying anatomical structures, such as organs, that comprise the anatomical system.).freeze,
4121
4158
  label: "comprisedOf".freeze,
4122
4159
  "schema:domainIncludes" => %(schema:AnatomicalSystem).freeze,
4123
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
4160
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze],
4124
4161
  type: "rdf:Property".freeze
4125
4162
  property :confirmationNumber,
4126
4163
  comment: %(A number that confirms the given order.).freeze,
@@ -4143,13 +4180,13 @@ module RDF
4143
4180
  property :contactPoint,
4144
4181
  comment: %(A contact point for a person or organization.).freeze,
4145
4182
  label: "contactPoint".freeze,
4146
- "schema:domainIncludes" => %(schema:Organization).freeze,
4183
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4147
4184
  "schema:rangeIncludes" => %(schema:ContactPoint).freeze,
4148
4185
  type: "rdf:Property".freeze
4149
4186
  property :contactPoints,
4150
4187
  comment: %(A contact point for a person or organization \(legacy spelling; see singular form, contactPoint\).).freeze,
4151
4188
  label: "contactPoints".freeze,
4152
- "schema:domainIncludes" => %(schema:Organization).freeze,
4189
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4153
4190
  "schema:rangeIncludes" => %(schema:ContactPoint).freeze,
4154
4191
  "schema:supercededBy" => %(schema:contactPoint).freeze,
4155
4192
  type: "rdf:Property".freeze
@@ -4198,14 +4235,14 @@ module RDF
4198
4235
  property :contraindication,
4199
4236
  comment: %(A contraindication for this therapy.).freeze,
4200
4237
  label: "contraindication".freeze,
4201
- "schema:domainIncludes" => %(schema:MedicalTherapy).freeze,
4238
+ "schema:domainIncludes" => [%(schema:MedicalTherapy).freeze, %(schema:MedicalDevice).freeze],
4202
4239
  "schema:rangeIncludes" => %(schema:MedicalContraindication).freeze,
4203
4240
  type: "rdf:Property".freeze
4204
4241
  property :contributor,
4205
4242
  comment: %(A secondary contributor to the CreativeWork.).freeze,
4206
4243
  label: "contributor".freeze,
4207
4244
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4208
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4245
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4209
4246
  type: "rdf:Property".freeze
4210
4247
  property :cookTime,
4211
4248
  comment: %(The time it takes to actually cook the dish, in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>.).freeze,
@@ -4223,7 +4260,7 @@ module RDF
4223
4260
  comment: %(The party holding the legal copyright to the CreativeWork.).freeze,
4224
4261
  label: "copyrightHolder".freeze,
4225
4262
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4226
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4263
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4227
4264
  type: "rdf:Property".freeze
4228
4265
  property :copyrightYear,
4229
4266
  comment: %(The year during which the claimed copyright for the CreativeWork was first asserted.).freeze,
@@ -4259,7 +4296,7 @@ module RDF
4259
4296
  comment: %(The cost per unit of the drug.).freeze,
4260
4297
  label: "costPerUnit".freeze,
4261
4298
  "schema:domainIncludes" => %(schema:DrugCost).freeze,
4262
- "schema:rangeIncludes" => %(schema:Number).freeze,
4299
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
4263
4300
  type: "rdf:Property".freeze
4264
4301
  property :countriesNotSupported,
4265
4302
  comment: %(Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.).freeze,
@@ -4278,12 +4315,13 @@ module RDF
4278
4315
  label: "course".freeze,
4279
4316
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
4280
4317
  "schema:rangeIncludes" => %(schema:Place).freeze,
4318
+ subPropertyOf: "schema:location".freeze,
4281
4319
  type: "rdf:Property".freeze
4282
4320
  property :creator,
4283
4321
  comment: %(The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.).freeze,
4284
4322
  label: "creator".freeze,
4285
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4286
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4323
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:UserComments).freeze],
4324
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4287
4325
  type: "rdf:Property".freeze
4288
4326
  property :currenciesAccepted,
4289
4327
  comment: %(The currency accepted \(in <a href='http://en.wikipedia.org/wiki/ISO_4217'>ISO 4217 currency format</a>\).).freeze,
@@ -4295,7 +4333,7 @@ module RDF
4295
4333
  comment: %(Party placing the order.).freeze,
4296
4334
  label: "customer".freeze,
4297
4335
  "schema:domainIncludes" => %(schema:Order).freeze,
4298
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4336
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4299
4337
  type: "rdf:Property".freeze
4300
4338
  property :dataset,
4301
4339
  comment: %(A dataset contained in a catalog.).freeze,
@@ -4355,7 +4393,7 @@ module RDF
4355
4393
  comment: %(The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.).freeze,
4356
4394
  label: "defaultValue".freeze,
4357
4395
  "schema:domainIncludes" => %(schema:PropertyValueSpecification).freeze,
4358
- "schema:rangeIncludes" => %(schema:Thing).freeze,
4396
+ "schema:rangeIncludes" => [%(schema:Thing).freeze, %(schema:Text).freeze],
4359
4397
  type: "rdf:Property".freeze
4360
4398
  property :deliveryAddress,
4361
4399
  comment: %(Destination address.).freeze,
@@ -4366,14 +4404,15 @@ module RDF
4366
4404
  property :deliveryLeadTime,
4367
4405
  comment: %(The typical delay between the receipt of the order and the goods leaving the warehouse.).freeze,
4368
4406
  label: "deliveryLeadTime".freeze,
4369
- "schema:domainIncludes" => %(schema:Offer).freeze,
4407
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
4370
4408
  "schema:rangeIncludes" => %(schema:QuantitativeValue).freeze,
4371
4409
  type: "rdf:Property".freeze
4372
4410
  property :deliveryMethod,
4373
4411
  comment: %(A sub property of instrument. The method of delivery).freeze,
4374
4412
  label: "deliveryMethod".freeze,
4375
- "schema:domainIncludes" => %(schema:ReceiveAction).freeze,
4413
+ "schema:domainIncludes" => [%(schema:ReceiveAction).freeze, %(schema:SendAction).freeze, %(schema:TrackAction).freeze],
4376
4414
  "schema:rangeIncludes" => %(schema:DeliveryMethod).freeze,
4415
+ subPropertyOf: "schema:instrument".freeze,
4377
4416
  type: "rdf:Property".freeze
4378
4417
  property :deliveryStatus,
4379
4418
  comment: %(New entry added as the package passes through each leg of its journey \(from shipment to final delivery\).).freeze,
@@ -4397,7 +4436,7 @@ module RDF
4397
4436
  comment: %(The stop or station from which the bus departs.).freeze,
4398
4437
  label: "departureBusStop".freeze,
4399
4438
  "schema:domainIncludes" => %(schema:BusTrip).freeze,
4400
- "schema:rangeIncludes" => %(schema:BusStation).freeze,
4439
+ "schema:rangeIncludes" => [%(schema:BusStation).freeze, %(schema:BusStop).freeze],
4401
4440
  type: "rdf:Property".freeze
4402
4441
  property :departureGate,
4403
4442
  comment: %(Identifier of the flight's departure gate.).freeze,
@@ -4426,7 +4465,7 @@ module RDF
4426
4465
  property :departureTime,
4427
4466
  comment: %(The expected departure time.).freeze,
4428
4467
  label: "departureTime".freeze,
4429
- "schema:domainIncludes" => %(schema:BusTrip).freeze,
4468
+ "schema:domainIncludes" => [%(schema:BusTrip).freeze, %(schema:Flight).freeze, %(schema:TrainTrip).freeze],
4430
4469
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
4431
4470
  type: "rdf:Property".freeze
4432
4471
  property :dependencies,
@@ -4439,7 +4478,7 @@ module RDF
4439
4478
  comment: %(The depth of the product.).freeze,
4440
4479
  label: "depth".freeze,
4441
4480
  "schema:domainIncludes" => %(schema:Product).freeze,
4442
- "schema:rangeIncludes" => %(schema:Distance).freeze,
4481
+ "schema:rangeIncludes" => [%(schema:Distance).freeze, %(schema:QuantitativeValue).freeze],
4443
4482
  type: "rdf:Property".freeze
4444
4483
  property :description,
4445
4484
  comment: %(A short description of the item.).freeze,
@@ -4466,10 +4505,11 @@ module RDF
4466
4505
  "schema:rangeIncludes" => %(schema:ImageObject).freeze,
4467
4506
  type: "rdf:Property".freeze
4468
4507
  property :diet,
4469
- comment: %(A sub property of instrument. The died used in this action.).freeze,
4508
+ comment: %(A sub property of instrument. The diet used in this action.).freeze,
4470
4509
  label: "diet".freeze,
4471
4510
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
4472
4511
  "schema:rangeIncludes" => %(schema:Diet).freeze,
4512
+ subPropertyOf: "schema:instrument".freeze,
4473
4513
  type: "rdf:Property".freeze
4474
4514
  property :dietFeatures,
4475
4515
  comment: %(Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.).freeze,
@@ -4486,13 +4526,13 @@ module RDF
4486
4526
  property :director,
4487
4527
  comment: %(The director of the movie, tv/radio episode or series.).freeze,
4488
4528
  label: "director".freeze,
4489
- "schema:domainIncludes" => %(schema:Movie).freeze,
4529
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
4490
4530
  "schema:rangeIncludes" => %(schema:Person).freeze,
4491
4531
  type: "rdf:Property".freeze
4492
4532
  property :directors,
4493
4533
  comment: %(The director of the movie, tv/radio episode or series. \(legacy spelling; see singular form, director\)).freeze,
4494
4534
  label: "directors".freeze,
4495
- "schema:domainIncludes" => %(schema:Movie).freeze,
4535
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
4496
4536
  "schema:rangeIncludes" => %(schema:Person).freeze,
4497
4537
  "schema:supercededBy" => %(schema:director).freeze,
4498
4538
  type: "rdf:Property".freeze
@@ -4500,7 +4540,7 @@ module RDF
4500
4540
  comment: %(Any discount applied \(to an Order\).).freeze,
4501
4541
  label: "discount".freeze,
4502
4542
  "schema:domainIncludes" => %(schema:Order).freeze,
4503
- "schema:rangeIncludes" => %(schema:Number).freeze,
4543
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
4504
4544
  type: "rdf:Property".freeze
4505
4545
  property :discountCode,
4506
4546
  comment: %(Code used to redeem a discount.).freeze,
@@ -4526,10 +4566,16 @@ module RDF
4526
4566
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
4527
4567
  "schema:rangeIncludes" => %(schema:URL).freeze,
4528
4568
  type: "rdf:Property".freeze
4569
+ property :dissolutionDate,
4570
+ comment: %(The date that this organization was dissolved.).freeze,
4571
+ label: "dissolutionDate".freeze,
4572
+ "schema:domainIncludes" => %(schema:Organization).freeze,
4573
+ "schema:rangeIncludes" => %(schema:Date).freeze,
4574
+ type: "rdf:Property".freeze
4529
4575
  property :distance,
4530
- comment: %(A sub property of asset. The distance travelled.).freeze,
4576
+ comment: %(The distance travelled, e.g. exercising or travelling.).freeze,
4531
4577
  label: "distance".freeze,
4532
- "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
4578
+ "schema:domainIncludes" => [%(schema:ExerciseAction).freeze, %(schema:TravelAction).freeze],
4533
4579
  "schema:rangeIncludes" => %(schema:Distance).freeze,
4534
4580
  type: "rdf:Property".freeze
4535
4581
  property :distinguishingSign,
@@ -4559,7 +4605,7 @@ module RDF
4559
4605
  property :dosageForm,
4560
4606
  comment: %(A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.).freeze,
4561
4607
  label: "dosageForm".freeze,
4562
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
4608
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze],
4563
4609
  "schema:rangeIncludes" => %(schema:Text).freeze,
4564
4610
  type: "rdf:Property".freeze
4565
4611
  property :doseSchedule,
@@ -4589,7 +4635,7 @@ module RDF
4589
4635
  property :downvoteCount,
4590
4636
  comment: %(The number of downvotes this question has received from the community.).freeze,
4591
4637
  label: "downvoteCount".freeze,
4592
- "schema:domainIncludes" => %(schema:Question).freeze,
4638
+ "schema:domainIncludes" => [%(schema:Question).freeze, %(schema:Answer).freeze, %(schema:Comment).freeze],
4593
4639
  "schema:rangeIncludes" => %(schema:Integer).freeze,
4594
4640
  type: "rdf:Property".freeze
4595
4641
  property :drainsTo,
@@ -4631,7 +4677,7 @@ module RDF
4631
4677
  property :duns,
4632
4678
  comment: %(The Dun & Bradstreet DUNS number for identifying an organization or business person.).freeze,
4633
4679
  label: "duns".freeze,
4634
- "schema:domainIncludes" => %(schema:Organization).freeze,
4680
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4635
4681
  "schema:rangeIncludes" => %(schema:Text).freeze,
4636
4682
  type: "rdf:Property".freeze
4637
4683
  property :duplicateTherapy,
@@ -4643,7 +4689,7 @@ module RDF
4643
4689
  property :duration,
4644
4690
  comment: %(The duration of the item \(movie, audio recording, event, etc.\) in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.).freeze,
4645
4691
  label: "duration".freeze,
4646
- "schema:domainIncludes" => %(schema:MediaObject).freeze,
4692
+ "schema:domainIncludes" => [%(schema:MediaObject).freeze, %(schema:Event).freeze, %(schema:Movie).freeze, %(schema:MusicRecording).freeze],
4647
4693
  "schema:rangeIncludes" => %(schema:Duration).freeze,
4648
4694
  type: "rdf:Property".freeze
4649
4695
  property :durationOfWarranty,
@@ -4691,43 +4737,43 @@ module RDF
4691
4737
  property :elevation,
4692
4738
  comment: %(The elevation of a location.).freeze,
4693
4739
  label: "elevation".freeze,
4694
- "schema:domainIncludes" => %(schema:GeoCoordinates).freeze,
4695
- "schema:rangeIncludes" => %(schema:Number).freeze,
4740
+ "schema:domainIncludes" => [%(schema:GeoCoordinates).freeze, %(schema:GeoShape).freeze],
4741
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
4696
4742
  type: "rdf:Property".freeze
4697
4743
  property :eligibleCustomerType,
4698
4744
  comment: %(The type\(s\) of customers for which the given offer is valid.).freeze,
4699
4745
  label: "eligibleCustomerType".freeze,
4700
- "schema:domainIncludes" => %(schema:Offer).freeze,
4746
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
4701
4747
  "schema:rangeIncludes" => %(schema:BusinessEntityType).freeze,
4702
4748
  type: "rdf:Property".freeze
4703
4749
  property :eligibleDuration,
4704
4750
  comment: %(The duration for which the given offer is valid.).freeze,
4705
4751
  label: "eligibleDuration".freeze,
4706
- "schema:domainIncludes" => %(schema:Offer).freeze,
4752
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
4707
4753
  "schema:rangeIncludes" => %(schema:QuantitativeValue).freeze,
4708
4754
  type: "rdf:Property".freeze
4709
4755
  property :eligibleQuantity,
4710
4756
  comment: %(The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.).freeze,
4711
4757
  label: "eligibleQuantity".freeze,
4712
- "schema:domainIncludes" => %(schema:Offer).freeze,
4758
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PriceSpecification).freeze, %(schema:Demand).freeze],
4713
4759
  "schema:rangeIncludes" => %(schema:QuantitativeValue).freeze,
4714
4760
  type: "rdf:Property".freeze
4715
4761
  property :eligibleRegion,
4716
4762
  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,
4717
4763
  label: "eligibleRegion".freeze,
4718
- "schema:domainIncludes" => %(schema:Offer).freeze,
4719
- "schema:rangeIncludes" => %(schema:GeoShape).freeze,
4764
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:DeliveryChargeSpecification).freeze, %(schema:Demand).freeze],
4765
+ "schema:rangeIncludes" => [%(schema:GeoShape).freeze, %(schema:Text).freeze],
4720
4766
  type: "rdf:Property".freeze
4721
4767
  property :eligibleTransactionVolume,
4722
4768
  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,
4723
4769
  label: "eligibleTransactionVolume".freeze,
4724
- "schema:domainIncludes" => %(schema:Offer).freeze,
4770
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PriceSpecification).freeze, %(schema:Demand).freeze],
4725
4771
  "schema:rangeIncludes" => %(schema:PriceSpecification).freeze,
4726
4772
  type: "rdf:Property".freeze
4727
4773
  property :email,
4728
4774
  comment: %(Email address.).freeze,
4729
4775
  label: "email".freeze,
4730
- "schema:domainIncludes" => %(schema:Organization).freeze,
4776
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:ContactPoint).freeze, %(schema:Person).freeze],
4731
4777
  "schema:rangeIncludes" => %(schema:Text).freeze,
4732
4778
  type: "rdf:Property".freeze
4733
4779
  property :embedUrl,
@@ -4787,45 +4833,50 @@ module RDF
4787
4833
  "schema:supercededBy" => %(schema:encoding).freeze,
4788
4834
  type: "rdf:Property".freeze
4789
4835
  property :endDate,
4790
- comment: %(The end date and time of the event or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
4836
+ comment: %(The end date and time of the role, event or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
4791
4837
  label: "endDate".freeze,
4792
- "schema:domainIncludes" => %(schema:Event).freeze,
4838
+ "schema:domainIncludes" => [%(schema:Role).freeze, %(schema:Event).freeze, %(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze],
4793
4839
  "schema:rangeIncludes" => %(schema:Date).freeze,
4794
4840
  type: "rdf:Property".freeze
4795
4841
  property :endTime,
4796
- comment: %(When the Action was performed: end time. This is for actions that span a period of time. e.g. John wrote a book from January to *December*.).freeze,
4842
+ comment: %(The endTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*.
4843
+
4844
+ Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
4845
+ ).freeze,
4797
4846
  label: "endTime".freeze,
4798
- "schema:domainIncludes" => %(schema:Action).freeze,
4847
+ "schema:domainIncludes" => [%(schema:Action).freeze, %(schema:FoodEstablishmentReservation).freeze],
4799
4848
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
4800
4849
  type: "rdf:Property".freeze
4801
4850
  property :endorsee,
4802
4851
  comment: %(A sub property of participant. The person/organization being supported.).freeze,
4803
4852
  label: "endorsee".freeze,
4804
4853
  "schema:domainIncludes" => %(schema:EndorseAction).freeze,
4805
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4854
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4855
+ subPropertyOf: "schema:participant".freeze,
4806
4856
  type: "rdf:Property".freeze
4807
4857
  property :endorsers,
4808
4858
  comment: %(People or organizations that endorse the plan.).freeze,
4809
4859
  label: "endorsers".freeze,
4810
4860
  "schema:domainIncludes" => %(schema:Diet).freeze,
4811
- "schema:rangeIncludes" => %(schema:Organization).freeze,
4861
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
4812
4862
  type: "rdf:Property".freeze
4813
4863
  property :entertainmentBusiness,
4814
4864
  comment: %(A sub property of location. The entertainment business where the action occurred.).freeze,
4815
4865
  label: "entertainmentBusiness".freeze,
4816
4866
  "schema:domainIncludes" => %(schema:PerformAction).freeze,
4817
4867
  "schema:rangeIncludes" => %(schema:EntertainmentBusiness).freeze,
4868
+ subPropertyOf: "schema:location".freeze,
4818
4869
  type: "rdf:Property".freeze
4819
4870
  property :epidemiology,
4820
4871
  comment: %(The characteristics of associated patients, such as age, gender, race etc.).freeze,
4821
4872
  label: "epidemiology".freeze,
4822
- "schema:domainIncludes" => %(schema:PhysicalActivity).freeze,
4873
+ "schema:domainIncludes" => [%(schema:PhysicalActivity).freeze, %(schema:MedicalCondition).freeze],
4823
4874
  "schema:rangeIncludes" => %(schema:Text).freeze,
4824
4875
  type: "rdf:Property".freeze
4825
4876
  property :episode,
4826
4877
  comment: %(An episode of a TV/radio series or season).freeze,
4827
4878
  label: "episode".freeze,
4828
- "schema:domainIncludes" => %(schema:Season).freeze,
4879
+ "schema:domainIncludes" => [%(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioSeason).freeze, %(schema:RadioSeries).freeze],
4829
4880
  "schema:rangeIncludes" => %(schema:Episode).freeze,
4830
4881
  type: "rdf:Property".freeze
4831
4882
  property :episodeNumber,
@@ -4837,7 +4888,7 @@ module RDF
4837
4888
  property :episodes,
4838
4889
  comment: %(An episode of a TV/radio series or season \(legacy spelling; see singular form, episode\)).freeze,
4839
4890
  label: "episodes".freeze,
4840
- "schema:domainIncludes" => %(schema:Season).freeze,
4891
+ "schema:domainIncludes" => [%(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioSeason).freeze, %(schema:RadioSeries).freeze],
4841
4892
  "schema:rangeIncludes" => %(schema:Episode).freeze,
4842
4893
  "schema:supercededBy" => %(schema:episode).freeze,
4843
4894
  type: "rdf:Property".freeze
@@ -4851,7 +4902,7 @@ module RDF
4851
4902
  comment: %(The estimated time the flight will take.).freeze,
4852
4903
  label: "estimatedFlightDuration".freeze,
4853
4904
  "schema:domainIncludes" => %(schema:Flight).freeze,
4854
- "schema:rangeIncludes" => %(schema:Text).freeze,
4905
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:Duration).freeze],
4855
4906
  type: "rdf:Property".freeze
4856
4907
  property :estimatesRiskOf,
4857
4908
  comment: %(The condition, complication, or symptom whose risk is being estimated.).freeze,
@@ -4862,7 +4913,7 @@ module RDF
4862
4913
  property :event,
4863
4914
  comment: %(Upcoming or past event associated with this place or organization.).freeze,
4864
4915
  label: "event".freeze,
4865
- "schema:domainIncludes" => %(schema:Organization).freeze,
4916
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:InformAction).freeze, %(schema:PlayAction).freeze, %(schema:InviteAction).freeze, %(schema:JoinAction).freeze, %(schema:LeaveAction).freeze],
4866
4917
  "schema:rangeIncludes" => %(schema:Event).freeze,
4867
4918
  type: "rdf:Property".freeze
4868
4919
  property :eventStatus,
@@ -4874,7 +4925,7 @@ module RDF
4874
4925
  property :events,
4875
4926
  comment: %(Upcoming or past events associated with this place or organization \(legacy spelling; see singular form, event\).).freeze,
4876
4927
  label: "events".freeze,
4877
- "schema:domainIncludes" => %(schema:Organization).freeze,
4928
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze],
4878
4929
  "schema:rangeIncludes" => %(schema:Event).freeze,
4879
4930
  "schema:supercededBy" => %(schema:event).freeze,
4880
4931
  type: "rdf:Property".freeze
@@ -4895,11 +4946,12 @@ module RDF
4895
4946
  label: "exercisePlan".freeze,
4896
4947
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
4897
4948
  "schema:rangeIncludes" => %(schema:ExercisePlan).freeze,
4949
+ subPropertyOf: "schema:instrument".freeze,
4898
4950
  type: "rdf:Property".freeze
4899
4951
  property :exerciseType,
4900
4952
  comment: %(Type\(s\) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.).freeze,
4901
4953
  label: "exerciseType".freeze,
4902
- "schema:domainIncludes" => %(schema:ExercisePlan).freeze,
4954
+ "schema:domainIncludes" => [%(schema:ExercisePlan).freeze, %(schema:ExerciseAction).freeze],
4903
4955
  "schema:rangeIncludes" => %(schema:Text).freeze,
4904
4956
  type: "rdf:Property".freeze
4905
4957
  property :exifData,
@@ -4959,14 +5011,14 @@ module RDF
4959
5011
  property :faxNumber,
4960
5012
  comment: %(The fax number.).freeze,
4961
5013
  label: "faxNumber".freeze,
4962
- "schema:domainIncludes" => %(schema:Organization).freeze,
5014
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:ContactPoint).freeze, %(schema:Person).freeze],
4963
5015
  "schema:rangeIncludes" => %(schema:Text).freeze,
4964
5016
  type: "rdf:Property".freeze
4965
5017
  property :featureList,
4966
5018
  comment: %(Features or modules provided by this application \(and possibly required by other applications\).).freeze,
4967
5019
  label: "featureList".freeze,
4968
5020
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
4969
- "schema:rangeIncludes" => %(schema:Text).freeze,
5021
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
4970
5022
  type: "rdf:Property".freeze
4971
5023
  property :fiberContent,
4972
5024
  comment: %(The number of grams of fiber.).freeze,
@@ -4990,10 +5042,10 @@ module RDF
4990
5042
  comment: %(The distance of the flight.).freeze,
4991
5043
  label: "flightDistance".freeze,
4992
5044
  "schema:domainIncludes" => %(schema:Flight).freeze,
4993
- "schema:rangeIncludes" => %(schema:Text).freeze,
5045
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:Distance).freeze],
4994
5046
  type: "rdf:Property".freeze
4995
5047
  property :flightNumber,
4996
- comment: %(The unique identifier for a flight.).freeze,
5048
+ comment: %(The unique identifier for a flight, not including the airline IATA code. For example, if describing United flight 110, the flightNumber is '110'. The IATA code can be set on the Airline.).freeze,
4997
5049
  label: "flightNumber".freeze,
4998
5050
  "schema:domainIncludes" => %(schema:Flight).freeze,
4999
5051
  "schema:rangeIncludes" => %(schema:Text).freeze,
@@ -5002,7 +5054,8 @@ module RDF
5002
5054
  comment: %(A sub property of object. The person or organization being followed.).freeze,
5003
5055
  label: "followee".freeze,
5004
5056
  "schema:domainIncludes" => %(schema:FollowAction).freeze,
5005
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5057
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5058
+ subPropertyOf: "schema:object".freeze,
5006
5059
  type: "rdf:Property".freeze
5007
5060
  property :follows,
5008
5061
  comment: %(The most generic uni-directional social relation.).freeze,
@@ -5020,13 +5073,15 @@ module RDF
5020
5073
  comment: %(A sub property of location. The specific food establishment where the action occurred.).freeze,
5021
5074
  label: "foodEstablishment".freeze,
5022
5075
  "schema:domainIncludes" => %(schema:CookAction).freeze,
5023
- "schema:rangeIncludes" => %(schema:FoodEstablishment).freeze,
5076
+ "schema:rangeIncludes" => [%(schema:FoodEstablishment).freeze, %(schema:Place).freeze],
5077
+ subPropertyOf: "schema:location".freeze,
5024
5078
  type: "rdf:Property".freeze
5025
5079
  property :foodEvent,
5026
5080
  comment: %(A sub property of location. The specific food event where the action occurred.).freeze,
5027
5081
  label: "foodEvent".freeze,
5028
5082
  "schema:domainIncludes" => %(schema:CookAction).freeze,
5029
5083
  "schema:rangeIncludes" => %(schema:FoodEvent).freeze,
5084
+ subPropertyOf: "schema:location".freeze,
5030
5085
  type: "rdf:Property".freeze
5031
5086
  property :foodWarning,
5032
5087
  comment: %(Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.).freeze,
@@ -5068,8 +5123,9 @@ module RDF
5068
5123
  property :fromLocation,
5069
5124
  comment: %(A sub property of location. The original location of the object or the agent before the action.).freeze,
5070
5125
  label: "fromLocation".freeze,
5071
- "schema:domainIncludes" => %(schema:MoveAction).freeze,
5072
- "schema:rangeIncludes" => %(schema:Number).freeze,
5126
+ "schema:domainIncludes" => [%(schema:MoveAction).freeze, %(schema:TransferAction).freeze, %(schema:ExerciseAction).freeze],
5127
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Place).freeze],
5128
+ subPropertyOf: "schema:location".freeze,
5073
5129
  type: "rdf:Property".freeze
5074
5130
  property :function,
5075
5131
  comment: %(Function of the anatomical structure.).freeze,
@@ -5099,7 +5155,7 @@ module RDF
5099
5155
  comment: %(The geo coordinates of the place.).freeze,
5100
5156
  label: "geo".freeze,
5101
5157
  "schema:domainIncludes" => %(schema:Place).freeze,
5102
- "schema:rangeIncludes" => %(schema:GeoCoordinates).freeze,
5158
+ "schema:rangeIncludes" => [%(schema:GeoCoordinates).freeze, %(schema:GeoShape).freeze],
5103
5159
  type: "rdf:Property".freeze
5104
5160
  property :geographicArea,
5105
5161
  comment: %(The geographic area associated with the audience.).freeze,
@@ -5116,7 +5172,7 @@ module RDF
5116
5172
  property :globalLocationNumber,
5117
5173
  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,
5118
5174
  label: "globalLocationNumber".freeze,
5119
- "schema:domainIncludes" => %(schema:Organization).freeze,
5175
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Person).freeze],
5120
5176
  "schema:rangeIncludes" => %(schema:Text).freeze,
5121
5177
  type: "rdf:Property".freeze
5122
5178
  property :greater,
@@ -5134,19 +5190,19 @@ module RDF
5134
5190
  property :gtin13,
5135
5191
  comment: %(The GTIN-13 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.).freeze,
5136
5192
  label: "gtin13".freeze,
5137
- "schema:domainIncludes" => %(schema:Offer).freeze,
5193
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
5138
5194
  "schema:rangeIncludes" => %(schema:Text).freeze,
5139
5195
  type: "rdf:Property".freeze
5140
5196
  property :gtin14,
5141
5197
  comment: %(The GTIN-14 code of the product, or the product to which the offer refers.).freeze,
5142
5198
  label: "gtin14".freeze,
5143
- "schema:domainIncludes" => %(schema:Offer).freeze,
5199
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
5144
5200
  "schema:rangeIncludes" => %(schema:Text).freeze,
5145
5201
  type: "rdf:Property".freeze
5146
5202
  property :gtin8,
5147
5203
  comment: %(The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.).freeze,
5148
5204
  label: "gtin8".freeze,
5149
- "schema:domainIncludes" => %(schema:Offer).freeze,
5205
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
5150
5206
  "schema:rangeIncludes" => %(schema:Text).freeze,
5151
5207
  type: "rdf:Property".freeze
5152
5208
  property :guideline,
@@ -5170,13 +5226,13 @@ module RDF
5170
5226
  property :hasDeliveryMethod,
5171
5227
  comment: %(Method used for delivery or shipping.).freeze,
5172
5228
  label: "hasDeliveryMethod".freeze,
5173
- "schema:domainIncludes" => %(schema:DeliveryEvent).freeze,
5229
+ "schema:domainIncludes" => [%(schema:DeliveryEvent).freeze, %(schema:ParcelDelivery).freeze],
5174
5230
  "schema:rangeIncludes" => %(schema:DeliveryMethod).freeze,
5175
5231
  type: "rdf:Property".freeze
5176
5232
  property :hasPOS,
5177
5233
  comment: %(Points-of-Sales operated by the organization or person.).freeze,
5178
5234
  label: "hasPOS".freeze,
5179
- "schema:domainIncludes" => %(schema:Organization).freeze,
5235
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5180
5236
  "schema:rangeIncludes" => %(schema:Place).freeze,
5181
5237
  type: "rdf:Property".freeze
5182
5238
  property :headline,
@@ -5194,14 +5250,14 @@ module RDF
5194
5250
  property :height,
5195
5251
  comment: %(The height of the item.).freeze,
5196
5252
  label: "height".freeze,
5197
- "schema:domainIncludes" => %(schema:MediaObject).freeze,
5198
- "schema:rangeIncludes" => %(schema:Distance).freeze,
5253
+ "schema:domainIncludes" => [%(schema:MediaObject).freeze, %(schema:Product).freeze],
5254
+ "schema:rangeIncludes" => [%(schema:Distance).freeze, %(schema:QuantitativeValue).freeze],
5199
5255
  type: "rdf:Property".freeze
5200
5256
  property :highPrice,
5201
5257
  comment: %(The highest price of all offers available.).freeze,
5202
5258
  label: "highPrice".freeze,
5203
5259
  "schema:domainIncludes" => %(schema:AggregateOffer).freeze,
5204
- "schema:rangeIncludes" => %(schema:Number).freeze,
5260
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
5205
5261
  type: "rdf:Property".freeze
5206
5262
  property :hiringOrganization,
5207
5263
  comment: %(Organization offering the job position.).freeze,
@@ -5213,7 +5269,7 @@ module RDF
5213
5269
  comment: %(A contact location for a person's residence.).freeze,
5214
5270
  label: "homeLocation".freeze,
5215
5271
  "schema:domainIncludes" => %(schema:Person).freeze,
5216
- "schema:rangeIncludes" => %(schema:ContactPoint).freeze,
5272
+ "schema:rangeIncludes" => [%(schema:ContactPoint).freeze, %(schema:Place).freeze],
5217
5273
  type: "rdf:Property".freeze
5218
5274
  property :honorificPrefix,
5219
5275
  comment: %(An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.).freeze,
@@ -5260,7 +5316,13 @@ module RDF
5260
5316
  property :iataCode,
5261
5317
  comment: %(IATA identifier for an airline or airport).freeze,
5262
5318
  label: "iataCode".freeze,
5263
- "schema:domainIncludes" => %(schema:Airline).freeze,
5319
+ "schema:domainIncludes" => [%(schema:Airline).freeze, %(schema:Airport).freeze],
5320
+ "schema:rangeIncludes" => %(schema:Text).freeze,
5321
+ type: "rdf:Property".freeze
5322
+ property :icaoCode,
5323
+ comment: %(IACO identifier for an airport.).freeze,
5324
+ label: "iacoCode".freeze,
5325
+ "schema:domainIncludes" => %(schema:Airport).freeze,
5264
5326
  "schema:rangeIncludes" => %(schema:Text).freeze,
5265
5327
  type: "rdf:Property".freeze
5266
5328
  property :identifyingExam,
@@ -5326,7 +5388,7 @@ module RDF
5326
5388
  property :includesObject,
5327
5389
  comment: %(This links to a node or nodes indicating the exact quantity of the products included in the offer.).freeze,
5328
5390
  label: "includesObject".freeze,
5329
- "schema:domainIncludes" => %(schema:Offer).freeze,
5391
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
5330
5392
  "schema:rangeIncludes" => %(schema:TypeAndQuantityNode).freeze,
5331
5393
  type: "rdf:Property".freeze
5332
5394
  property :increasesRiskOf,
@@ -5338,7 +5400,7 @@ module RDF
5338
5400
  property :indication,
5339
5401
  comment: %(A factor that indicates use of this therapy for treatment and/or prevention of a condition, symptom, etc. For therapies such as drugs, indications can include both officially-approved indications as well as off-label uses. These can be distinguished by using the ApprovedIndication subtype of MedicalIndication.).freeze,
5340
5402
  label: "indication".freeze,
5341
- "schema:domainIncludes" => %(schema:MedicalTherapy).freeze,
5403
+ "schema:domainIncludes" => [%(schema:MedicalTherapy).freeze, %(schema:MedicalDevice).freeze],
5342
5404
  "schema:rangeIncludes" => %(schema:MedicalIndication).freeze,
5343
5405
  type: "rdf:Property".freeze
5344
5406
  property :industry,
@@ -5398,7 +5460,7 @@ module RDF
5398
5460
  property :interactionCount,
5399
5461
  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,
5400
5462
  label: "interactionCount".freeze,
5401
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
5463
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Organization).freeze, %(schema:Place).freeze, %(schema:MediaObject).freeze, %(schema:Person).freeze],
5402
5464
  "schema:rangeIncludes" => %(schema:Text).freeze,
5403
5465
  type: "rdf:Property".freeze
5404
5466
  property :interactivityType,
@@ -5410,9 +5472,15 @@ module RDF
5410
5472
  property :inventoryLevel,
5411
5473
  comment: %(The current approximate inventory level for the item or items.).freeze,
5412
5474
  label: "inventoryLevel".freeze,
5413
- "schema:domainIncludes" => %(schema:Offer).freeze,
5475
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze, %(schema:SomeProducts).freeze],
5414
5476
  "schema:rangeIncludes" => %(schema:QuantitativeValue).freeze,
5415
5477
  type: "rdf:Property".freeze
5478
+ property :inverseOf,
5479
+ comment: %(Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.).freeze,
5480
+ label: "inverseOf".freeze,
5481
+ "schema:domainIncludes" => %(schema:Property).freeze,
5482
+ "schema:rangeIncludes" => %(schema:Property).freeze,
5483
+ type: "rdf:Property".freeze
5416
5484
  property :isAccessoryOrSparePartFor,
5417
5485
  comment: %(A pointer to another product \(or multiple products\) for which this product is an accessory or spare part.).freeze,
5418
5486
  label: "isAccessoryOrSparePartFor".freeze,
@@ -5458,7 +5526,7 @@ module RDF
5458
5526
  property :isProprietary,
5459
5527
  comment: %(True if this item's name is a proprietary/brand name \(vs. generic name\).).freeze,
5460
5528
  label: "isProprietary".freeze,
5461
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
5529
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze],
5462
5530
  "schema:rangeIncludes" => %(schema:Boolean).freeze,
5463
5531
  type: "rdf:Property".freeze
5464
5532
  property :isRelatedTo,
@@ -5488,13 +5556,13 @@ module RDF
5488
5556
  property :isicV4,
5489
5557
  comment: %(The International Standard of Industrial Classification of All Economic Activities \(ISIC\), Revision 4 code for a particular organization, business person, or place.).freeze,
5490
5558
  label: "isicV4".freeze,
5491
- "schema:domainIncludes" => %(schema:Organization).freeze,
5559
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Person).freeze],
5492
5560
  "schema:rangeIncludes" => %(schema:Text).freeze,
5493
5561
  type: "rdf:Property".freeze
5494
5562
  property :issuedBy,
5495
- comment: %(The organization issuing the permit.).freeze,
5563
+ comment: %(The organization issuing the ticket or permit.).freeze,
5496
5564
  label: "issuedBy".freeze,
5497
- "schema:domainIncludes" => %(schema:Permit).freeze,
5565
+ "schema:domainIncludes" => [%(schema:Ticket).freeze, %(schema:Permit).freeze],
5498
5566
  "schema:rangeIncludes" => %(schema:Organization).freeze,
5499
5567
  type: "rdf:Property".freeze
5500
5568
  property :issuedThrough,
@@ -5506,7 +5574,7 @@ module RDF
5506
5574
  property :itemCondition,
5507
5575
  comment: %(A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.).freeze,
5508
5576
  label: "itemCondition".freeze,
5509
- "schema:domainIncludes" => %(schema:Offer).freeze,
5577
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
5510
5578
  "schema:rangeIncludes" => %(schema:OfferItemCondition).freeze,
5511
5579
  type: "rdf:Property".freeze
5512
5580
  property :itemListElement,
@@ -5524,13 +5592,13 @@ module RDF
5524
5592
  property :itemOffered,
5525
5593
  comment: %(The item being offered.).freeze,
5526
5594
  label: "itemOffered".freeze,
5527
- "schema:domainIncludes" => %(schema:Offer).freeze,
5595
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
5528
5596
  "schema:rangeIncludes" => %(schema:Product).freeze,
5529
5597
  type: "rdf:Property".freeze
5530
5598
  property :itemReviewed,
5531
5599
  comment: %(The item that is being reviewed/rated.).freeze,
5532
5600
  label: "itemReviewed".freeze,
5533
- "schema:domainIncludes" => %(schema:AggregateRating).freeze,
5601
+ "schema:domainIncludes" => [%(schema:AggregateRating).freeze, %(schema:Review).freeze],
5534
5602
  "schema:rangeIncludes" => %(schema:Thing).freeze,
5535
5603
  type: "rdf:Property".freeze
5536
5604
  property :itemShipped,
@@ -5552,7 +5620,7 @@ module RDF
5552
5620
  "schema:rangeIncludes" => %(schema:Text).freeze,
5553
5621
  type: "rdf:Property".freeze
5554
5622
  property :keywords,
5555
- comment: %(The keywords/tags used to describe this content.).freeze,
5623
+ comment: %(Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.).freeze,
5556
5624
  label: "keywords".freeze,
5557
5625
  "schema:domainIncludes" => %(schema:CreativeWork).freeze,
5558
5626
  "schema:rangeIncludes" => %(schema:Text).freeze,
@@ -5573,13 +5641,15 @@ module RDF
5573
5641
  comment: %(A sub property of participant. The owner of the real estate property.).freeze,
5574
5642
  label: "landlord".freeze,
5575
5643
  "schema:domainIncludes" => %(schema:RentAction).freeze,
5576
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5644
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5645
+ subPropertyOf: "schema:participant".freeze,
5577
5646
  type: "rdf:Property".freeze
5578
5647
  property :language,
5579
- comment: %(A sub property of instrument. The languaged used on this action.).freeze,
5648
+ comment: %(A sub property of instrument. The language used on this action.).freeze,
5580
5649
  label: "language".freeze,
5581
- "schema:domainIncludes" => %(schema:CommunicateAction).freeze,
5650
+ "schema:domainIncludes" => [%(schema:CommunicateAction).freeze, %(schema:WriteAction).freeze],
5582
5651
  "schema:rangeIncludes" => %(schema:Language).freeze,
5652
+ subPropertyOf: "schema:instrument".freeze,
5583
5653
  type: "rdf:Property".freeze
5584
5654
  property :lastReviewed,
5585
5655
  comment: %(Date on which the content on this web page was last reviewed for accuracy and/or completeness.).freeze,
@@ -5591,7 +5661,7 @@ module RDF
5591
5661
  comment: %(The latitude of a location. For example <code>37.42242</code>.).freeze,
5592
5662
  label: "latitude".freeze,
5593
5663
  "schema:domainIncludes" => %(schema:GeoCoordinates).freeze,
5594
- "schema:rangeIncludes" => %(schema:Number).freeze,
5664
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
5595
5665
  type: "rdf:Property".freeze
5596
5666
  property :learningResourceType,
5597
5667
  comment: %(The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.).freeze,
@@ -5608,7 +5678,7 @@ module RDF
5608
5678
  property :legalStatus,
5609
5679
  comment: %(The drug or supplement's legal status, including any controlled substance schedules that apply.).freeze,
5610
5680
  label: "legalStatus".freeze,
5611
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
5681
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze],
5612
5682
  "schema:rangeIncludes" => %(schema:DrugLegalStatus).freeze,
5613
5683
  type: "rdf:Property".freeze
5614
5684
  property :lender,
@@ -5616,6 +5686,7 @@ module RDF
5616
5686
  label: "lender".freeze,
5617
5687
  "schema:domainIncludes" => %(schema:BorrowAction).freeze,
5618
5688
  "schema:rangeIncludes" => %(schema:Person).freeze,
5689
+ subPropertyOf: "schema:participant".freeze,
5619
5690
  type: "rdf:Property".freeze
5620
5691
  property :lesser,
5621
5692
  comment: %(This ordering relation for qualitative values indicates that the subject is lesser than the object.).freeze,
@@ -5629,6 +5700,12 @@ module RDF
5629
5700
  "schema:domainIncludes" => %(schema:QualitativeValue).freeze,
5630
5701
  "schema:rangeIncludes" => %(schema:QualitativeValue).freeze,
5631
5702
  type: "rdf:Property".freeze
5703
+ property :license,
5704
+ comment: %(A license document that applies to this content, typically indicated by URL.).freeze,
5705
+ label: "license".freeze,
5706
+ "schema:domainIncludes" => %(schema:CreativeWork).freeze,
5707
+ "schema:rangeIncludes" => [%(schema:CreativeWork).freeze, %(schema:URL).freeze],
5708
+ type: "rdf:Property".freeze
5632
5709
  property :line,
5633
5710
  comment: %(A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.).freeze,
5634
5711
  label: "line".freeze,
@@ -5638,8 +5715,8 @@ module RDF
5638
5715
  property :location,
5639
5716
  comment: %(The location of the event, organization or action.).freeze,
5640
5717
  label: "location".freeze,
5641
- "schema:domainIncludes" => %(schema:Organization).freeze,
5642
- "schema:rangeIncludes" => %(schema:Place).freeze,
5718
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Event).freeze, %(schema:Action).freeze],
5719
+ "schema:rangeIncludes" => [%(schema:Place).freeze, %(schema:PostalAddress).freeze],
5643
5720
  type: "rdf:Property".freeze
5644
5721
  property :lodgingUnitDescription,
5645
5722
  comment: %(A full description of the lodging unit.).freeze,
@@ -5651,31 +5728,32 @@ module RDF
5651
5728
  comment: %(Textual description of the unit type \(including suite vs. room, size of bed, etc.\).).freeze,
5652
5729
  label: "lodgingUnitType".freeze,
5653
5730
  "schema:domainIncludes" => %(schema:LodgingReservation).freeze,
5654
- "schema:rangeIncludes" => %(schema:Text).freeze,
5731
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:QualitativeValue).freeze],
5655
5732
  type: "rdf:Property".freeze
5656
5733
  property :logo,
5657
5734
  comment: %(A logo associated with an organization.).freeze,
5658
5735
  label: "logo".freeze,
5659
- "schema:domainIncludes" => %(schema:Organization).freeze,
5660
- "schema:rangeIncludes" => %(schema:ImageObject).freeze,
5736
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Product).freeze, %(schema:Brand).freeze],
5737
+ "schema:rangeIncludes" => [%(schema:ImageObject).freeze, %(schema:URL).freeze],
5661
5738
  type: "rdf:Property".freeze
5662
5739
  property :longitude,
5663
5740
  comment: %(The longitude of a location. For example <code>-122.08585</code>.).freeze,
5664
5741
  label: "longitude".freeze,
5665
5742
  "schema:domainIncludes" => %(schema:GeoCoordinates).freeze,
5666
- "schema:rangeIncludes" => %(schema:Number).freeze,
5743
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
5667
5744
  type: "rdf:Property".freeze
5668
5745
  property :loser,
5669
5746
  comment: %(A sub property of participant. The loser of the action.).freeze,
5670
5747
  label: "loser".freeze,
5671
5748
  "schema:domainIncludes" => %(schema:WinAction).freeze,
5672
5749
  "schema:rangeIncludes" => %(schema:Person).freeze,
5750
+ subPropertyOf: "schema:participant".freeze,
5673
5751
  type: "rdf:Property".freeze
5674
5752
  property :lowPrice,
5675
5753
  comment: %(The lowest price of all offers available.).freeze,
5676
5754
  label: "lowPrice".freeze,
5677
5755
  "schema:domainIncludes" => %(schema:AggregateOffer).freeze,
5678
- "schema:rangeIncludes" => %(schema:Number).freeze,
5756
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
5679
5757
  type: "rdf:Property".freeze
5680
5758
  property :mainContentOfPage,
5681
5759
  comment: %(Indicates if this web page element is the main subject of the page.).freeze,
@@ -5686,13 +5764,13 @@ module RDF
5686
5764
  property :makesOffer,
5687
5765
  comment: %(A pointer to products or services offered by the organization or person.).freeze,
5688
5766
  label: "makesOffer".freeze,
5689
- "schema:domainIncludes" => %(schema:Organization).freeze,
5767
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5690
5768
  "schema:rangeIncludes" => %(schema:Offer).freeze,
5691
5769
  type: "rdf:Property".freeze
5692
5770
  property :manufacturer,
5693
5771
  comment: %(The manufacturer of the product.).freeze,
5694
5772
  label: "manufacturer".freeze,
5695
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
5773
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze, %(schema:Product).freeze],
5696
5774
  "schema:rangeIncludes" => %(schema:Organization).freeze,
5697
5775
  type: "rdf:Property".freeze
5698
5776
  property :map,
@@ -5715,9 +5793,9 @@ module RDF
5715
5793
  "schema:rangeIncludes" => %(schema:Number).freeze,
5716
5794
  type: "rdf:Property".freeze
5717
5795
  property :maxValue,
5718
- comment: %(The upper of the product characteristic.).freeze,
5796
+ comment: %(The upper value of some characteristic or property.).freeze,
5719
5797
  label: "maxValue".freeze,
5720
- "schema:domainIncludes" => %(schema:QuantitativeValue).freeze,
5798
+ "schema:domainIncludes" => [%(schema:QuantitativeValue).freeze, %(schema:PropertyValueSpecification).freeze],
5721
5799
  "schema:rangeIncludes" => %(schema:Number).freeze,
5722
5800
  type: "rdf:Property".freeze
5723
5801
  property :maximumIntake,
@@ -5735,13 +5813,13 @@ module RDF
5735
5813
  property :mechanismOfAction,
5736
5814
  comment: %(The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.).freeze,
5737
5815
  label: "mechanismOfAction".freeze,
5738
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
5816
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze],
5739
5817
  "schema:rangeIncludes" => %(schema:Text).freeze,
5740
5818
  type: "rdf:Property".freeze
5741
5819
  property :medicalSpecialty,
5742
5820
  comment: %(A medical specialty of the provider.).freeze,
5743
5821
  label: "medicalSpecialty".freeze,
5744
- "schema:domainIncludes" => %(schema:Hospital).freeze,
5822
+ "schema:domainIncludes" => [%(schema:Hospital).freeze, %(schema:MedicalClinic).freeze, %(schema:Physician).freeze],
5745
5823
  "schema:rangeIncludes" => %(schema:MedicalSpecialty).freeze,
5746
5824
  type: "rdf:Property".freeze
5747
5825
  property :medicineSystem,
@@ -5751,22 +5829,24 @@ module RDF
5751
5829
  "schema:rangeIncludes" => %(schema:MedicineSystem).freeze,
5752
5830
  type: "rdf:Property".freeze
5753
5831
  property :member,
5754
- comment: %(A member of this organization.).freeze,
5832
+ comment: %(A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.).freeze,
5755
5833
  label: "member".freeze,
5756
- "schema:domainIncludes" => %(schema:Organization).freeze,
5757
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5834
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:ProgramMembership).freeze],
5835
+ "schema:inverseOf" => %(schema:memberOf).freeze,
5836
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5758
5837
  type: "rdf:Property".freeze
5759
5838
  property :memberOf,
5760
- comment: %(An organization to which the person belongs.).freeze,
5839
+ comment: %(An Organization \(or ProgramMembership\) to which this Person or Organization belongs.).freeze,
5761
5840
  label: "memberOf".freeze,
5762
- "schema:domainIncludes" => %(schema:Person).freeze,
5763
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5841
+ "schema:domainIncludes" => [%(schema:Person).freeze, %(schema:Organization).freeze],
5842
+ "schema:inverseOf" => %(schema:member).freeze,
5843
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:ProgramMembership).freeze],
5764
5844
  type: "rdf:Property".freeze
5765
5845
  property :members,
5766
5846
  comment: %(A member of this organization \(legacy spelling; see singular form, member\).).freeze,
5767
5847
  label: "members".freeze,
5768
- "schema:domainIncludes" => %(schema:Organization).freeze,
5769
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5848
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:ProgramMembership).freeze],
5849
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5770
5850
  "schema:supercededBy" => %(schema:member).freeze,
5771
5851
  type: "rdf:Property".freeze
5772
5852
  property :membershipNumber,
@@ -5779,7 +5859,7 @@ module RDF
5779
5859
  comment: %(Minimum memory requirements.).freeze,
5780
5860
  label: "memoryRequirements".freeze,
5781
5861
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
5782
- "schema:rangeIncludes" => %(schema:Text).freeze,
5862
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
5783
5863
  type: "rdf:Property".freeze
5784
5864
  property :mentions,
5785
5865
  comment: %(Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.).freeze,
@@ -5791,13 +5871,13 @@ module RDF
5791
5871
  comment: %(Either the actual menu or a URL of the menu.).freeze,
5792
5872
  label: "menu".freeze,
5793
5873
  "schema:domainIncludes" => %(schema:FoodEstablishment).freeze,
5794
- "schema:rangeIncludes" => %(schema:Text).freeze,
5874
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
5795
5875
  type: "rdf:Property".freeze
5796
5876
  property :merchant,
5797
5877
  comment: %(The party taking the order \(e.g. Amazon.com is a merchant for many sellers\).).freeze,
5798
5878
  label: "merchant".freeze,
5799
5879
  "schema:domainIncludes" => %(schema:Order).freeze,
5800
- "schema:rangeIncludes" => %(schema:Organization).freeze,
5880
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5801
5881
  type: "rdf:Property".freeze
5802
5882
  property :minPrice,
5803
5883
  comment: %(The lowest price if the price is a range.).freeze,
@@ -5806,16 +5886,16 @@ module RDF
5806
5886
  "schema:rangeIncludes" => %(schema:Number).freeze,
5807
5887
  type: "rdf:Property".freeze
5808
5888
  property :minValue,
5809
- comment: %(The lower value of the product characteristic.).freeze,
5889
+ comment: %(The lower value of some characteristic or property.).freeze,
5810
5890
  label: "minValue".freeze,
5811
- "schema:domainIncludes" => %(schema:QuantitativeValue).freeze,
5891
+ "schema:domainIncludes" => [%(schema:QuantitativeValue).freeze, %(schema:PropertyValueSpecification).freeze],
5812
5892
  "schema:rangeIncludes" => %(schema:Number).freeze,
5813
5893
  type: "rdf:Property".freeze
5814
5894
  property :model,
5815
5895
  comment: %(The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.).freeze,
5816
5896
  label: "model".freeze,
5817
5897
  "schema:domainIncludes" => %(schema:Product).freeze,
5818
- "schema:rangeIncludes" => %(schema:ProductModel).freeze,
5898
+ "schema:rangeIncludes" => [%(schema:ProductModel).freeze, %(schema:Text).freeze],
5819
5899
  type: "rdf:Property".freeze
5820
5900
  property :modifiedTime,
5821
5901
  comment: %(The date and time the reservation was modified.).freeze,
@@ -5826,7 +5906,7 @@ module RDF
5826
5906
  property :mpn,
5827
5907
  comment: %(The Manufacturer Part Number \(MPN\) of the product, or the product to which the offer refers.).freeze,
5828
5908
  label: "mpn".freeze,
5829
- "schema:domainIncludes" => %(schema:Offer).freeze,
5909
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
5830
5910
  "schema:rangeIncludes" => %(schema:Text).freeze,
5831
5911
  type: "rdf:Property".freeze
5832
5912
  property :multipleValues,
@@ -5844,19 +5924,20 @@ module RDF
5844
5924
  property :musicBy,
5845
5925
  comment: %(The composer of the movie or TV/radio soundtrack.).freeze,
5846
5926
  label: "musicBy".freeze,
5847
- "schema:domainIncludes" => %(schema:Movie).freeze,
5848
- "schema:rangeIncludes" => %(schema:MusicGroup).freeze,
5927
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
5928
+ "schema:rangeIncludes" => [%(schema:MusicGroup).freeze, %(schema:Person).freeze],
5849
5929
  type: "rdf:Property".freeze
5850
5930
  property :musicGroupMember,
5851
- comment: %(A member of the music group&#x2014;for example, John, Paul, George, or Ringo.).freeze,
5931
+ comment: %(A member of a music group&#x2014;for example, John, Paul, George, or Ringo.).freeze,
5852
5932
  label: "musicGroupMember".freeze,
5853
5933
  "schema:domainIncludes" => %(schema:MusicGroup).freeze,
5854
5934
  "schema:rangeIncludes" => %(schema:Person).freeze,
5935
+ "schema:supercededBy" => %(schema:member).freeze,
5855
5936
  type: "rdf:Property".freeze
5856
5937
  property :naics,
5857
5938
  comment: %(The North American Industry Classification System \(NAICS\) code for a particular organization or business person.).freeze,
5858
5939
  label: "naics".freeze,
5859
- "schema:domainIncludes" => %(schema:Organization).freeze,
5940
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
5860
5941
  "schema:rangeIncludes" => %(schema:Text).freeze,
5861
5942
  type: "rdf:Property".freeze
5862
5943
  property :name,
@@ -5865,6 +5946,12 @@ module RDF
5865
5946
  "schema:domainIncludes" => %(schema:Thing).freeze,
5866
5947
  "schema:rangeIncludes" => %(schema:Text).freeze,
5867
5948
  type: "rdf:Property".freeze
5949
+ property :namedPosition,
5950
+ comment: %(A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.).freeze,
5951
+ label: "namedPosition".freeze,
5952
+ "schema:domainIncludes" => %(schema:OrganizationRole).freeze,
5953
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
5954
+ type: "rdf:Property".freeze
5868
5955
  property :nationality,
5869
5956
  comment: %(Nationality of the person.).freeze,
5870
5957
  label: "nationality".freeze,
@@ -5898,7 +5985,7 @@ module RDF
5898
5985
  property :nonProprietaryName,
5899
5986
  comment: %(The generic name of this drug or supplement.).freeze,
5900
5987
  label: "nonProprietaryName".freeze,
5901
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
5988
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:Drug).freeze],
5902
5989
  "schema:rangeIncludes" => %(schema:Text).freeze,
5903
5990
  type: "rdf:Property".freeze
5904
5991
  property :normalRange,
@@ -5911,13 +5998,13 @@ module RDF
5911
5998
  comment: %(The number of adults staying in the unit.).freeze,
5912
5999
  label: "numAdults".freeze,
5913
6000
  "schema:domainIncludes" => %(schema:LodgingReservation).freeze,
5914
- "schema:rangeIncludes" => %(schema:Number).freeze,
6001
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:QuantitativeValue).freeze],
5915
6002
  type: "rdf:Property".freeze
5916
6003
  property :numChildren,
5917
6004
  comment: %(The number of children staying in the unit.).freeze,
5918
6005
  label: "numChildren".freeze,
5919
6006
  "schema:domainIncludes" => %(schema:LodgingReservation).freeze,
5920
- "schema:rangeIncludes" => %(schema:Number).freeze,
6007
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:QuantitativeValue).freeze],
5921
6008
  type: "rdf:Property".freeze
5922
6009
  property :numTracks,
5923
6010
  comment: %(The number of tracks in this album or playlist.).freeze,
@@ -5928,7 +6015,7 @@ module RDF
5928
6015
  property :numberOfEpisodes,
5929
6016
  comment: %(The number of episodes in this season or series.).freeze,
5930
6017
  label: "numberOfEpisodes".freeze,
5931
- "schema:domainIncludes" => %(schema:Season).freeze,
6018
+ "schema:domainIncludes" => [%(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioSeason).freeze, %(schema:RadioSeries).freeze],
5932
6019
  "schema:rangeIncludes" => %(schema:Number).freeze,
5933
6020
  type: "rdf:Property".freeze
5934
6021
  property :numberOfPages,
@@ -5976,13 +6063,13 @@ module RDF
5976
6063
  property :offers,
5977
6064
  comment: %(An offer to provide this item&#x2014;for example, an offer to sell a product, rent the DVD of a movie, or give away tickets to an event.).freeze,
5978
6065
  label: "offers".freeze,
5979
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
6066
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:MediaObject).freeze, %(schema:Event).freeze, %(schema:Product).freeze],
5980
6067
  "schema:rangeIncludes" => %(schema:Offer).freeze,
5981
6068
  type: "rdf:Property".freeze
5982
6069
  property :openingHours,
5983
6070
  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,
5984
6071
  label: "openingHours".freeze,
5985
- "schema:domainIncludes" => %(schema:LocalBusiness).freeze,
6072
+ "schema:domainIncludes" => [%(schema:LocalBusiness).freeze, %(schema:CivicStructure).freeze],
5986
6073
  "schema:rangeIncludes" => %(schema:Duration).freeze,
5987
6074
  type: "rdf:Property".freeze
5988
6075
  property :openingHoursSpecification,
@@ -6008,12 +6095,14 @@ module RDF
6008
6095
  label: "opponent".freeze,
6009
6096
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
6010
6097
  "schema:rangeIncludes" => %(schema:Person).freeze,
6098
+ subPropertyOf: "schema:participant".freeze,
6011
6099
  type: "rdf:Property".freeze
6012
6100
  property :option,
6013
6101
  comment: %(A sub property of object. The options subject to this action.).freeze,
6014
6102
  label: "option".freeze,
6015
6103
  "schema:domainIncludes" => %(schema:ChooseAction).freeze,
6016
- "schema:rangeIncludes" => %(schema:Text).freeze,
6104
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:Thing).freeze],
6105
+ subPropertyOf: "schema:object".freeze,
6017
6106
  type: "rdf:Property".freeze
6018
6107
  property :orderDate,
6019
6108
  comment: %(Date order was placed.).freeze,
@@ -6090,8 +6179,8 @@ module RDF
6090
6179
  property :owns,
6091
6180
  comment: %(Products owned by the organization or person.).freeze,
6092
6181
  label: "owns".freeze,
6093
- "schema:domainIncludes" => %(schema:Organization).freeze,
6094
- "schema:rangeIncludes" => %(schema:OwnershipInfo).freeze,
6182
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
6183
+ "schema:rangeIncludes" => [%(schema:OwnershipInfo).freeze, %(schema:Product).freeze],
6095
6184
  type: "rdf:Property".freeze
6096
6185
  property :parent,
6097
6186
  comment: %(A parent of this person.).freeze,
@@ -6102,7 +6191,7 @@ module RDF
6102
6191
  property :parentItem,
6103
6192
  comment: %(The parent of a question, answer or item in general.).freeze,
6104
6193
  label: "parentItem".freeze,
6105
- "schema:domainIncludes" => %(schema:Answer).freeze,
6194
+ "schema:domainIncludes" => [%(schema:Answer).freeze, %(schema:Comment).freeze],
6106
6195
  "schema:rangeIncludes" => %(schema:Question).freeze,
6107
6196
  type: "rdf:Property".freeze
6108
6197
  property :parentService,
@@ -6133,13 +6222,13 @@ module RDF
6133
6222
  property :partOfSeason,
6134
6223
  comment: %(The season to which this episode belongs.).freeze,
6135
6224
  label: "partOfSeason".freeze,
6136
- "schema:domainIncludes" => %(schema:Episode).freeze,
6225
+ "schema:domainIncludes" => [%(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Clip).freeze, %(schema:RadioClip).freeze, %(schema:RadioEpisode).freeze, %(schema:TVClip).freeze],
6137
6226
  "schema:rangeIncludes" => %(schema:Season).freeze,
6138
6227
  type: "rdf:Property".freeze
6139
6228
  property :partOfSeries,
6140
6229
  comment: %(The series to which this episode or season belongs.).freeze,
6141
6230
  label: "partOfSeries".freeze,
6142
- "schema:domainIncludes" => %(schema:Episode).freeze,
6231
+ "schema:domainIncludes" => [%(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Clip).freeze, %(schema:RadioClip).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeason).freeze, %(schema:TVClip).freeze],
6143
6232
  "schema:rangeIncludes" => %(schema:Series).freeze,
6144
6233
  type: "rdf:Property".freeze
6145
6234
  property :partOfSystem,
@@ -6151,7 +6240,7 @@ module RDF
6151
6240
  property :partOfTVSeries,
6152
6241
  comment: %(The TV series to which this episode or season belongs. \(legacy form; partOfSeries is preferred\)).freeze,
6153
6242
  label: "partOfTVSeries".freeze,
6154
- "schema:domainIncludes" => %(schema:TVEpisode).freeze,
6243
+ "schema:domainIncludes" => [%(schema:TVEpisode).freeze, %(schema:TVSeason).freeze, %(schema:TVClip).freeze],
6155
6244
  "schema:rangeIncludes" => %(schema:TVSeries).freeze,
6156
6245
  "schema:supercededBy" => %(schema:partOfSeries).freeze,
6157
6246
  type: "rdf:Property".freeze
@@ -6159,18 +6248,18 @@ module RDF
6159
6248
  comment: %(Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.).freeze,
6160
6249
  label: "participant".freeze,
6161
6250
  "schema:domainIncludes" => %(schema:Action).freeze,
6162
- "schema:rangeIncludes" => %(schema:Organization).freeze,
6251
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
6163
6252
  type: "rdf:Property".freeze
6164
6253
  property :partySize,
6165
6254
  comment: %(Number of people the reservation should accommodate.).freeze,
6166
6255
  label: "partySize".freeze,
6167
- "schema:domainIncludes" => %(schema:FoodEstablishmentReservation).freeze,
6168
- "schema:rangeIncludes" => %(schema:Number).freeze,
6256
+ "schema:domainIncludes" => [%(schema:FoodEstablishmentReservation).freeze, %(schema:TaxiReservation).freeze],
6257
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:QuantitativeValue).freeze],
6169
6258
  type: "rdf:Property".freeze
6170
6259
  property :pathophysiology,
6171
6260
  comment: %(Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.).freeze,
6172
6261
  label: "pathophysiology".freeze,
6173
- "schema:domainIncludes" => %(schema:PhysicalActivity).freeze,
6262
+ "schema:domainIncludes" => [%(schema:PhysicalActivity).freeze, %(schema:MedicalCondition).freeze],
6174
6263
  "schema:rangeIncludes" => %(schema:Text).freeze,
6175
6264
  type: "rdf:Property".freeze
6176
6265
  property :paymentAccepted,
@@ -6207,7 +6296,7 @@ module RDF
6207
6296
  comment: %(A performer at the event&#x2014;for example, a presenter, musician, musical group or actor.).freeze,
6208
6297
  label: "performer".freeze,
6209
6298
  "schema:domainIncludes" => %(schema:Event).freeze,
6210
- "schema:rangeIncludes" => %(schema:Organization).freeze,
6299
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
6211
6300
  type: "rdf:Property".freeze
6212
6301
  property :performerIn,
6213
6302
  comment: %(Event that this person is a performer or participant in.).freeze,
@@ -6219,7 +6308,7 @@ module RDF
6219
6308
  comment: %(The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor \(legacy spelling; see singular form, performer\).).freeze,
6220
6309
  label: "performers".freeze,
6221
6310
  "schema:domainIncludes" => %(schema:Event).freeze,
6222
- "schema:rangeIncludes" => %(schema:Organization).freeze,
6311
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
6223
6312
  "schema:supercededBy" => %(schema:performer).freeze,
6224
6313
  type: "rdf:Property".freeze
6225
6314
  property :permissions,
@@ -6244,13 +6333,13 @@ module RDF
6244
6333
  comment: %(A photograph of this place.).freeze,
6245
6334
  label: "photo".freeze,
6246
6335
  "schema:domainIncludes" => %(schema:Place).freeze,
6247
- "schema:rangeIncludes" => %(schema:ImageObject).freeze,
6336
+ "schema:rangeIncludes" => [%(schema:ImageObject).freeze, %(schema:Photograph).freeze],
6248
6337
  type: "rdf:Property".freeze
6249
6338
  property :photos,
6250
6339
  comment: %(Photographs of this place \(legacy spelling; see singular form, photo\).).freeze,
6251
6340
  label: "photos".freeze,
6252
6341
  "schema:domainIncludes" => %(schema:Place).freeze,
6253
- "schema:rangeIncludes" => %(schema:ImageObject).freeze,
6342
+ "schema:rangeIncludes" => [%(schema:ImageObject).freeze, %(schema:Photograph).freeze],
6254
6343
  "schema:supercededBy" => %(schema:photo).freeze,
6255
6344
  type: "rdf:Property".freeze
6256
6345
  property :physiologicalBenefits,
@@ -6262,13 +6351,13 @@ module RDF
6262
6351
  property :pickupLocation,
6263
6352
  comment: %(Where a taxi will pick up a passenger or a rental car can be picked up.).freeze,
6264
6353
  label: "pickupLocation".freeze,
6265
- "schema:domainIncludes" => %(schema:RentalCarReservation).freeze,
6354
+ "schema:domainIncludes" => [%(schema:RentalCarReservation).freeze, %(schema:TaxiReservation).freeze],
6266
6355
  "schema:rangeIncludes" => %(schema:Place).freeze,
6267
6356
  type: "rdf:Property".freeze
6268
6357
  property :pickupTime,
6269
6358
  comment: %(When a taxi will pickup a passenger or a rental car can be picked up.).freeze,
6270
6359
  label: "pickupTime".freeze,
6271
- "schema:domainIncludes" => %(schema:RentalCarReservation).freeze,
6360
+ "schema:domainIncludes" => [%(schema:RentalCarReservation).freeze, %(schema:TaxiReservation).freeze],
6272
6361
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
6273
6362
  type: "rdf:Property".freeze
6274
6363
  property :playerType,
@@ -6292,7 +6381,7 @@ module RDF
6292
6381
  property :position,
6293
6382
  comment: %(Free text to define other than pure numerical ranking of an episode or a season in an ordered list of items \(further formatting restrictions may apply within particular user groups\).).freeze,
6294
6383
  label: "position".freeze,
6295
- "schema:domainIncludes" => %(schema:Episode).freeze,
6384
+ "schema:domainIncludes" => [%(schema:Episode).freeze, %(schema:Season).freeze, %(schema:Clip).freeze],
6296
6385
  "schema:rangeIncludes" => %(schema:Text).freeze,
6297
6386
  type: "rdf:Property".freeze
6298
6387
  property :possibleComplication,
@@ -6304,7 +6393,7 @@ module RDF
6304
6393
  property :possibleTreatment,
6305
6394
  comment: %(A possible treatment to address this condition, sign or symptom.).freeze,
6306
6395
  label: "possibleTreatment".freeze,
6307
- "schema:domainIncludes" => %(schema:MedicalCondition).freeze,
6396
+ "schema:domainIncludes" => [%(schema:MedicalCondition).freeze, %(schema:MedicalSignOrSymptom).freeze],
6308
6397
  "schema:rangeIncludes" => %(schema:MedicalTherapy).freeze,
6309
6398
  type: "rdf:Property".freeze
6310
6399
  property :postOfficeBoxNumber,
@@ -6388,13 +6477,13 @@ module RDF
6388
6477
  property :price,
6389
6478
  comment: %(The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.).freeze,
6390
6479
  label: "price".freeze,
6391
- "schema:domainIncludes" => %(schema:Offer).freeze,
6392
- "schema:rangeIncludes" => %(schema:Number).freeze,
6480
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PriceSpecification).freeze, %(schema:TradeAction).freeze],
6481
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
6393
6482
  type: "rdf:Property".freeze
6394
6483
  property :priceCurrency,
6395
- comment: %(The currency \(in 3-letter ISO 4217 format\) of the offer price or a price component, when attached to PriceSpecification and its subtypes.).freeze,
6484
+ comment: %(The currency \(in 3-letter ISO 4217 format\) of the price or a price component, when attached to PriceSpecification and its subtypes.).freeze,
6396
6485
  label: "priceCurrency".freeze,
6397
- "schema:domainIncludes" => %(schema:Offer).freeze,
6486
+ "schema:domainIncludes" => [%(schema:Reservation).freeze, %(schema:Ticket).freeze, %(schema:Offer).freeze, %(schema:PriceSpecification).freeze],
6398
6487
  "schema:rangeIncludes" => %(schema:Text).freeze,
6399
6488
  type: "rdf:Property".freeze
6400
6489
  property :priceRange,
@@ -6406,7 +6495,7 @@ module RDF
6406
6495
  property :priceSpecification,
6407
6496
  comment: %(One or more detailed price specifications, indicating the unit price and delivery or payment charges.).freeze,
6408
6497
  label: "priceSpecification".freeze,
6409
- "schema:domainIncludes" => %(schema:Offer).freeze,
6498
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
6410
6499
  "schema:rangeIncludes" => %(schema:PriceSpecification).freeze,
6411
6500
  type: "rdf:Property".freeze
6412
6501
  property :priceType,
@@ -6484,7 +6573,7 @@ module RDF
6484
6573
  property :producer,
6485
6574
  comment: %(The producer of the movie, tv/radio series, season, or episode, or video.).freeze,
6486
6575
  label: "producer".freeze,
6487
- "schema:domainIncludes" => %(schema:Movie).freeze,
6576
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Season).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
6488
6577
  "schema:rangeIncludes" => %(schema:Person).freeze,
6489
6578
  type: "rdf:Property".freeze
6490
6579
  property :produces,
@@ -6503,12 +6592,12 @@ module RDF
6503
6592
  comment: %(The product or service this support contact point is related to \(such as product support for a particular product line\). This can be a specific product or product line \(e.g. "iPhone"\) or a general category of products or services \(e.g. "smartphones"\).).freeze,
6504
6593
  label: "productSupported".freeze,
6505
6594
  "schema:domainIncludes" => %(schema:ContactPoint).freeze,
6506
- "schema:rangeIncludes" => %(schema:Product).freeze,
6595
+ "schema:rangeIncludes" => [%(schema:Product).freeze, %(schema:Text).freeze],
6507
6596
  type: "rdf:Property".freeze
6508
6597
  property :productionCompany,
6509
6598
  comment: %(The production company or studio that made the movie, tv/radio series, season, or episode, or media object.).freeze,
6510
6599
  label: "productionCompany".freeze,
6511
- "schema:domainIncludes" => %(schema:MediaObject).freeze,
6600
+ "schema:domainIncludes" => [%(schema:MediaObject).freeze, %(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Season).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:VideoObject).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeries).freeze],
6512
6601
  "schema:rangeIncludes" => %(schema:Organization).freeze,
6513
6602
  type: "rdf:Property".freeze
6514
6603
  property :proficiencyLevel,
@@ -6554,10 +6643,10 @@ module RDF
6554
6643
  "schema:rangeIncludes" => %(schema:Mass).freeze,
6555
6644
  type: "rdf:Property".freeze
6556
6645
  property :provider,
6557
- comment: %(The organization or agency that is providing the service.).freeze,
6646
+ comment: %(The person or organization providing the service, reservation, or creative work. The provider may subcontract out the service.).freeze,
6558
6647
  label: "provider".freeze,
6559
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
6560
- "schema:rangeIncludes" => %(schema:Organization).freeze,
6648
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Service).freeze, %(schema:Reservation).freeze, %(schema:Flight).freeze, %(schema:TrainTrip).freeze, %(schema:BusTrip).freeze],
6649
+ "schema:rangeIncludes" => [%(schema:Person).freeze, %(schema:Organization).freeze],
6561
6650
  type: "rdf:Property".freeze
6562
6651
  property :providesService,
6563
6652
  comment: %(The service provided by this channel.).freeze,
@@ -6568,7 +6657,7 @@ module RDF
6568
6657
  property :publication,
6569
6658
  comment: %(A publication event associated with the episode, clip or media object.).freeze,
6570
6659
  label: "publication".freeze,
6571
- "schema:domainIncludes" => %(schema:MediaObject).freeze,
6660
+ "schema:domainIncludes" => [%(schema:MediaObject).freeze, %(schema:Episode).freeze, %(schema:Clip).freeze],
6572
6661
  "schema:rangeIncludes" => %(schema:PublicationEvent).freeze,
6573
6662
  type: "rdf:Property".freeze
6574
6663
  property :publicationType,
@@ -6598,8 +6687,8 @@ module RDF
6598
6687
  property :purpose,
6599
6688
  comment: %(A goal towards an action is taken. Can be concrete or abstract.).freeze,
6600
6689
  label: "purpose".freeze,
6601
- "schema:domainIncludes" => %(schema:MedicalDevice).freeze,
6602
- "schema:rangeIncludes" => %(schema:MedicalDevicePurpose).freeze,
6690
+ "schema:domainIncludes" => [%(schema:MedicalDevice).freeze, %(schema:AllocateAction).freeze, %(schema:PayAction).freeze],
6691
+ "schema:rangeIncludes" => [%(schema:MedicalDevicePurpose).freeze, %(schema:Thing).freeze],
6603
6692
  type: "rdf:Property".freeze
6604
6693
  property :qualifications,
6605
6694
  comment: %(Specific qualifications required for this role.).freeze,
@@ -6611,13 +6700,15 @@ module RDF
6611
6700
  comment: %(A sub property of instrument. The query used on this action.).freeze,
6612
6701
  label: "query".freeze,
6613
6702
  "schema:domainIncludes" => %(schema:SearchAction).freeze,
6614
- "schema:rangeIncludes" => %(schema:Class).freeze,
6703
+ "schema:rangeIncludes" => [%(schema:Class).freeze, %(schema:Text).freeze],
6704
+ subPropertyOf: "schema:instrument".freeze,
6615
6705
  type: "rdf:Property".freeze
6616
6706
  property :question,
6617
6707
  comment: %(A sub property of object. A question.).freeze,
6618
6708
  label: "question".freeze,
6619
6709
  "schema:domainIncludes" => %(schema:AskAction).freeze,
6620
6710
  "schema:rangeIncludes" => %(schema:Text).freeze,
6711
+ subPropertyOf: "schema:object".freeze,
6621
6712
  type: "rdf:Property".freeze
6622
6713
  property :rangeIncludes,
6623
6714
  comment: %(Relates a property to a class that constitutes \(one of\) the expected type\(s\) for values of the property.).freeze,
@@ -6648,12 +6739,14 @@ module RDF
6648
6739
  label: "realEstateAgent".freeze,
6649
6740
  "schema:domainIncludes" => %(schema:RentAction).freeze,
6650
6741
  "schema:rangeIncludes" => %(schema:RealEstateAgent).freeze,
6742
+ subPropertyOf: "schema:participant".freeze,
6651
6743
  type: "rdf:Property".freeze
6652
6744
  property :recipe,
6653
6745
  comment: %(A sub property of instrument. The recipe/instructions used to perform the action.).freeze,
6654
6746
  label: "recipe".freeze,
6655
6747
  "schema:domainIncludes" => %(schema:CookAction).freeze,
6656
6748
  "schema:rangeIncludes" => %(schema:Recipe).freeze,
6749
+ subPropertyOf: "schema:instrument".freeze,
6657
6750
  type: "rdf:Property".freeze
6658
6751
  property :recipeCategory,
6659
6752
  comment: %(The category of the recipe&#x2014;for example, appetizer, entree, etc.).freeze,
@@ -6662,7 +6755,7 @@ module RDF
6662
6755
  "schema:rangeIncludes" => %(schema:Text).freeze,
6663
6756
  type: "rdf:Property".freeze
6664
6757
  property :recipeCuisine,
6665
- comment: %(The cuisine of the recipe \(for example, French or Ethopian\).).freeze,
6758
+ comment: %(The cuisine of the recipe \(for example, French or Ethiopian\).).freeze,
6666
6759
  label: "recipeCuisine".freeze,
6667
6760
  "schema:domainIncludes" => %(schema:Recipe).freeze,
6668
6761
  "schema:rangeIncludes" => %(schema:Text).freeze,
@@ -6682,8 +6775,9 @@ module RDF
6682
6775
  property :recipient,
6683
6776
  comment: %(A sub property of participant. The participant who is at the receiving end of the action.).freeze,
6684
6777
  label: "recipient".freeze,
6685
- "schema:domainIncludes" => %(schema:CommunicateAction).freeze,
6686
- "schema:rangeIncludes" => %(schema:Audience).freeze,
6778
+ "schema:domainIncludes" => [%(schema:CommunicateAction).freeze, %(schema:AuthorizeAction).freeze, %(schema:DonateAction).freeze, %(schema:GiveAction).freeze, %(schema:PayAction).freeze, %(schema:ReturnAction).freeze, %(schema:SendAction).freeze, %(schema:TipAction).freeze],
6779
+ "schema:rangeIncludes" => [%(schema:Audience).freeze, %(schema:Organization).freeze, %(schema:Person).freeze],
6780
+ subPropertyOf: "schema:participant".freeze,
6687
6781
  type: "rdf:Property".freeze
6688
6782
  property :recognizingAuthority,
6689
6783
  comment: %(If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.).freeze,
@@ -6706,8 +6800,8 @@ module RDF
6706
6800
  property :regionDrained,
6707
6801
  comment: %(The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.).freeze,
6708
6802
  label: "regionDrained".freeze,
6709
- "schema:domainIncludes" => %(schema:LymphaticVessel).freeze,
6710
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
6803
+ "schema:domainIncludes" => [%(schema:LymphaticVessel).freeze, %(schema:Vein).freeze],
6804
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze],
6711
6805
  type: "rdf:Property".freeze
6712
6806
  property :regionsAllowed,
6713
6807
  comment: %(The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in <a href='http://en.wikipedia.org/wiki/ISO_3166'>ISO 3166 format</a>.).freeze,
@@ -6719,12 +6813,12 @@ module RDF
6719
6813
  comment: %(Anatomical systems or structures that relate to the superficial anatomy.).freeze,
6720
6814
  label: "relatedAnatomy".freeze,
6721
6815
  "schema:domainIncludes" => %(schema:SuperficialAnatomy).freeze,
6722
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
6816
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze],
6723
6817
  type: "rdf:Property".freeze
6724
6818
  property :relatedCondition,
6725
6819
  comment: %(A medical condition associated with this anatomy.).freeze,
6726
6820
  label: "relatedCondition".freeze,
6727
- "schema:domainIncludes" => %(schema:AnatomicalStructure).freeze,
6821
+ "schema:domainIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze, %(schema:SuperficialAnatomy).freeze],
6728
6822
  "schema:rangeIncludes" => %(schema:MedicalCondition).freeze,
6729
6823
  type: "rdf:Property".freeze
6730
6824
  property :relatedDrug,
@@ -6748,7 +6842,7 @@ module RDF
6748
6842
  property :relatedTherapy,
6749
6843
  comment: %(A medical therapy related to this anatomy.).freeze,
6750
6844
  label: "relatedTherapy".freeze,
6751
- "schema:domainIncludes" => %(schema:AnatomicalStructure).freeze,
6845
+ "schema:domainIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:AnatomicalSystem).freeze, %(schema:SuperficialAnatomy).freeze],
6752
6846
  "schema:rangeIncludes" => %(schema:MedicalTherapy).freeze,
6753
6847
  type: "rdf:Property".freeze
6754
6848
  property :relatedTo,
@@ -6767,7 +6861,7 @@ module RDF
6767
6861
  comment: %(Description of what changed in this version.).freeze,
6768
6862
  label: "releaseNotes".freeze,
6769
6863
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
6770
- "schema:rangeIncludes" => %(schema:Text).freeze,
6864
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
6771
6865
  type: "rdf:Property".freeze
6772
6866
  property :relevantSpecialty,
6773
6867
  comment: %(If applicable, a medical specialty in which this entity is relevant.).freeze,
@@ -6786,12 +6880,14 @@ module RDF
6786
6880
  label: "replacee".freeze,
6787
6881
  "schema:domainIncludes" => %(schema:ReplaceAction).freeze,
6788
6882
  "schema:rangeIncludes" => %(schema:Thing).freeze,
6883
+ subPropertyOf: "schema:object".freeze,
6789
6884
  type: "rdf:Property".freeze
6790
6885
  property :replacer,
6791
6886
  comment: %(A sub property of object. The object that replaces.).freeze,
6792
6887
  label: "replacer".freeze,
6793
6888
  "schema:domainIncludes" => %(schema:ReplaceAction).freeze,
6794
6889
  "schema:rangeIncludes" => %(schema:Thing).freeze,
6890
+ subPropertyOf: "schema:object".freeze,
6795
6891
  type: "rdf:Property".freeze
6796
6892
  property :replyToUrl,
6797
6893
  comment: %(The URL at which a reply may be posted to the specified UserComment.).freeze,
@@ -6827,7 +6923,7 @@ module RDF
6827
6923
  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,
6828
6924
  label: "requirements".freeze,
6829
6925
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
6830
- "schema:rangeIncludes" => %(schema:Text).freeze,
6926
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
6831
6927
  type: "rdf:Property".freeze
6832
6928
  property :requiresSubscription,
6833
6929
  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,
@@ -6882,11 +6978,12 @@ module RDF
6882
6978
  label: "resultReview".freeze,
6883
6979
  "schema:domainIncludes" => %(schema:ReviewAction).freeze,
6884
6980
  "schema:rangeIncludes" => %(schema:Review).freeze,
6981
+ subPropertyOf: "schema:result".freeze,
6885
6982
  type: "rdf:Property".freeze
6886
6983
  property :review,
6887
6984
  comment: %(A review of the item.).freeze,
6888
6985
  label: "review".freeze,
6889
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
6986
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Offer).freeze, %(schema:Product).freeze],
6890
6987
  "schema:rangeIncludes" => %(schema:Review).freeze,
6891
6988
  type: "rdf:Property".freeze
6892
6989
  property :reviewBody,
@@ -6911,12 +7008,12 @@ module RDF
6911
7008
  comment: %(People or organizations that have reviewed the content on this web page for accuracy and/or completeness.).freeze,
6912
7009
  label: "reviewedBy".freeze,
6913
7010
  "schema:domainIncludes" => %(schema:WebPage).freeze,
6914
- "schema:rangeIncludes" => %(schema:Organization).freeze,
7011
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
6915
7012
  type: "rdf:Property".freeze
6916
7013
  property :reviews,
6917
7014
  comment: %(Review of the item \(legacy spelling; see singular form, review\).).freeze,
6918
7015
  label: "reviews".freeze,
6919
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
7016
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Organization).freeze, %(schema:Place).freeze, %(schema:Offer).freeze, %(schema:Product).freeze],
6920
7017
  "schema:rangeIncludes" => %(schema:Review).freeze,
6921
7018
  "schema:supercededBy" => %(schema:review).freeze,
6922
7019
  type: "rdf:Property".freeze
@@ -6977,31 +7074,31 @@ module RDF
6977
7074
  property :scheduledTime,
6978
7075
  comment: %(The time the object is scheduled to.).freeze,
6979
7076
  label: "scheduledTime".freeze,
6980
- "schema:domainIncludes" => %(schema:PlanAction).freeze,
7077
+ "schema:domainIncludes" => [%(schema:PlanAction).freeze, %(schema:ReserveAction).freeze],
6981
7078
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
6982
7079
  type: "rdf:Property".freeze
6983
7080
  property :screenshot,
6984
7081
  comment: %(A link to a screenshot image of the app.).freeze,
6985
7082
  label: "screenshot".freeze,
6986
7083
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
6987
- "schema:rangeIncludes" => %(schema:ImageObject).freeze,
7084
+ "schema:rangeIncludes" => [%(schema:ImageObject).freeze, %(schema:URL).freeze],
6988
7085
  type: "rdf:Property".freeze
6989
7086
  property :season,
6990
7087
  comment: %(A season in a tv/radio series.).freeze,
6991
7088
  label: "season".freeze,
6992
- "schema:domainIncludes" => %(schema:Series).freeze,
7089
+ "schema:domainIncludes" => [%(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioSeries).freeze],
6993
7090
  "schema:rangeIncludes" => %(schema:Season).freeze,
6994
7091
  type: "rdf:Property".freeze
6995
7092
  property :seasonNumber,
6996
7093
  comment: %(Position of the season within an ordered group of seasons.).freeze,
6997
7094
  label: "seasonNumber".freeze,
6998
- "schema:domainIncludes" => %(schema:Season).freeze,
7095
+ "schema:domainIncludes" => [%(schema:Season).freeze, %(schema:TVSeason).freeze],
6999
7096
  "schema:rangeIncludes" => %(schema:Integer).freeze,
7000
7097
  type: "rdf:Property".freeze
7001
7098
  property :seasons,
7002
7099
  comment: %(A season in a tv/radio series. \(legacy spelling; see singular form, season\)).freeze,
7003
7100
  label: "seasons".freeze,
7004
- "schema:domainIncludes" => %(schema:Series).freeze,
7101
+ "schema:domainIncludes" => [%(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioSeries).freeze],
7005
7102
  "schema:rangeIncludes" => %(schema:Season).freeze,
7006
7103
  "schema:supercededBy" => %(schema:season).freeze,
7007
7104
  type: "rdf:Property".freeze
@@ -7027,7 +7124,7 @@ module RDF
7027
7124
  comment: %(The type/class of the seat.).freeze,
7028
7125
  label: "seatingType".freeze,
7029
7126
  "schema:domainIncludes" => %(schema:Seat).freeze,
7030
- "schema:rangeIncludes" => %(schema:Text).freeze,
7127
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:QualitativeValue).freeze],
7031
7128
  type: "rdf:Property".freeze
7032
7129
  property :secondaryPrevention,
7033
7130
  comment: %(A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.).freeze,
@@ -7038,37 +7135,38 @@ module RDF
7038
7135
  property :seeks,
7039
7136
  comment: %(A pointer to products or services sought by the organization or person \(demand\).).freeze,
7040
7137
  label: "seeks".freeze,
7041
- "schema:domainIncludes" => %(schema:Organization).freeze,
7138
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
7042
7139
  "schema:rangeIncludes" => %(schema:Demand).freeze,
7043
7140
  type: "rdf:Property".freeze
7044
7141
  property :seller,
7045
7142
  comment: %(The organization or person making the offer.).freeze,
7046
7143
  label: "seller".freeze,
7047
- "schema:domainIncludes" => %(schema:Offer).freeze,
7048
- "schema:rangeIncludes" => %(schema:Organization).freeze,
7144
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
7145
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
7049
7146
  type: "rdf:Property".freeze
7050
7147
  property :sender,
7051
7148
  comment: %(A sub property of participant. The participant who is at the sending end of the action.).freeze,
7052
7149
  label: "sender".freeze,
7053
7150
  "schema:domainIncludes" => %(schema:ReceiveAction).freeze,
7054
- "schema:rangeIncludes" => %(schema:Audience).freeze,
7151
+ "schema:rangeIncludes" => [%(schema:Audience).freeze, %(schema:Organization).freeze, %(schema:Person).freeze],
7152
+ subPropertyOf: "schema:participant".freeze,
7055
7153
  type: "rdf:Property".freeze
7056
7154
  property :sensoryUnit,
7057
7155
  comment: %(The neurological pathway extension that inputs and sends information to the brain or spinal cord.).freeze,
7058
7156
  label: "sensoryUnit".freeze,
7059
7157
  "schema:domainIncludes" => %(schema:Nerve).freeze,
7060
- "schema:rangeIncludes" => %(schema:AnatomicalStructure).freeze,
7158
+ "schema:rangeIncludes" => [%(schema:AnatomicalStructure).freeze, %(schema:SuperficialAnatomy).freeze],
7061
7159
  type: "rdf:Property".freeze
7062
7160
  property :serialNumber,
7063
7161
  comment: %(The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.).freeze,
7064
7162
  label: "serialNumber".freeze,
7065
- "schema:domainIncludes" => %(schema:Offer).freeze,
7163
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze, %(schema:IndividualProduct).freeze],
7066
7164
  "schema:rangeIncludes" => %(schema:Text).freeze,
7067
7165
  type: "rdf:Property".freeze
7068
7166
  property :seriousAdverseOutcome,
7069
7167
  comment: %(A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.).freeze,
7070
7168
  label: "seriousAdverseOutcome".freeze,
7071
- "schema:domainIncludes" => %(schema:MedicalTherapy).freeze,
7169
+ "schema:domainIncludes" => [%(schema:MedicalTherapy).freeze, %(schema:MedicalDevice).freeze],
7072
7170
  "schema:rangeIncludes" => %(schema:MedicalEntity).freeze,
7073
7171
  type: "rdf:Property".freeze
7074
7172
  property :servesCuisine,
@@ -7190,7 +7288,7 @@ module RDF
7190
7288
  property :sku,
7191
7289
  comment: %(The Stock Keeping Unit \(SKU\), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.).freeze,
7192
7290
  label: "sku".freeze,
7193
- "schema:domainIncludes" => %(schema:Offer).freeze,
7291
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Product).freeze, %(schema:Demand).freeze],
7194
7292
  "schema:rangeIncludes" => %(schema:Text).freeze,
7195
7293
  type: "rdf:Property".freeze
7196
7294
  property :sodiumContent,
@@ -7252,18 +7350,21 @@ module RDF
7252
7350
  label: "sportsActivityLocation".freeze,
7253
7351
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
7254
7352
  "schema:rangeIncludes" => %(schema:SportsActivityLocation).freeze,
7353
+ subPropertyOf: "schema:location".freeze,
7255
7354
  type: "rdf:Property".freeze
7256
7355
  property :sportsEvent,
7257
7356
  comment: %(A sub property of location. The sports event where this action occurred.).freeze,
7258
7357
  label: "sportsEvent".freeze,
7259
7358
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
7260
7359
  "schema:rangeIncludes" => %(schema:SportsEvent).freeze,
7360
+ subPropertyOf: "schema:location".freeze,
7261
7361
  type: "rdf:Property".freeze
7262
7362
  property :sportsTeam,
7263
7363
  comment: %(A sub property of participant. The sports team that participated on this action.).freeze,
7264
7364
  label: "sportsTeam".freeze,
7265
7365
  "schema:domainIncludes" => %(schema:ExerciseAction).freeze,
7266
7366
  "schema:rangeIncludes" => %(schema:SportsTeam).freeze,
7367
+ subPropertyOf: "schema:participant".freeze,
7267
7368
  type: "rdf:Property".freeze
7268
7369
  property :spouse,
7269
7370
  comment: %(The person's spouse.).freeze,
@@ -7284,15 +7385,18 @@ module RDF
7284
7385
  "schema:rangeIncludes" => %(schema:Number).freeze,
7285
7386
  type: "rdf:Property".freeze
7286
7387
  property :startDate,
7287
- comment: %(The start date and time of the event or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
7388
+ comment: %(The start date and time of the event, role or item \(in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>\).).freeze,
7288
7389
  label: "startDate".freeze,
7289
- "schema:domainIncludes" => %(schema:Event).freeze,
7390
+ "schema:domainIncludes" => [%(schema:Role).freeze, %(schema:Event).freeze, %(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze],
7290
7391
  "schema:rangeIncludes" => %(schema:Date).freeze,
7291
7392
  type: "rdf:Property".freeze
7292
7393
  property :startTime,
7293
- comment: %(When the Action was performed: start time. This is for actions that span a period of time. e.g. John wrote a book from *January* to December.).freeze,
7394
+ comment: %(The startTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December.
7395
+
7396
+ Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
7397
+ ).freeze,
7294
7398
  label: "startTime".freeze,
7295
- "schema:domainIncludes" => %(schema:Action).freeze,
7399
+ "schema:domainIncludes" => [%(schema:Action).freeze, %(schema:FoodEstablishmentReservation).freeze],
7296
7400
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
7297
7401
  type: "rdf:Property".freeze
7298
7402
  property :status,
@@ -7302,7 +7406,7 @@ module RDF
7302
7406
  "schema:rangeIncludes" => %(schema:MedicalStudyStatus).freeze,
7303
7407
  type: "rdf:Property".freeze
7304
7408
  property :stepValue,
7305
- comment: %(Specifies a regular expression for testing literal values according to the HTML spec.).freeze,
7409
+ comment: %(The stepValue attribute indicates the granularity that is expected \(and required\) of the value in a PropertyValueSpecification.).freeze,
7306
7410
  label: "stepValue".freeze,
7307
7411
  "schema:domainIncludes" => %(schema:PropertyValueSpecification).freeze,
7308
7412
  "schema:rangeIncludes" => %(schema:Number).freeze,
@@ -7311,7 +7415,7 @@ module RDF
7311
7415
  comment: %(Storage requirements \(free space required\).).freeze,
7312
7416
  label: "storageRequirements".freeze,
7313
7417
  "schema:domainIncludes" => %(schema:SoftwareApplication).freeze,
7314
- "schema:rangeIncludes" => %(schema:Text).freeze,
7418
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
7315
7419
  type: "rdf:Property".freeze
7316
7420
  property :streetAddress,
7317
7421
  comment: %(The street address. For example, 1600 Amphitheatre Pkwy.).freeze,
@@ -7423,11 +7527,10 @@ module RDF
7423
7527
  "schema:rangeIncludes" => %(schema:Mass).freeze,
7424
7528
  type: "rdf:Property".freeze
7425
7529
  property :suggestedAnswer,
7426
- comment: %(An answer \(possibly one of several, possibly incorrect\) to a Question, e.g. on a Question/Answer site, often collected in a QAPage.).freeze,
7530
+ comment: %(An answer \(possibly one of several, possibly incorrect\) to a Question, e.g. on a Question/Answer site.).freeze,
7427
7531
  label: "suggestedAnswer".freeze,
7428
7532
  "schema:domainIncludes" => %(schema:Question).freeze,
7429
7533
  "schema:rangeIncludes" => %(schema:Answer).freeze,
7430
- subPropertyOf: "schema:answer".freeze,
7431
7534
  type: "rdf:Property".freeze
7432
7535
  property :suggestedGender,
7433
7536
  comment: %(The gender of the person or audience.).freeze,
@@ -7453,6 +7556,12 @@ module RDF
7453
7556
  "schema:domainIncludes" => %(schema:Event).freeze,
7454
7557
  "schema:rangeIncludes" => %(schema:Event).freeze,
7455
7558
  type: "rdf:Property".freeze
7559
+ property :supercededBy,
7560
+ comment: %(Relates a property to one that supercedes it.).freeze,
7561
+ label: "supercededBy".freeze,
7562
+ "schema:domainIncludes" => %(schema:Property).freeze,
7563
+ "schema:rangeIncludes" => %(schema:Property).freeze,
7564
+ type: "rdf:Property".freeze
7456
7565
  property :supplyTo,
7457
7566
  comment: %(The area to which the artery supplies blood.).freeze,
7458
7567
  label: "supplyTo".freeze,
@@ -7486,7 +7595,7 @@ module RDF
7486
7595
  property :targetPopulation,
7487
7596
  comment: %(Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.).freeze,
7488
7597
  label: "targetPopulation".freeze,
7489
- "schema:domainIncludes" => %(schema:DietarySupplement).freeze,
7598
+ "schema:domainIncludes" => [%(schema:DietarySupplement).freeze, %(schema:DoseSchedule).freeze],
7490
7599
  "schema:rangeIncludes" => %(schema:Text).freeze,
7491
7600
  type: "rdf:Property".freeze
7492
7601
  property :targetProduct,
@@ -7504,13 +7613,13 @@ module RDF
7504
7613
  property :taxID,
7505
7614
  comment: %(The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.).freeze,
7506
7615
  label: "taxID".freeze,
7507
- "schema:domainIncludes" => %(schema:Organization).freeze,
7616
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
7508
7617
  "schema:rangeIncludes" => %(schema:Text).freeze,
7509
7618
  type: "rdf:Property".freeze
7510
7619
  property :telephone,
7511
7620
  comment: %(The telephone number.).freeze,
7512
7621
  label: "telephone".freeze,
7513
- "schema:domainIncludes" => %(schema:Organization).freeze,
7622
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Place).freeze, %(schema:ContactPoint).freeze, %(schema:Person).freeze],
7514
7623
  "schema:rangeIncludes" => %(schema:Text).freeze,
7515
7624
  type: "rdf:Property".freeze
7516
7625
  property :temporal,
@@ -7528,7 +7637,7 @@ module RDF
7528
7637
  property :thumbnail,
7529
7638
  comment: %(Thumbnail image for an image or video.).freeze,
7530
7639
  label: "thumbnail".freeze,
7531
- "schema:domainIncludes" => %(schema:ImageObject).freeze,
7640
+ "schema:domainIncludes" => [%(schema:ImageObject).freeze, %(schema:VideoObject).freeze],
7532
7641
  "schema:rangeIncludes" => %(schema:ImageObject).freeze,
7533
7642
  type: "rdf:Property".freeze
7534
7643
  property :thumbnailUrl,
@@ -7553,7 +7662,7 @@ module RDF
7553
7662
  comment: %(Reference to an asset \(e.g., Barcode, QR code image or PDF\) usable for entrance.).freeze,
7554
7663
  label: "ticketToken".freeze,
7555
7664
  "schema:domainIncludes" => %(schema:Ticket).freeze,
7556
- "schema:rangeIncludes" => %(schema:Text).freeze,
7665
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
7557
7666
  type: "rdf:Property".freeze
7558
7667
  property :ticketedSeat,
7559
7668
  comment: %(The seat associated with the ticket.).freeze,
@@ -7582,14 +7691,15 @@ module RDF
7582
7691
  property :toLocation,
7583
7692
  comment: %(A sub property of location. The final location of the object or the agent after the action.).freeze,
7584
7693
  label: "toLocation".freeze,
7585
- "schema:domainIncludes" => %(schema:InsertAction).freeze,
7586
- "schema:rangeIncludes" => %(schema:Number).freeze,
7694
+ "schema:domainIncludes" => [%(schema:InsertAction).freeze, %(schema:MoveAction).freeze, %(schema:TransferAction).freeze, %(schema:ExerciseAction).freeze],
7695
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Place).freeze],
7696
+ subPropertyOf: "schema:location".freeze,
7587
7697
  type: "rdf:Property".freeze
7588
7698
  property :totalPrice,
7589
7699
  comment: %(The total price for the reservation or ticket, including applicable taxes, shipping, etc.).freeze,
7590
7700
  label: "totalPrice".freeze,
7591
- "schema:domainIncludes" => %(schema:Reservation).freeze,
7592
- "schema:rangeIncludes" => %(schema:Number).freeze,
7701
+ "schema:domainIncludes" => [%(schema:Reservation).freeze, %(schema:Ticket).freeze],
7702
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze, %(schema:PriceSpecification).freeze],
7593
7703
  type: "rdf:Property".freeze
7594
7704
  property :totalTime,
7595
7705
  comment: %(The total time it takes to prepare and cook the recipe, in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>.).freeze,
@@ -7600,7 +7710,7 @@ module RDF
7600
7710
  property :track,
7601
7711
  comment: %(A music recording \(track\)&#x2014;usually a single song.).freeze,
7602
7712
  label: "track".freeze,
7603
- "schema:domainIncludes" => %(schema:MusicPlaylist).freeze,
7713
+ "schema:domainIncludes" => [%(schema:MusicPlaylist).freeze, %(schema:MusicGroup).freeze],
7604
7714
  "schema:rangeIncludes" => %(schema:MusicRecording).freeze,
7605
7715
  type: "rdf:Property".freeze
7606
7716
  property :trackingNumber,
@@ -7618,14 +7728,14 @@ module RDF
7618
7728
  property :tracks,
7619
7729
  comment: %(A music recording \(track\)&#x2014;usually a single song \(legacy spelling; see singular form, track\).).freeze,
7620
7730
  label: "tracks".freeze,
7621
- "schema:domainIncludes" => %(schema:MusicPlaylist).freeze,
7731
+ "schema:domainIncludes" => [%(schema:MusicPlaylist).freeze, %(schema:MusicGroup).freeze],
7622
7732
  "schema:rangeIncludes" => %(schema:MusicRecording).freeze,
7623
7733
  "schema:supercededBy" => %(schema:track).freeze,
7624
7734
  type: "rdf:Property".freeze
7625
7735
  property :trailer,
7626
7736
  comment: %(The trailer of a movie or tv/radio series, season, or episode.).freeze,
7627
7737
  label: "trailer".freeze,
7628
- "schema:domainIncludes" => %(schema:Movie).freeze,
7738
+ "schema:domainIncludes" => [%(schema:Movie).freeze, %(schema:Episode).freeze, %(schema:TVEpisode).freeze, %(schema:Season).freeze, %(schema:TVSeason).freeze, %(schema:Series).freeze, %(schema:TVSeries).freeze, %(schema:RadioEpisode).freeze, %(schema:RadioSeason).freeze, %(schema:RadioSeries).freeze],
7629
7739
  "schema:rangeIncludes" => %(schema:VideoObject).freeze,
7630
7740
  type: "rdf:Property".freeze
7631
7741
  property :trainName,
@@ -7649,7 +7759,7 @@ module RDF
7649
7759
  property :transcript,
7650
7760
  comment: %(If this MediaObject is an AudioObject or VideoObject, the transcript of that object.).freeze,
7651
7761
  label: "transcript".freeze,
7652
- "schema:domainIncludes" => %(schema:AudioObject).freeze,
7762
+ "schema:domainIncludes" => [%(schema:AudioObject).freeze, %(schema:VideoObject).freeze],
7653
7763
  "schema:rangeIncludes" => %(schema:Text).freeze,
7654
7764
  type: "rdf:Property".freeze
7655
7765
  property :transmissionMethod,
@@ -7673,13 +7783,13 @@ module RDF
7673
7783
  property :typeOfGood,
7674
7784
  comment: %(The product that this structured value is referring to.).freeze,
7675
7785
  label: "typeOfGood".freeze,
7676
- "schema:domainIncludes" => %(schema:OwnershipInfo).freeze,
7786
+ "schema:domainIncludes" => [%(schema:OwnershipInfo).freeze, %(schema:TypeAndQuantityNode).freeze],
7677
7787
  "schema:rangeIncludes" => %(schema:Product).freeze,
7678
7788
  type: "rdf:Property".freeze
7679
7789
  property :typicalAgeRange,
7680
7790
  comment: %(The typical expected age range, e.g. '7-9', '11-'.).freeze,
7681
7791
  label: "typicalAgeRange".freeze,
7682
- "schema:domainIncludes" => %(schema:CreativeWork).freeze,
7792
+ "schema:domainIncludes" => [%(schema:CreativeWork).freeze, %(schema:Event).freeze],
7683
7793
  "schema:rangeIncludes" => %(schema:Text).freeze,
7684
7794
  type: "rdf:Property".freeze
7685
7795
  property :typicalTest,
@@ -7691,13 +7801,13 @@ module RDF
7691
7801
  property :underName,
7692
7802
  comment: %(The person or organization the reservation or ticket is for.).freeze,
7693
7803
  label: "underName".freeze,
7694
- "schema:domainIncludes" => %(schema:Reservation).freeze,
7695
- "schema:rangeIncludes" => %(schema:Person).freeze,
7804
+ "schema:domainIncludes" => [%(schema:Reservation).freeze, %(schema:Ticket).freeze],
7805
+ "schema:rangeIncludes" => [%(schema:Person).freeze, %(schema:Organization).freeze],
7696
7806
  type: "rdf:Property".freeze
7697
7807
  property :unitCode,
7698
7808
  comment: %(The unit of measurement given using the UN/CEFACT Common Code \(3 characters\).).freeze,
7699
7809
  label: "unitCode".freeze,
7700
- "schema:domainIncludes" => %(schema:QuantitativeValue).freeze,
7810
+ "schema:domainIncludes" => [%(schema:QuantitativeValue).freeze, %(schema:TypeAndQuantityNode).freeze, %(schema:UnitPriceSpecification).freeze],
7701
7811
  "schema:rangeIncludes" => %(schema:Text).freeze,
7702
7812
  type: "rdf:Property".freeze
7703
7813
  property :unsaturatedFatContent,
@@ -7715,7 +7825,7 @@ module RDF
7715
7825
  property :upvoteCount,
7716
7826
  comment: %(The number of upvotes this question has received from the community.).freeze,
7717
7827
  label: "upvoteCount".freeze,
7718
- "schema:domainIncludes" => %(schema:Question).freeze,
7828
+ "schema:domainIncludes" => [%(schema:Question).freeze, %(schema:Answer).freeze, %(schema:Comment).freeze],
7719
7829
  "schema:rangeIncludes" => %(schema:Integer).freeze,
7720
7830
  type: "rdf:Property".freeze
7721
7831
  property :url,
@@ -7724,6 +7834,12 @@ module RDF
7724
7834
  "schema:domainIncludes" => %(schema:Thing).freeze,
7725
7835
  "schema:rangeIncludes" => %(schema:URL).freeze,
7726
7836
  type: "rdf:Property".freeze
7837
+ property :urlTemplate,
7838
+ comment: %(An url template \(RFC6570\) that will be used to construct the target of the execution of the action.).freeze,
7839
+ label: "urlTemplate".freeze,
7840
+ "schema:domainIncludes" => %(schema:EntryPoint).freeze,
7841
+ "schema:rangeIncludes" => %(schema:Text).freeze,
7842
+ type: "rdf:Property".freeze
7727
7843
  property :usedToDiagnose,
7728
7844
  comment: %(A condition the test is used to diagnose.).freeze,
7729
7845
  label: "usedToDiagnose".freeze,
@@ -7745,7 +7861,7 @@ module RDF
7745
7861
  property :validFrom,
7746
7862
  comment: %(The date when the item becomes valid.).freeze,
7747
7863
  label: "validFrom".freeze,
7748
- "schema:domainIncludes" => %(schema:Offer).freeze,
7864
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PriceSpecification).freeze, %(schema:Demand).freeze, %(schema:OpeningHoursSpecification).freeze, %(schema:Permit).freeze],
7749
7865
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
7750
7866
  type: "rdf:Property".freeze
7751
7867
  property :validIn,
@@ -7757,7 +7873,7 @@ module RDF
7757
7873
  property :validThrough,
7758
7874
  comment: %(The end of the validity of offer, price specification, or opening hours data.).freeze,
7759
7875
  label: "validThrough".freeze,
7760
- "schema:domainIncludes" => %(schema:Offer).freeze,
7876
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:PriceSpecification).freeze, %(schema:Demand).freeze, %(schema:OpeningHoursSpecification).freeze],
7761
7877
  "schema:rangeIncludes" => %(schema:DateTime).freeze,
7762
7878
  type: "rdf:Property".freeze
7763
7879
  property :validUntil,
@@ -7790,6 +7906,12 @@ module RDF
7790
7906
  "schema:domainIncludes" => %(schema:PropertyValueSpecification).freeze,
7791
7907
  "schema:rangeIncludes" => %(schema:Number).freeze,
7792
7908
  type: "rdf:Property".freeze
7909
+ property :valueName,
7910
+ comment: %(Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.).freeze,
7911
+ label: "valueName".freeze,
7912
+ "schema:domainIncludes" => %(schema:PropertyValueSpecification).freeze,
7913
+ "schema:rangeIncludes" => %(schema:Text).freeze,
7914
+ type: "rdf:Property".freeze
7793
7915
  property :valuePattern,
7794
7916
  comment: %(Specifies a regular expression for testing literal values according to the HTML spec.).freeze,
7795
7917
  label: "valuePattern".freeze,
@@ -7799,8 +7921,8 @@ module RDF
7799
7921
  property :valueReference,
7800
7922
  comment: %(A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.).freeze,
7801
7923
  label: "valueReference".freeze,
7802
- "schema:domainIncludes" => %(schema:QualitativeValue).freeze,
7803
- "schema:rangeIncludes" => %(schema:Enumeration).freeze,
7924
+ "schema:domainIncludes" => [%(schema:QualitativeValue).freeze, %(schema:QuantitativeValue).freeze],
7925
+ "schema:rangeIncludes" => [%(schema:Enumeration).freeze, %(schema:StructuredValue).freeze],
7804
7926
  type: "rdf:Property".freeze
7805
7927
  property :valueRequired,
7806
7928
  comment: %(Whether the property must be filled in to complete the action. Default is false.).freeze,
@@ -7809,16 +7931,17 @@ module RDF
7809
7931
  "schema:rangeIncludes" => %(schema:Boolean).freeze,
7810
7932
  type: "rdf:Property".freeze
7811
7933
  property :vatID,
7812
- comment: %(The Value-added Tax ID of the organisation or person.).freeze,
7934
+ comment: %(The Value-added Tax ID of the organization or person.).freeze,
7813
7935
  label: "vatID".freeze,
7814
- "schema:domainIncludes" => %(schema:Organization).freeze,
7936
+ "schema:domainIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
7815
7937
  "schema:rangeIncludes" => %(schema:Text).freeze,
7816
7938
  type: "rdf:Property".freeze
7817
7939
  property :vendor,
7818
7940
  comment: %(A sub property of participant. The seller. The participant/person/organization that sold the object.).freeze,
7819
7941
  label: "vendor".freeze,
7820
7942
  "schema:domainIncludes" => %(schema:BuyAction).freeze,
7821
- "schema:rangeIncludes" => %(schema:Organization).freeze,
7943
+ "schema:rangeIncludes" => [%(schema:Organization).freeze, %(schema:Person).freeze],
7944
+ subPropertyOf: "schema:participant".freeze,
7822
7945
  type: "rdf:Property".freeze
7823
7946
  property :version,
7824
7947
  comment: %(The version of the CreativeWork embodied by a specified resource.).freeze,
@@ -7848,18 +7971,18 @@ module RDF
7848
7971
  comment: %(Any FDA or other warnings about the drug \(text or URL\).).freeze,
7849
7972
  label: "warning".freeze,
7850
7973
  "schema:domainIncludes" => %(schema:Drug).freeze,
7851
- "schema:rangeIncludes" => %(schema:Text).freeze,
7974
+ "schema:rangeIncludes" => [%(schema:Text).freeze, %(schema:URL).freeze],
7852
7975
  type: "rdf:Property".freeze
7853
7976
  property :warranty,
7854
7977
  comment: %(The warranty promise\(s\) included in the offer.).freeze,
7855
7978
  label: "warranty".freeze,
7856
- "schema:domainIncludes" => %(schema:Offer).freeze,
7979
+ "schema:domainIncludes" => [%(schema:Offer).freeze, %(schema:Demand).freeze],
7857
7980
  "schema:rangeIncludes" => %(schema:WarrantyPromise).freeze,
7858
7981
  type: "rdf:Property".freeze
7859
7982
  property :warrantyPromise,
7860
7983
  comment: %(The warranty promise\(s\) included in the offer.).freeze,
7861
7984
  label: "warrantyPromise".freeze,
7862
- "schema:domainIncludes" => %(schema:BuyAction).freeze,
7985
+ "schema:domainIncludes" => [%(schema:BuyAction).freeze, %(schema:SellAction).freeze],
7863
7986
  "schema:rangeIncludes" => %(schema:WarrantyPromise).freeze,
7864
7987
  type: "rdf:Property".freeze
7865
7988
  property :warrantyScope,
@@ -7883,14 +8006,15 @@ module RDF
7883
8006
  property :width,
7884
8007
  comment: %(The width of the item.).freeze,
7885
8008
  label: "width".freeze,
7886
- "schema:domainIncludes" => %(schema:MediaObject).freeze,
7887
- "schema:rangeIncludes" => %(schema:Distance).freeze,
8009
+ "schema:domainIncludes" => [%(schema:MediaObject).freeze, %(schema:Product).freeze],
8010
+ "schema:rangeIncludes" => [%(schema:Distance).freeze, %(schema:QuantitativeValue).freeze],
7888
8011
  type: "rdf:Property".freeze
7889
8012
  property :winner,
7890
8013
  comment: %(A sub property of participant. The winner of the action.).freeze,
7891
8014
  label: "winner".freeze,
7892
8015
  "schema:domainIncludes" => %(schema:LoseAction).freeze,
7893
8016
  "schema:rangeIncludes" => %(schema:Person).freeze,
8017
+ subPropertyOf: "schema:participant".freeze,
7894
8018
  type: "rdf:Property".freeze
7895
8019
  property :wordCount,
7896
8020
  comment: %(The number of words in the text of the Article.).freeze,
@@ -7908,7 +8032,7 @@ module RDF
7908
8032
  comment: %(A contact location for a person's place of work.).freeze,
7909
8033
  label: "workLocation".freeze,
7910
8034
  "schema:domainIncludes" => %(schema:Person).freeze,
7911
- "schema:rangeIncludes" => %(schema:ContactPoint).freeze,
8035
+ "schema:rangeIncludes" => [%(schema:ContactPoint).freeze, %(schema:Place).freeze],
7912
8036
  type: "rdf:Property".freeze
7913
8037
  property :workPerformed,
7914
8038
  comment: %(A work performed in some event, for example a play performed in a TheaterEvent.).freeze,
@@ -7932,7 +8056,7 @@ module RDF
7932
8056
  comment: %(The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.).freeze,
7933
8057
  label: "worstRating".freeze,
7934
8058
  "schema:domainIncludes" => %(schema:Rating).freeze,
7935
- "schema:rangeIncludes" => %(schema:Number).freeze,
8059
+ "schema:rangeIncludes" => [%(schema:Number).freeze, %(schema:Text).freeze],
7936
8060
  type: "rdf:Property".freeze
7937
8061
  property :yearlyRevenue,
7938
8062
  comment: %(The size of the business in annual revenue.).freeze,
@@ -8135,6 +8259,7 @@ module RDF
8135
8259
  term :False,
8136
8260
  comment: %(The boolean value false).freeze,
8137
8261
  label: "False".freeze,
8262
+ subClassOf: "schema:Boolean".freeze,
8138
8263
  type: "schema:Boolean".freeze
8139
8264
  term :Flexibility,
8140
8265
  comment: %(Physical activity that is engaged in to improve joint and muscle flexibility.).freeze,
@@ -8493,7 +8618,7 @@ module RDF
8493
8618
  label: "Retail".freeze,
8494
8619
  type: "schema:DrugCostCategory".freeze
8495
8620
  term :Rheumatologic,
8496
- comment: %(A specific branch of medical science that deals with the study and treatment of rheumatic, automimmune or joint diseases.).freeze,
8621
+ comment: %(A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.).freeze,
8497
8622
  label: "Rheumatologic".freeze,
8498
8623
  type: "schema:MedicalSpecialty".freeze
8499
8624
  term :SingleBlindedTrial,
@@ -8563,6 +8688,7 @@ module RDF
8563
8688
  term :True,
8564
8689
  comment: %(The boolean value true).freeze,
8565
8690
  label: "True".freeze,
8691
+ subClassOf: "schema:Boolean".freeze,
8566
8692
  type: "schema:Boolean".freeze
8567
8693
  term :Ultrasound,
8568
8694
  comment: %(Ultrasound imaging.).freeze,