rdf-vocab 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +61 -3
- data/VERSION +1 -1
- data/lib/rdf/vocab/dbo.rb +440 -70
- data/lib/rdf/vocab/identifiers.rb +337 -65
- data/lib/rdf/vocab/marcrelators.rb +28 -8
- data/lib/rdf/vocab/rdau.rb +478 -461
- data/lib/rdf/vocab/rightsstatements.rb +12 -12
- data/lib/rdf/vocab/schema.rb +217 -17
- data/lib/rdf/vocab/schemas.rb +217 -17
- data/lib/rdf/vocab/wot.rb +50 -131
- data/lib/rdf/vocab/xkos.rb +2 -2
- metadata +11 -5
data/lib/rdf/vocab/schema.rb
CHANGED
@@ -89,6 +89,13 @@ module RDF::Vocab
|
|
89
89
|
label: "AdultEntertainment",
|
90
90
|
subClassOf: "http://schema.org/EntertainmentBusiness",
|
91
91
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
92
|
+
term :AdultOrientedEnumeration,
|
93
|
+
comment: "Enumeration of considerations that make a product relevant or potentially restricted for adults only.",
|
94
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
95
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
96
|
+
label: "AdultOrientedEnumeration",
|
97
|
+
subClassOf: "http://schema.org/Enumeration",
|
98
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
92
99
|
term :AdvertiserContentArticle,
|
93
100
|
comment: "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.",
|
94
101
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
@@ -137,7 +144,7 @@ module RDF::Vocab
|
|
137
144
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
138
145
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2646",
|
139
146
|
label: "AmpStory",
|
140
|
-
subClassOf: "http://schema.org/CreativeWork",
|
147
|
+
subClassOf: ["http://schema.org/CreativeWork", "http://schema.org/MediaObject"],
|
141
148
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
142
149
|
term :AmusementPark,
|
143
150
|
comment: "An amusement park.",
|
@@ -1272,6 +1279,13 @@ module RDF::Vocab
|
|
1272
1279
|
label: "DigitalDocumentPermissionType",
|
1273
1280
|
subClassOf: "http://schema.org/Enumeration",
|
1274
1281
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
1282
|
+
term :DigitalPlatformEnumeration,
|
1283
|
+
comment: "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). ",
|
1284
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
1285
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
1286
|
+
label: "DigitalPlatformEnumeration",
|
1287
|
+
subClassOf: "http://schema.org/Enumeration",
|
1288
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
1275
1289
|
term :DisagreeAction,
|
1276
1290
|
comment: "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
|
1277
1291
|
label: "DisagreeAction",
|
@@ -1753,6 +1767,13 @@ module RDF::Vocab
|
|
1753
1767
|
label: "Game",
|
1754
1768
|
subClassOf: "http://schema.org/CreativeWork",
|
1755
1769
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
1770
|
+
term :GameAvailabilityEnumeration,
|
1771
|
+
comment: "For a [[VideoGame]], such as used with a [[PlayGameAction]], an enumeration of the kind of game availability offered. ",
|
1772
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
1773
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3058",
|
1774
|
+
label: "GameAvailabilityEnumeration",
|
1775
|
+
subClassOf: "http://schema.org/Enumeration",
|
1776
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
1756
1777
|
term :GamePlayMode,
|
1757
1778
|
comment: "Indicates whether this game is multi-player, co-op or single-player.",
|
1758
1779
|
label: "GamePlayMode",
|
@@ -3178,6 +3199,20 @@ module RDF::Vocab
|
|
3178
3199
|
label: "OnDemandEvent",
|
3179
3200
|
subClassOf: "http://schema.org/PublicationEvent",
|
3180
3201
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
3202
|
+
term :OnlineBusiness,
|
3203
|
+
comment: "A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.",
|
3204
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
3205
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3028",
|
3206
|
+
label: "OnlineBusiness",
|
3207
|
+
subClassOf: "http://schema.org/Organization",
|
3208
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
3209
|
+
term :OnlineStore,
|
3210
|
+
comment: "An eCommerce site.",
|
3211
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
3212
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3028",
|
3213
|
+
label: "OnlineStore",
|
3214
|
+
subClassOf: "http://schema.org/OnlineBusiness",
|
3215
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
3181
3216
|
term :OpeningHoursSpecification,
|
3182
3217
|
comment: "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ",
|
3183
3218
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass",
|
@@ -3451,6 +3486,13 @@ module RDF::Vocab
|
|
3451
3486
|
label: "PlayAction",
|
3452
3487
|
subClassOf: "http://schema.org/Action",
|
3453
3488
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
3489
|
+
term :PlayGameAction,
|
3490
|
+
comment: "The act of playing a video game.",
|
3491
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
3492
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3058",
|
3493
|
+
label: "PlayGameAction",
|
3494
|
+
subClassOf: "http://schema.org/ConsumeAction",
|
3495
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
3454
3496
|
term :Playground,
|
3455
3497
|
comment: "A playground.",
|
3456
3498
|
label: "Playground",
|
@@ -4129,6 +4171,13 @@ module RDF::Vocab
|
|
4129
4171
|
label: "SearchAction",
|
4130
4172
|
subClassOf: "http://schema.org/Action",
|
4131
4173
|
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
4174
|
+
term :SearchRescueOrganization,
|
4175
|
+
comment: "A Search and Rescue organization of some kind.",
|
4176
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
4177
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3052",
|
4178
|
+
label: "SearchRescueOrganization",
|
4179
|
+
subClassOf: "http://schema.org/Organization",
|
4180
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
4132
4181
|
term :SearchResultsPage,
|
4133
4182
|
comment: "Web page type: Search results page.",
|
4134
4183
|
label: "SearchResultsPage",
|
@@ -5103,39 +5152,39 @@ module RDF::Vocab
|
|
5103
5152
|
rangeIncludes: "http://schema.org/Text",
|
5104
5153
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5105
5154
|
property :accessMode,
|
5106
|
-
comment: "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information.
|
5155
|
+
comment: "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).",
|
5107
5156
|
domainIncludes: "http://schema.org/CreativeWork",
|
5108
5157
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100",
|
5109
5158
|
label: "accessMode",
|
5110
5159
|
rangeIncludes: "http://schema.org/Text",
|
5111
5160
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5112
5161
|
property :accessModeSufficient,
|
5113
|
-
comment: "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource.
|
5162
|
+
comment: "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).",
|
5114
5163
|
domainIncludes: "http://schema.org/CreativeWork",
|
5115
5164
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100",
|
5116
5165
|
label: "accessModeSufficient",
|
5117
5166
|
rangeIncludes: "http://schema.org/ItemList",
|
5118
5167
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5119
5168
|
property :accessibilityAPI,
|
5120
|
-
comment: "Indicates that the resource is compatible with the referenced accessibility API
|
5169
|
+
comment: "Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).",
|
5121
5170
|
domainIncludes: "http://schema.org/CreativeWork",
|
5122
5171
|
label: "accessibilityAPI",
|
5123
5172
|
rangeIncludes: "http://schema.org/Text",
|
5124
5173
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5125
5174
|
property :accessibilityControl,
|
5126
|
-
comment: "Identifies input methods that are sufficient to fully control the described resource
|
5175
|
+
comment: "Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).",
|
5127
5176
|
domainIncludes: "http://schema.org/CreativeWork",
|
5128
5177
|
label: "accessibilityControl",
|
5129
5178
|
rangeIncludes: "http://schema.org/Text",
|
5130
5179
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5131
5180
|
property :accessibilityFeature,
|
5132
|
-
comment: "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility
|
5181
|
+
comment: "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).",
|
5133
5182
|
domainIncludes: "http://schema.org/CreativeWork",
|
5134
5183
|
label: "accessibilityFeature",
|
5135
5184
|
rangeIncludes: "http://schema.org/Text",
|
5136
5185
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5137
5186
|
property :accessibilityHazard,
|
5138
|
-
comment: "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3
|
5187
|
+
comment: "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).",
|
5139
5188
|
domainIncludes: "http://schema.org/CreativeWork",
|
5140
5189
|
label: "accessibilityHazard",
|
5141
5190
|
rangeIncludes: "http://schema.org/Text",
|
@@ -5241,7 +5290,7 @@ module RDF::Vocab
|
|
5241
5290
|
comment: "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.",
|
5242
5291
|
domainIncludes: "http://schema.org/EntryPoint",
|
5243
5292
|
label: "actionPlatform",
|
5244
|
-
rangeIncludes: ["http://schema.org/Text", "http://schema.org/URL"],
|
5293
|
+
rangeIncludes: ["http://schema.org/DigitalPlatformEnumeration", "http://schema.org/Text", "http://schema.org/URL"],
|
5245
5294
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5246
5295
|
property :actionStatus,
|
5247
5296
|
comment: "Indicates the current disposition of the Action.",
|
@@ -5571,6 +5620,14 @@ module RDF::Vocab
|
|
5571
5620
|
rangeIncludes: "http://schema.org/CreativeWork",
|
5572
5621
|
subPropertyOf: "http://schema.org/workExample",
|
5573
5622
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5623
|
+
property :applicableCountry,
|
5624
|
+
comment: "A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.",
|
5625
|
+
domainIncludes: "http://schema.org/MerchantReturnPolicy",
|
5626
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
5627
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3001",
|
5628
|
+
label: "applicableCountry",
|
5629
|
+
rangeIncludes: ["http://schema.org/Country", "http://schema.org/Text"],
|
5630
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
5574
5631
|
property :applicableLocation,
|
5575
5632
|
comment: "The location in which the status applies.",
|
5576
5633
|
domainIncludes: ["http://schema.org/DrugCost", "http://schema.org/DrugLegalStatus"],
|
@@ -6550,7 +6607,7 @@ module RDF::Vocab
|
|
6550
6607
|
domainIncludes: ["http://schema.org/ActionAccessSpecification", "http://schema.org/Invoice", "http://schema.org/Offer", "http://schema.org/PhysicalActivity", "http://schema.org/Product", "http://schema.org/Recommendation", "http://schema.org/Service", "http://schema.org/SpecialAnnouncement"],
|
6551
6608
|
"http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1741", "https://github.com/schemaorg/schemaorg/issues/2490"],
|
6552
6609
|
label: "category",
|
6553
|
-
rangeIncludes: ["http://schema.org/PhysicalActivityCategory", "http://schema.org/Text", "http://schema.org/Thing", "http://schema.org/URL"],
|
6610
|
+
rangeIncludes: ["http://schema.org/CategoryCode", "http://schema.org/PhysicalActivityCategory", "http://schema.org/Text", "http://schema.org/Thing", "http://schema.org/URL"],
|
6554
6611
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
6555
6612
|
property :causeOf,
|
6556
6613
|
comment: "The condition, complication, symptom, sign, etc. caused.",
|
@@ -8742,20 +8799,30 @@ module RDF::Vocab
|
|
8742
8799
|
rangeIncludes: ["http://schema.org/MedicalEntity", "http://schema.org/Text"],
|
8743
8800
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8744
8801
|
property :fundedItem,
|
8745
|
-
comment: "Indicates
|
8802
|
+
comment: "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].",
|
8746
8803
|
domainIncludes: "http://schema.org/Grant",
|
8804
|
+
"http://schema.org/inverseOf": "http://schema.org/funding",
|
8747
8805
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
8748
8806
|
"http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1950", "https://github.com/schemaorg/schemaorg/issues/383", "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"],
|
8749
8807
|
label: "fundedItem",
|
8750
|
-
rangeIncludes: "http://schema.org/
|
8808
|
+
rangeIncludes: ["http://schema.org/BioChemEntity", "http://schema.org/CreativeWork", "http://schema.org/Event", "http://schema.org/MedicalEntity", "http://schema.org/Organization", "http://schema.org/Person", "http://schema.org/Product"],
|
8751
8809
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8752
8810
|
property :funder,
|
8753
8811
|
comment: "A person or organization that supports (sponsors) something through some kind of financial contribution.",
|
8754
|
-
domainIncludes: ["http://schema.org/CreativeWork", "http://schema.org/Event", "http://schema.org/MonetaryGrant", "http://schema.org/Organization", "http://schema.org/Person"],
|
8812
|
+
domainIncludes: ["http://schema.org/CreativeWork", "http://schema.org/Event", "http://schema.org/Grant", "http://schema.org/MonetaryGrant", "http://schema.org/Organization", "http://schema.org/Person"],
|
8755
8813
|
label: "funder",
|
8756
8814
|
rangeIncludes: ["http://schema.org/Organization", "http://schema.org/Person"],
|
8757
8815
|
subPropertyOf: "http://schema.org/sponsor",
|
8758
8816
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8817
|
+
property :funding,
|
8818
|
+
comment: "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].",
|
8819
|
+
domainIncludes: ["http://schema.org/BioChemEntity", "http://schema.org/CreativeWork", "http://schema.org/Event", "http://schema.org/MedicalEntity", "http://schema.org/Organization", "http://schema.org/Person", "http://schema.org/Product"],
|
8820
|
+
"http://schema.org/inverseOf": "http://schema.org/fundedItem",
|
8821
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
8822
|
+
"http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383", "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"],
|
8823
|
+
label: "funding",
|
8824
|
+
rangeIncludes: "http://schema.org/Grant",
|
8825
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8759
8826
|
property :game,
|
8760
8827
|
comment: "Video game which is played on this server.",
|
8761
8828
|
domainIncludes: "http://schema.org/GameServer",
|
@@ -8763,6 +8830,20 @@ module RDF::Vocab
|
|
8763
8830
|
label: "game",
|
8764
8831
|
rangeIncludes: "http://schema.org/VideoGame",
|
8765
8832
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8833
|
+
property :gameAvailabilityType,
|
8834
|
+
comment: "Indicates the availability type of the game content associated with this action, such as whether it is a full version or a demo.",
|
8835
|
+
domainIncludes: "http://schema.org/PlayGameAction",
|
8836
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
8837
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3058",
|
8838
|
+
label: "gameAvailabilityType",
|
8839
|
+
rangeIncludes: ["http://schema.org/GameAvailabilityEnumeration", "http://schema.org/Text"],
|
8840
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8841
|
+
property :gameEdition,
|
8842
|
+
comment: "The edition of a video game.",
|
8843
|
+
domainIncludes: "http://schema.org/VideoGame",
|
8844
|
+
label: "gameEdition",
|
8845
|
+
rangeIncludes: "http://schema.org/Text",
|
8846
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
8766
8847
|
property :gameItem,
|
8767
8848
|
comment: "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
|
8768
8849
|
domainIncludes: ["http://schema.org/Game", "http://schema.org/VideoGameSeries"],
|
@@ -9019,6 +9100,14 @@ module RDF::Vocab
|
|
9019
9100
|
label: "handlingTime",
|
9020
9101
|
rangeIncludes: "http://schema.org/QuantitativeValue",
|
9021
9102
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
9103
|
+
property :hasAdultConsideration,
|
9104
|
+
comment: "Used to tag an item to be intended or suitable for consumption or use by adults only.",
|
9105
|
+
domainIncludes: ["http://schema.org/Offer", "http://schema.org/Product"],
|
9106
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
9107
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
9108
|
+
label: "hasAdultConsideration",
|
9109
|
+
rangeIncludes: "http://schema.org/AdultOrientedEnumeration",
|
9110
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
9022
9111
|
property :hasBioChemEntityPart,
|
9023
9112
|
comment: "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ",
|
9024
9113
|
domainIncludes: "http://schema.org/BioChemEntity",
|
@@ -9856,7 +9945,7 @@ module RDF::Vocab
|
|
9856
9945
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
9857
9946
|
property :isFamilyFriendly,
|
9858
9947
|
comment: "Indicates whether this content is family friendly.",
|
9859
|
-
domainIncludes: "http://schema.org/CreativeWork",
|
9948
|
+
domainIncludes: ["http://schema.org/CreativeWork", "http://schema.org/Offer", "http://schema.org/Product"],
|
9860
9949
|
label: "isFamilyFriendly",
|
9861
9950
|
rangeIncludes: "http://schema.org/Boolean",
|
9862
9951
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
@@ -9972,6 +10061,14 @@ module RDF::Vocab
|
|
9972
10061
|
label: "isicV4",
|
9973
10062
|
rangeIncludes: "http://schema.org/Text",
|
9974
10063
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
10064
|
+
property :iso6523Code,
|
10065
|
+
comment: "An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](http://schema.org/leiCode), [duns](http://schema.org/duns) and [vatID](http://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ",
|
10066
|
+
domainIncludes: "http://schema.org/Organization",
|
10067
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
10068
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2915",
|
10069
|
+
label: "iso6523Code",
|
10070
|
+
rangeIncludes: "http://schema.org/Text",
|
10071
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
9975
10072
|
property :isrcCode,
|
9976
10073
|
comment: "The International Standard Recording Code for the recording.",
|
9977
10074
|
domainIncludes: "http://schema.org/MusicRecording",
|
@@ -10161,8 +10258,8 @@ module RDF::Vocab
|
|
10161
10258
|
rangeIncludes: ["http://schema.org/AdministrativeArea", "http://schema.org/Text"],
|
10162
10259
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
10163
10260
|
property :keywords,
|
10164
|
-
comment: "Keywords or tags used to describe
|
10165
|
-
domainIncludes: "http://schema.org/CreativeWork",
|
10261
|
+
comment: "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.",
|
10262
|
+
domainIncludes: ["http://schema.org/CreativeWork", "http://schema.org/Event", "http://schema.org/Organization", "http://schema.org/Place", "http://schema.org/Product"],
|
10166
10263
|
label: "keywords",
|
10167
10264
|
rangeIncludes: ["http://schema.org/DefinedTerm", "http://schema.org/Text", "http://schema.org/URL"],
|
10168
10265
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
@@ -12414,8 +12511,9 @@ module RDF::Vocab
|
|
12414
12511
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
12415
12512
|
property :provider,
|
12416
12513
|
comment: "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.",
|
12417
|
-
domainIncludes: ["http://schema.org/CreativeWork", "http://schema.org/EducationalOccupationalProgram", "http://schema.org/Invoice", "http://schema.org/ParcelDelivery", "http://schema.org/Reservation", "http://schema.org/Service", "http://schema.org/Trip"],
|
12418
|
-
"http://schema.org/
|
12514
|
+
domainIncludes: ["http://schema.org/Action", "http://schema.org/CreativeWork", "http://schema.org/EducationalOccupationalProgram", "http://schema.org/Invoice", "http://schema.org/ParcelDelivery", "http://schema.org/Reservation", "http://schema.org/Service", "http://schema.org/Trip"],
|
12515
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
12516
|
+
"http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/2289", "https://github.com/schemaorg/schemaorg/issues/2927"],
|
12419
12517
|
label: "provider",
|
12420
12518
|
rangeIncludes: ["http://schema.org/Organization", "http://schema.org/Person"],
|
12421
12519
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
@@ -15170,6 +15268,12 @@ module RDF::Vocab
|
|
15170
15268
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ",
|
15171
15269
|
label: "AlbumRelease",
|
15172
15270
|
type: "http://schema.org/MusicAlbumReleaseType"
|
15271
|
+
term :AlcoholConsideration,
|
15272
|
+
comment: "Item contains alcohol or promotes alcohol consumption.",
|
15273
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15274
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
15275
|
+
label: "AlcoholConsideration",
|
15276
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
15173
15277
|
term :AllWheelDriveConfiguration,
|
15174
15278
|
comment: "All-wheel Drive is a transmission layout where the engine drives all four wheels.",
|
15175
15279
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group",
|
@@ -15186,6 +15290,12 @@ module RDF::Vocab
|
|
15186
15290
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
15187
15291
|
label: "AnaerobicActivity",
|
15188
15292
|
type: "http://schema.org/PhysicalActivityCategory"
|
15293
|
+
term :AndroidPlatform,
|
15294
|
+
comment: "Represents the broad notion of Android-based operating systems.",
|
15295
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15296
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
15297
|
+
label: "AndroidPlatform",
|
15298
|
+
type: "http://schema.org/DigitalPlatformEnumeration"
|
15189
15299
|
term :Anesthesia,
|
15190
15300
|
comment: "A specific branch of medical science that pertains to study of anesthetics and their application.",
|
15191
15301
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
@@ -15438,6 +15548,12 @@ module RDF::Vocab
|
|
15438
15548
|
comment: "Indicates that the item is damaged.",
|
15439
15549
|
label: "DamagedCondition",
|
15440
15550
|
type: "http://schema.org/OfferItemCondition"
|
15551
|
+
term :DangerousGoodConsideration,
|
15552
|
+
comment: "The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.",
|
15553
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15554
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
15555
|
+
label: "DangerousGoodConsideration",
|
15556
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
15441
15557
|
term :DecontextualizedContent,
|
15442
15558
|
comment: "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n",
|
15443
15559
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
@@ -15456,6 +15572,12 @@ module RDF::Vocab
|
|
15456
15572
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ",
|
15457
15573
|
label: "DemoAlbum",
|
15458
15574
|
type: "http://schema.org/MusicAlbumProductionType"
|
15575
|
+
term :DemoGameAvailability,
|
15576
|
+
comment: "Indicates demo game availability, i.e. a somehow limited demonstration of the full game.",
|
15577
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15578
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3058",
|
15579
|
+
label: "DemoGameAvailability",
|
15580
|
+
type: "http://schema.org/GameAvailabilityEnumeration"
|
15459
15581
|
term :Dentistry,
|
15460
15582
|
comment: "A branch of medicine that is involved in the dental care.",
|
15461
15583
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
@@ -15473,6 +15595,12 @@ module RDF::Vocab
|
|
15473
15595
|
label: "Dermatology",
|
15474
15596
|
subClassOf: "http://schema.org/MedicalBusiness",
|
15475
15597
|
type: "http://schema.org/MedicalSpecialty"
|
15598
|
+
term :DesktopWebPlatform,
|
15599
|
+
comment: "Represents the broad notion of 'desktop' browsers as a Web Platform.",
|
15600
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15601
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
15602
|
+
label: "DesktopWebPlatform",
|
15603
|
+
type: "http://schema.org/DigitalPlatformEnumeration"
|
15476
15604
|
term :DiabeticDiet,
|
15477
15605
|
comment: "A diet appropriate for people with diabetes.",
|
15478
15606
|
label: "DiabeticDiet",
|
@@ -15753,6 +15881,12 @@ module RDF::Vocab
|
|
15753
15881
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group",
|
15754
15882
|
label: "FrontWheelDriveConfiguration",
|
15755
15883
|
type: "http://schema.org/DriveWheelConfigurationValue"
|
15884
|
+
term :FullGameAvailability,
|
15885
|
+
comment: "Indicates full game availability.",
|
15886
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15887
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3058",
|
15888
|
+
label: "FullGameAvailability",
|
15889
|
+
type: "http://schema.org/GameAvailabilityEnumeration"
|
15756
15890
|
term :FullRefund,
|
15757
15891
|
comment: "Specifies that a refund can be done in the full amount the customer paid for the product",
|
15758
15892
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
@@ -15764,6 +15898,12 @@ module RDF::Vocab
|
|
15764
15898
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
15765
15899
|
label: "Gastroenterologic",
|
15766
15900
|
type: "http://schema.org/MedicalSpecialty"
|
15901
|
+
term :GenericWebPlatform,
|
15902
|
+
comment: "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. ",
|
15903
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15904
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
15905
|
+
label: "GenericWebPlatform",
|
15906
|
+
type: "http://schema.org/DigitalPlatformEnumeration"
|
15767
15907
|
term :Genetic,
|
15768
15908
|
comment: "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.",
|
15769
15909
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
@@ -15824,6 +15964,12 @@ module RDF::Vocab
|
|
15824
15964
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534",
|
15825
15965
|
label: "HealthCare",
|
15826
15966
|
type: "http://schema.org/GovernmentBenefitsType"
|
15967
|
+
term :HealthcareConsideration,
|
15968
|
+
comment: "Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.",
|
15969
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
15970
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
15971
|
+
label: "HealthcareConsideration",
|
15972
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
15827
15973
|
term :HearingImpairedSupported,
|
15828
15974
|
comment: "Uses devices to support users with hearing impairments.",
|
15829
15975
|
label: "HearingImpairedSupported",
|
@@ -15854,6 +16000,12 @@ module RDF::Vocab
|
|
15854
16000
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374",
|
15855
16001
|
label: "HowOrWhereHealthAspect",
|
15856
16002
|
type: "http://schema.org/HealthAspectEnumeration"
|
16003
|
+
term :IOSPlatform,
|
16004
|
+
comment: "Represents the broad notion of iOS-based operating systems.",
|
16005
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
16006
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
16007
|
+
label: "IOSPlatform",
|
16008
|
+
type: "http://schema.org/DigitalPlatformEnumeration"
|
15857
16009
|
term :InForce,
|
15858
16010
|
comment: "Indicates that a legislation is in force.",
|
15859
16011
|
exactMatch: "http://data.europa.eu/eli/ontology#InForce-inForce",
|
@@ -16069,6 +16221,12 @@ module RDF::Vocab
|
|
16069
16221
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ",
|
16070
16222
|
label: "MixtapeAlbum",
|
16071
16223
|
type: "http://schema.org/MusicAlbumProductionType"
|
16224
|
+
term :MobileWebPlatform,
|
16225
|
+
comment: "Represents the broad notion of 'mobile' browsers as a Web Platform.",
|
16226
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
16227
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/3057",
|
16228
|
+
label: "MobileWebPlatform",
|
16229
|
+
type: "http://schema.org/DigitalPlatformEnumeration"
|
16072
16230
|
term :Monday,
|
16073
16231
|
comment: "The day of the week between Sunday and Tuesday.",
|
16074
16232
|
"http://schema.org/sameAs": "http://www.wikidata.org/entity/Q105",
|
@@ -16093,6 +16251,12 @@ module RDF::Vocab
|
|
16093
16251
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
16094
16252
|
label: "MusculoskeletalExam",
|
16095
16253
|
type: "http://schema.org/PhysicalExam"
|
16254
|
+
term :NarcoticConsideration,
|
16255
|
+
comment: "Item is a narcotic as defined by the [1961 UN convention](https://www.incb.org/incb/en/narcotic-drugs/Yellowlist/yellow-list.html), for example marijuna or heroin.",
|
16256
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
16257
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
16258
|
+
label: "NarcoticConsideration",
|
16259
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
16096
16260
|
term :Neck,
|
16097
16261
|
comment: "Neck assessment with clinical examination.",
|
16098
16262
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
@@ -16742,6 +16906,12 @@ module RDF::Vocab
|
|
16742
16906
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
16743
16907
|
label: "Recruiting",
|
16744
16908
|
type: "http://schema.org/MedicalStudyStatus"
|
16909
|
+
term :ReducedRelevanceForChildrenConsideration,
|
16910
|
+
comment: "A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.",
|
16911
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
16912
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
16913
|
+
label: "ReducedRelevanceForChildrenConsideration",
|
16914
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
16745
16915
|
term :RefurbishedCondition,
|
16746
16916
|
comment: "Indicates that the item is refurbished.",
|
16747
16917
|
label: "RefurbishedCondition",
|
@@ -16948,6 +17118,12 @@ module RDF::Vocab
|
|
16948
17118
|
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374",
|
16949
17119
|
label: "SelfCareHealthAspect",
|
16950
17120
|
type: "http://schema.org/HealthAspectEnumeration"
|
17121
|
+
term :SexualContentConsideration,
|
17122
|
+
comment: "The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.",
|
17123
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
17124
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
17125
|
+
label: "SexualContentConsideration",
|
17126
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
16951
17127
|
term :SideEffectsHealthAspect,
|
16952
17128
|
comment: "Side effects that can be observed from the usage of the topic.",
|
16953
17129
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
@@ -17090,6 +17266,12 @@ module RDF::Vocab
|
|
17090
17266
|
"http://schema.org/sameAs": "http://www.wikidata.org/entity/Q129",
|
17091
17267
|
label: "Thursday",
|
17092
17268
|
type: "http://schema.org/DayOfWeek"
|
17269
|
+
term :TobaccoNicotineConsideration,
|
17270
|
+
comment: "Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.",
|
17271
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
17272
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
17273
|
+
label: "TobaccoNicotineConsideration",
|
17274
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
17093
17275
|
term :TollFree,
|
17094
17276
|
comment: "The associated telephone number is toll free.",
|
17095
17277
|
label: "TollFree",
|
@@ -17151,6 +17333,12 @@ module RDF::Vocab
|
|
17151
17333
|
"http://schema.org/isPartOf": "http://health-lifesci.schema.org",
|
17152
17334
|
label: "Ultrasound",
|
17153
17335
|
type: "http://schema.org/MedicalImagingTechnique"
|
17336
|
+
term :UnclassifiedAdultConsideration,
|
17337
|
+
comment: "The item is suitable only for adults, without indicating why. Due to widespread use of \"adult\" as a euphemism for \"sexual\", many such items are likely suited also for the SexualContentConsideration code.",
|
17338
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
17339
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
17340
|
+
label: "UnclassifiedAdultConsideration",
|
17341
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
17154
17342
|
term :UnemploymentSupport,
|
17155
17343
|
comment: "UnemploymentSupport: this is a benefit for unemployment support.",
|
17156
17344
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|
@@ -17202,6 +17390,18 @@ module RDF::Vocab
|
|
17202
17390
|
"http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ",
|
17203
17391
|
label: "VinylFormat",
|
17204
17392
|
type: "http://schema.org/MusicReleaseFormatType"
|
17393
|
+
term :ViolenceConsideration,
|
17394
|
+
comment: "Item shows or promotes violence.",
|
17395
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
17396
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
17397
|
+
label: "ViolenceConsideration",
|
17398
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
17399
|
+
term :WeaponConsideration,
|
17400
|
+
comment: "The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.",
|
17401
|
+
"http://schema.org/isPartOf": "http://pending.schema.org",
|
17402
|
+
"http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2989",
|
17403
|
+
label: "WeaponConsideration",
|
17404
|
+
type: "http://schema.org/AdultOrientedEnumeration"
|
17205
17405
|
term :WearableMeasurementBack,
|
17206
17406
|
comment: "Measurement of the back section, for example of a jacket",
|
17207
17407
|
"http://schema.org/isPartOf": "http://pending.schema.org",
|