rdf-vocab 2.2.5 → 2.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rdf/vocab.rb +1 -9
- data/lib/rdf/vocab/schema.rb +748 -50
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1dd31996e950040ca9d95dbb85ab31ce3285ad3
|
4
|
+
data.tar.gz: 9a08c9c57b33658aec0fe4443c0a518b2753ef33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e86a2d008b5afadde96d220fb430e29ccbb9a6fd6802602e17c2b72784b7de63984d3a09fca23b2f0df80a26e62375232770f7972514c98e3ffe2d245964cf2a
|
7
|
+
data.tar.gz: 2883681d856110cca2e6b7541d354707701598155e398b493427c8c61c409d5ed05011d274fdb597c810f5e7c23192774e6274e6c7d839c84d7a80fbf4642058
|
data/lib/rdf/vocab.rb
CHANGED
@@ -277,15 +277,7 @@ module RDF
|
|
277
277
|
rss: {uri: "http://purl.org/rss/1.0/", source: "http://purl.org/rss/1.0/schema.rdf"},
|
278
278
|
schema: {
|
279
279
|
uri: "http://schema.org/",
|
280
|
-
source: "http://schema.org/version/latest/all-layers.nq"
|
281
|
-
patch: %{
|
282
|
-
@prefix schema: <http://schema.org/> .
|
283
|
-
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
284
|
-
AddNew {
|
285
|
-
schema:treatment rdfs:subPropertyOf schema:availableService .
|
286
|
-
schema:preventiveProcedure rdfs:subPropertyOf schema:availableService .
|
287
|
-
} .
|
288
|
-
}
|
280
|
+
source: "http://schema.org/version/latest/all-layers.nq"
|
289
281
|
},
|
290
282
|
sioc: {uri: "http://rdfs.org/sioc/ns#"},
|
291
283
|
sioc_services: {
|
data/lib/rdf/vocab/schema.rb
CHANGED
@@ -5,9 +5,9 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://schema.org/>
|
8
|
-
# class SCHEMA < RDF::
|
8
|
+
# class SCHEMA < RDF::Vocabulary
|
9
9
|
# end
|
10
|
-
class SCHEMA < RDF::
|
10
|
+
class SCHEMA < RDF::Vocabulary("http://schema.org/")
|
11
11
|
|
12
12
|
# Class definitions
|
13
13
|
term :AMRadioChannel,
|
@@ -94,6 +94,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
94
94
|
label: "AdultEntertainment".freeze,
|
95
95
|
subClassOf: "schema:EntertainmentBusiness".freeze,
|
96
96
|
type: "rdfs:Class".freeze
|
97
|
+
term :AdvertiserContentArticle,
|
98
|
+
comment: %(An <a class="localLink" href="http://schema.org/Article">Article</a> that an external entity has paid to place or to produce to its specifications. Includes <a href="https://en.wikipedia.org/wiki/Advertorial">advertorials</a>, sponsored content, native advertising and other paid content.).freeze,
|
99
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
100
|
+
label: "AdvertiserContentArticle".freeze,
|
101
|
+
:"schema:category" => %(issue-1525).freeze,
|
102
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
103
|
+
subClassOf: "schema:Article".freeze,
|
104
|
+
type: "rdfs:Class".freeze
|
97
105
|
term :AggregateOffer,
|
98
106
|
comment: %(When a single product is associated with multiple offers \(for example, the same pair of shoes is offered by different merchants\), then AggregateOffer can be used.).freeze,
|
99
107
|
label: "AggregateOffer".freeze,
|
@@ -135,6 +143,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
135
143
|
label: "AmusementPark".freeze,
|
136
144
|
subClassOf: "schema:EntertainmentBusiness".freeze,
|
137
145
|
type: "rdfs:Class".freeze
|
146
|
+
term :AnalysisNewsArticle,
|
147
|
+
comment: %(An AnalysisNewsArticle is a <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.).freeze,
|
148
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
149
|
+
label: "AnalysisNewsArticle".freeze,
|
150
|
+
:"schema:category" => %(issue-1525).freeze,
|
151
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
152
|
+
subClassOf: "schema:NewsArticle".freeze,
|
153
|
+
type: "rdfs:Class".freeze
|
138
154
|
term :AnatomicalStructure,
|
139
155
|
comment: %(Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.).freeze,
|
140
156
|
label: "AnatomicalStructure".freeze,
|
@@ -320,6 +336,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
320
336
|
label: "AutomotiveBusiness".freeze,
|
321
337
|
subClassOf: "schema:LocalBusiness".freeze,
|
322
338
|
type: "rdfs:Class".freeze
|
339
|
+
term :BackgroundNewsArticle,
|
340
|
+
comment: %(A <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> providing historical context, definition and detail on a specific topic \(aka "explainer" or "backgrounder"\). For example, an in-depth article or frequently-asked-questions \(<a href="https://en.wikipedia.org/wiki/FAQ">FAQ</a>\) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using <a class="localLink" href="http://schema.org/Book">Book</a> or <a class="localLink" href="http://schema.org/Article">Article</a>, in particular <a class="localLink" href="http://schema.org/ScholarlyArticle">ScholarlyArticle</a>. See also <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> for related vocabulary from a learning/education perspective.).freeze,
|
341
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
342
|
+
label: "BackgroundNewsArticle".freeze,
|
343
|
+
:"schema:category" => %(issue-1525).freeze,
|
344
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
345
|
+
subClassOf: "schema:NewsArticle".freeze,
|
346
|
+
type: "rdfs:Class".freeze
|
323
347
|
term :Bacteria,
|
324
348
|
comment: %(Pathogenic bacteria that cause bacterial infection.).freeze,
|
325
349
|
label: "Bacteria".freeze,
|
@@ -999,16 +1023,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
999
1023
|
type: "rdfs:Class".freeze
|
1000
1024
|
term :Course,
|
1001
1025
|
comment: %(A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.).freeze,
|
1002
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
1003
1026
|
label: "Course".freeze,
|
1004
|
-
:"schema:category" => %(issue-195).freeze,
|
1005
1027
|
subClassOf: "schema:CreativeWork".freeze,
|
1006
1028
|
type: "rdfs:Class".freeze
|
1007
1029
|
term :CourseInstance,
|
1008
1030
|
comment: %(An instance of a <a class="localLink" href="http://schema.org/Course">Course</a> which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.).freeze,
|
1009
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
1010
1031
|
label: "CourseInstance".freeze,
|
1011
|
-
:"schema:category" => %(issue-195).freeze,
|
1012
1032
|
subClassOf: "schema:Event".freeze,
|
1013
1033
|
type: "rdfs:Class".freeze
|
1014
1034
|
term :Courthouse,
|
@@ -1071,6 +1091,22 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
1071
1091
|
label: "Crematorium".freeze,
|
1072
1092
|
subClassOf: "schema:CivicStructure".freeze,
|
1073
1093
|
type: "rdfs:Class".freeze
|
1094
|
+
term :CriticReview,
|
1095
|
+
comment: %(A <a class="localLink" href="http://schema.org/CriticReview">CriticReview</a> is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. <a class="localLink" href="http://schema.org/CriticReview">CriticReview</a>s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the <a class="localLink" href="http://schema.org/UserReview">UserReview</a> type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.).freeze,
|
1096
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1589).freeze,
|
1097
|
+
label: "CriticReview".freeze,
|
1098
|
+
:"schema:category" => %(issue-1589).freeze,
|
1099
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
1100
|
+
subClassOf: "schema:Review".freeze,
|
1101
|
+
type: "rdfs:Class".freeze
|
1102
|
+
term :CssSelectorType,
|
1103
|
+
comment: %(Text representing a CSS selector.).freeze,
|
1104
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1672).freeze,
|
1105
|
+
label: "CssSelectorType".freeze,
|
1106
|
+
:"schema:category" => %(issue-1672).freeze,
|
1107
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
1108
|
+
subClassOf: "schema:Text".freeze,
|
1109
|
+
type: "rdfs:Class".freeze
|
1074
1110
|
term :CurrencyConversionService,
|
1075
1111
|
comment: %(A service to convert funds from one currency to another currency.).freeze,
|
1076
1112
|
:"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO).freeze,
|
@@ -1448,6 +1484,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
1448
1484
|
label: "EmployeeRole".freeze,
|
1449
1485
|
subClassOf: "schema:OrganizationRole".freeze,
|
1450
1486
|
type: "rdfs:Class".freeze
|
1487
|
+
term :EmployerReview,
|
1488
|
+
comment: %(An <a class="localLink" href="http://schema.org/EmployerReview">EmployerReview</a> is a review of an <a class="localLink" href="http://schema.org/Organization">Organization</a> regarding its role as an employer, written by a current or former employee of that organization.).freeze,
|
1489
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1589).freeze,
|
1490
|
+
label: "EmployerReview".freeze,
|
1491
|
+
:"schema:category" => %(issue-1576).freeze,
|
1492
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
1493
|
+
subClassOf: "schema:Review".freeze,
|
1494
|
+
type: "rdfs:Class".freeze
|
1451
1495
|
term :EmploymentAgency,
|
1452
1496
|
comment: %(An employment agency.).freeze,
|
1453
1497
|
label: "EmploymentAgency".freeze,
|
@@ -1939,6 +1983,46 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
1939
1983
|
label: "HousePainter".freeze,
|
1940
1984
|
subClassOf: "schema:HomeAndConstructionBusiness".freeze,
|
1941
1985
|
type: "rdfs:Class".freeze
|
1986
|
+
term :HowTo,
|
1987
|
+
comment: %(Instructions that explain how to achieve a result by performing a sequence of steps.).freeze,
|
1988
|
+
label: "HowTo".freeze,
|
1989
|
+
subClassOf: "schema:CreativeWork".freeze,
|
1990
|
+
type: "rdfs:Class".freeze
|
1991
|
+
term :HowToDirection,
|
1992
|
+
comment: %(A direction indicating a single action to do in the instructions for how to achieve a result.).freeze,
|
1993
|
+
label: "HowToDirection".freeze,
|
1994
|
+
subClassOf: "schema:ListItem".freeze,
|
1995
|
+
type: "rdfs:Class".freeze
|
1996
|
+
term :HowToItem,
|
1997
|
+
comment: %(An item used as either a tool or supply when performing the instructions for how to to achieve a result.).freeze,
|
1998
|
+
label: "HowToItem".freeze,
|
1999
|
+
subClassOf: "schema:ListItem".freeze,
|
2000
|
+
type: "rdfs:Class".freeze
|
2001
|
+
term :HowToSection,
|
2002
|
+
comment: %(A sub-grouping of steps in the instructions for how to achieve a result \(e.g. steps for making a pie crust within a pie recipe\).).freeze,
|
2003
|
+
label: "HowToSection".freeze,
|
2004
|
+
subClassOf: "schema:ItemList".freeze,
|
2005
|
+
type: "rdfs:Class".freeze
|
2006
|
+
term :HowToStep,
|
2007
|
+
comment: %(A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.).freeze,
|
2008
|
+
label: "HowToStep".freeze,
|
2009
|
+
subClassOf: "schema:ItemList".freeze,
|
2010
|
+
type: "rdfs:Class".freeze
|
2011
|
+
term :HowToSupply,
|
2012
|
+
comment: %(A supply consumed when performing the instructions for how to achieve a result.).freeze,
|
2013
|
+
label: "HowToSupply".freeze,
|
2014
|
+
subClassOf: "schema:HowToItem".freeze,
|
2015
|
+
type: "rdfs:Class".freeze
|
2016
|
+
term :HowToTip,
|
2017
|
+
comment: %(An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done \(see HowToDirection\).).freeze,
|
2018
|
+
label: "HowToTip".freeze,
|
2019
|
+
subClassOf: "schema:ListItem".freeze,
|
2020
|
+
type: "rdfs:Class".freeze
|
2021
|
+
term :HowToTool,
|
2022
|
+
comment: %(A tool used \(but not consumed\) when performing instructions for how to achieve a result.).freeze,
|
2023
|
+
label: "HowToTool".freeze,
|
2024
|
+
subClassOf: "schema:HowToItem".freeze,
|
2025
|
+
type: "rdfs:Class".freeze
|
1942
2026
|
term :IceCreamShop,
|
1943
2027
|
comment: %(An ice cream shop.).freeze,
|
1944
2028
|
label: "IceCreamShop".freeze,
|
@@ -2136,6 +2220,15 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
2136
2220
|
label: "LeaveAction".freeze,
|
2137
2221
|
subClassOf: "schema:InteractAction".freeze,
|
2138
2222
|
type: "rdfs:Class".freeze
|
2223
|
+
term :LegalForceStatus,
|
2224
|
+
comment: %(A list of possible statuses for the legal force of a legislation.).freeze,
|
2225
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
2226
|
+
label: "LegalForceStatus".freeze,
|
2227
|
+
:"schema:category" => %(issue-1156).freeze,
|
2228
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
2229
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#InForce).freeze,
|
2230
|
+
subClassOf: "schema:Enumeration".freeze,
|
2231
|
+
type: "rdfs:Class".freeze
|
2139
2232
|
term :LegalService,
|
2140
2233
|
comment: %(A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.</p>
|
2141
2234
|
|
@@ -2143,6 +2236,33 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
2143
2236
|
label: "LegalService".freeze,
|
2144
2237
|
subClassOf: "schema:LocalBusiness".freeze,
|
2145
2238
|
type: "rdfs:Class".freeze
|
2239
|
+
term :LegalValueLevel,
|
2240
|
+
comment: %(A list of possible levels for the legal validity of a legislation.).freeze,
|
2241
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
2242
|
+
label: "LegalValueLevel".freeze,
|
2243
|
+
:"schema:category" => %(issue-1156).freeze,
|
2244
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
2245
|
+
:"skos:closeMatch" => %(http://data.europa.eu/eli/ontology#LegalValue).freeze,
|
2246
|
+
subClassOf: "schema:Enumeration".freeze,
|
2247
|
+
type: "rdfs:Class".freeze
|
2248
|
+
term :Legislation,
|
2249
|
+
comment: %(A legal act \(enforceable or not\) or a component of a legal act \(like an article\).).freeze,
|
2250
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
2251
|
+
label: "Legislation".freeze,
|
2252
|
+
:"schema:category" => %(issue-1156).freeze,
|
2253
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
2254
|
+
:"skos:closeMatch" => [%(http://data.europa.eu/eli/ontology#LegalExpression).freeze, %(http://data.europa.eu/eli/ontology#LegalResource).freeze],
|
2255
|
+
subClassOf: "schema:CreativeWork".freeze,
|
2256
|
+
type: "rdfs:Class".freeze
|
2257
|
+
term :LegislationObject,
|
2258
|
+
comment: %(A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.).freeze,
|
2259
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
2260
|
+
label: "LegislationObject".freeze,
|
2261
|
+
:"schema:category" => %(issue-1156).freeze,
|
2262
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
2263
|
+
:"skos:closeMatch" => %(http://data.europa.eu/eli/ontology#Format).freeze,
|
2264
|
+
subClassOf: ["schema:Legislation".freeze, "schema:MediaObject".freeze],
|
2265
|
+
type: "rdfs:Class".freeze
|
2146
2266
|
term :LegislativeBuilding,
|
2147
2267
|
comment: %(A legislative building—for example, the state capitol.).freeze,
|
2148
2268
|
label: "LegislativeBuilding".freeze,
|
@@ -2815,11 +2935,21 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
2815
2935
|
subClassOf: "schema:AnatomicalStructure".freeze,
|
2816
2936
|
type: "rdfs:Class".freeze
|
2817
2937
|
term :NewsArticle,
|
2818
|
-
comment: %(A
|
2819
|
-
|
2938
|
+
comment: %(A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.</p>
|
2939
|
+
|
2940
|
+
<p>A more detailed overview of <a href="/docs/news.html">schema.org News markup</a> is also available.).freeze,
|
2941
|
+
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws).freeze],
|
2820
2942
|
label: "NewsArticle".freeze,
|
2821
2943
|
subClassOf: "schema:Article".freeze,
|
2822
2944
|
type: "rdfs:Class".freeze
|
2945
|
+
term :NewsMediaOrganization,
|
2946
|
+
comment: %(A News/Media organization such as a newspaper or TV station.).freeze,
|
2947
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
2948
|
+
label: "NewsMediaOrganization".freeze,
|
2949
|
+
:"schema:category" => %(issue-1525).freeze,
|
2950
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
2951
|
+
subClassOf: "schema:Organization".freeze,
|
2952
|
+
type: "rdfs:Class".freeze
|
2823
2953
|
term :Newspaper,
|
2824
2954
|
comment: %(A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter \(i.e. business, culture, education\). Often published daily.).freeze,
|
2825
2955
|
:"dc:source" => %(http://www.productontology.org/id/Newspaper).freeze,
|
@@ -2894,6 +3024,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
2894
3024
|
label: "OpeningHoursSpecification".freeze,
|
2895
3025
|
subClassOf: "schema:StructuredValue".freeze,
|
2896
3026
|
type: "rdfs:Class".freeze
|
3027
|
+
term :OpinionNewsArticle,
|
3028
|
+
comment: %(An <a class="localLink" href="http://schema.org/OpinionNewsArticle">OpinionNewsArticle</a> is a <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> that primarily expresses opinions rather than journalistic reporting of news and events. For example, a <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> consisting of a column or <a class="localLink" href="http://schema.org/Blog">Blog</a>/<a class="localLink" href="http://schema.org/BlogPosting">BlogPosting</a> entry in the Opinions section of a news publication.).freeze,
|
3029
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
3030
|
+
label: "OpinionNewsArticle".freeze,
|
3031
|
+
:"schema:category" => %(issue-1525).freeze,
|
3032
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3033
|
+
subClassOf: "schema:NewsArticle".freeze,
|
3034
|
+
type: "rdfs:Class".freeze
|
2897
3035
|
term :Optician,
|
2898
3036
|
comment: %(A store that sells reading glasses and similar devices for improving vision.).freeze,
|
2899
3037
|
label: "Optician".freeze,
|
@@ -3324,6 +3462,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
3324
3462
|
label: "PublicSwimmingPool".freeze,
|
3325
3463
|
subClassOf: "schema:SportsActivityLocation".freeze,
|
3326
3464
|
type: "rdfs:Class".freeze
|
3465
|
+
term :PublicToilet,
|
3466
|
+
comment: %(A public toilet is a room or small building containing one or more toilets \(and possibly also urinals\) which is available for use by the general public, or by customers or employees of certain businesses.).freeze,
|
3467
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1624).freeze,
|
3468
|
+
label: "PublicToilet".freeze,
|
3469
|
+
:"schema:category" => %(issue-1624).freeze,
|
3470
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3471
|
+
subClassOf: "schema:CivicStructure".freeze,
|
3472
|
+
type: "rdfs:Class".freeze
|
3327
3473
|
term :PublicationEvent,
|
3328
3474
|
comment: %(A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.).freeze,
|
3329
3475
|
label: "PublicationEvent".freeze,
|
@@ -3466,7 +3612,7 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
3466
3612
|
term :Recipe,
|
3467
3613
|
comment: %(A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via <a class="localLink" href="http://schema.org/suitableForDiet">suitableForDiet</a>. The <a class="localLink" href="http://schema.org/keywords">keywords</a> property can also be used to add more detail.).freeze,
|
3468
3614
|
label: "Recipe".freeze,
|
3469
|
-
subClassOf: "schema:
|
3615
|
+
subClassOf: "schema:HowTo".freeze,
|
3470
3616
|
type: "rdfs:Class".freeze
|
3471
3617
|
term :RecommendedDoseSchedule,
|
3472
3618
|
comment: %(A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.).freeze,
|
@@ -3547,6 +3693,21 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
3547
3693
|
label: "Report".freeze,
|
3548
3694
|
subClassOf: "schema:Article".freeze,
|
3549
3695
|
type: "rdfs:Class".freeze
|
3696
|
+
term :ReportageNewsArticle,
|
3697
|
+
comment: %(The <a class="localLink" href="http://schema.org/ReportageNewsArticle">ReportageNewsArticle</a> type is a subtype of <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> representing
|
3698
|
+
news articles which are the result of journalistic news reporting conventions.</p>
|
3699
|
+
|
3700
|
+
<p>In practice many news publishers produce a wide variety of article types, many of which might be considered a <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> but not a <a class="localLink" href="http://schema.org/ReportageNewsArticle">ReportageNewsArticle</a>. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.</p>
|
3701
|
+
|
3702
|
+
<p>The <a class="localLink" href="http://schema.org/ReportageNewsArticle">ReportageNewsArticle</a> type is based on a stricter ideal for "news" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue \(distinguishing news reports from public relations or propaganda\). News reports in the <a class="localLink" href="http://schema.org/ReportageNewsArticle">ReportageNewsArticle</a> sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.</p>
|
3703
|
+
|
3704
|
+
<p>A <a class="localLink" href="http://schema.org/ReportageNewsArticle">ReportageNewsArticle</a> which goes deeper into analysis can also be marked with an additional type of <a class="localLink" href="http://schema.org/AnalysisNewsArticle">AnalysisNewsArticle</a>.).freeze,
|
3705
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
3706
|
+
label: "ReportageNewsArticle".freeze,
|
3707
|
+
:"schema:category" => %(issue-1525).freeze,
|
3708
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3709
|
+
subClassOf: "schema:NewsArticle".freeze,
|
3710
|
+
type: "rdfs:Class".freeze
|
3550
3711
|
term :ReportedDoseSchedule,
|
3551
3712
|
comment: %(A patient-reported or observed dosing schedule for a drug or supplement.).freeze,
|
3552
3713
|
label: "ReportedDoseSchedule".freeze,
|
@@ -3630,6 +3791,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
3630
3791
|
label: "ReviewAction".freeze,
|
3631
3792
|
subClassOf: "schema:AssessAction".freeze,
|
3632
3793
|
type: "rdfs:Class".freeze
|
3794
|
+
term :ReviewNewsArticle,
|
3795
|
+
comment: %(A <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> and <a class="localLink" href="http://schema.org/CriticReview">CriticReview</a> providing a professional critic's assessment of a service, product, performance, or artistic or literary work.).freeze,
|
3796
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
3797
|
+
label: "ReviewNewsArticle".freeze,
|
3798
|
+
:"schema:category" => %(issue-1525).freeze,
|
3799
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3800
|
+
subClassOf: ["schema:CriticReview".freeze, "schema:NewsArticle".freeze],
|
3801
|
+
type: "rdfs:Class".freeze
|
3633
3802
|
term :RiverBodyOfWater,
|
3634
3803
|
comment: %(A river \(for example, the broad majestic Shannon\).).freeze,
|
3635
3804
|
label: "RiverBodyOfWater".freeze,
|
@@ -3670,6 +3839,24 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
3670
3839
|
label: "SaleEvent".freeze,
|
3671
3840
|
subClassOf: "schema:Event".freeze,
|
3672
3841
|
type: "rdfs:Class".freeze
|
3842
|
+
term :SatiricalArticle,
|
3843
|
+
comment: %(An <a class="localLink" href="http://schema.org/Article">Article</a> whose content is primarily <a href="https://en.wikipedia.org/wiki/Satire">[satirical]</a> in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a>. <a class="localLink" href="http://schema.org/ScholarlyArticle">ScholarlyArticle</a>s are also sometimes satirized.).freeze,
|
3844
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
3845
|
+
label: "SatiricalArticle".freeze,
|
3846
|
+
:"schema:category" => %(issue-1525).freeze,
|
3847
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3848
|
+
subClassOf: "schema:Article".freeze,
|
3849
|
+
type: "rdfs:Class".freeze
|
3850
|
+
term :Schedule,
|
3851
|
+
comment: %(A schedule defines a repeating time period used to describe a regularly occurring <a class="localLink" href="http://schema.org/Event">Event</a>. At a minimum a schedule will specify <a class="localLink" href="http://schema.org/repeatFrequency">repeatFrequency</a> which describes the interval between occurences of the event. Additional information can be provided to specify the schedule more precisely.
|
3852
|
+
This includes identifying the day\(s\) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also
|
3853
|
+
have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.).freeze,
|
3854
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
3855
|
+
label: "Schedule".freeze,
|
3856
|
+
:"schema:category" => %(issue-1457).freeze,
|
3857
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
3858
|
+
subClassOf: "schema:Intangible".freeze,
|
3859
|
+
type: "rdfs:Class".freeze
|
3673
3860
|
term :ScheduleAction,
|
3674
3861
|
comment: %(<p>Scheduling future actions, events, or tasks.</p>
|
3675
3862
|
|
@@ -4106,7 +4293,8 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
4106
4293
|
subClassOf: "schema:Store".freeze,
|
4107
4294
|
type: "rdfs:Class".freeze
|
4108
4295
|
term :TouristAttraction,
|
4109
|
-
comment: %(A tourist attraction.).freeze,
|
4296
|
+
comment: %(A tourist attraction. In principle any Thing can be a <a class="localLink" href="http://schema.org/TouristAttraction">TouristAttraction</a>, from a <a class="localLink" href="http://schema.org/Mountain">Mountain</a> and <a class="localLink" href="http://schema.org/LandmarksOrHistoricalBuildings">LandmarksOrHistoricalBuildings</a> to a <a class="localLink" href="http://schema.org/LocalBusiness">LocalBusiness</a>. This Type can be used on its own to describe a general <a class="localLink" href="http://schema.org/TourstAttraction">TourstAttraction</a>, or be used as an <a class="localLink" href="http://schema.org/additionalType">additionalType</a> to add tourist attraction properties to any other type. \(See examples below\)).freeze,
|
4297
|
+
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it).freeze, %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism).freeze],
|
4110
4298
|
label: "TouristAttraction".freeze,
|
4111
4299
|
subClassOf: "schema:Place".freeze,
|
4112
4300
|
type: "rdfs:Class".freeze
|
@@ -4271,6 +4459,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
4271
4459
|
:"schema:supersededBy" => %(schema:InteractionCounter).freeze,
|
4272
4460
|
subClassOf: "schema:UserInteraction".freeze,
|
4273
4461
|
type: "rdfs:Class".freeze
|
4462
|
+
term :UserReview,
|
4463
|
+
comment: %(A review created by an end-user \(e.g. consumer, purchaser, attendee etc.\), in contrast with <a class="localLink" href="http://schema.org/CriticReview">CriticReview</a>.).freeze,
|
4464
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1589).freeze,
|
4465
|
+
label: "UserReview".freeze,
|
4466
|
+
:"schema:category" => %(issue-1589).freeze,
|
4467
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
4468
|
+
subClassOf: "schema:Review".freeze,
|
4469
|
+
type: "rdfs:Class".freeze
|
4274
4470
|
term :UserTweets,
|
4275
4471
|
comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use <a class="localLink" href="http://schema.org/Action">Action</a>-based vocabulary, alongside types such as <a class="localLink" href="http://schema.org/Comment">Comment</a>.).freeze,
|
4276
4472
|
label: "UserTweets".freeze,
|
@@ -4480,6 +4676,14 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
4480
4676
|
label: "WriteAction".freeze,
|
4481
4677
|
subClassOf: "schema:CreateAction".freeze,
|
4482
4678
|
type: "rdfs:Class".freeze
|
4679
|
+
term :XPathType,
|
4680
|
+
comment: %(Text representing an XPath \(typically but not necessarily version 1.0\).).freeze,
|
4681
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1672).freeze,
|
4682
|
+
label: "XPathType".freeze,
|
4683
|
+
:"schema:category" => %(issue-1672).freeze,
|
4684
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
4685
|
+
subClassOf: "schema:Text".freeze,
|
4686
|
+
type: "rdfs:Class".freeze
|
4483
4687
|
term :Zoo,
|
4484
4688
|
comment: %(A zoo.).freeze,
|
4485
4689
|
label: "Zoo".freeze,
|
@@ -4673,6 +4877,16 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
4673
4877
|
label: "actionStatus".freeze,
|
4674
4878
|
rangeIncludes: "schema:ActionStatusType".freeze,
|
4675
4879
|
type: "rdf:Property".freeze
|
4880
|
+
property :actionableFeedbackPolicy,
|
4881
|
+
comment: %(For a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a> or other news-related <a class="localLink" href="http://schema.org/Organization">Organization</a>, a statement about public engagement activities \(for news media, the newsroom’s\), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.).freeze,
|
4882
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
4883
|
+
domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze],
|
4884
|
+
label: "actionableFeedbackPolicy".freeze,
|
4885
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
4886
|
+
:"schema:category" => %(issue-1525).freeze,
|
4887
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
4888
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
4889
|
+
type: "rdf:Property".freeze
|
4676
4890
|
property :activeIngredient,
|
4677
4891
|
comment: %(An active ingredient, typically chemical compounds and/or biologic substances.).freeze,
|
4678
4892
|
domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze, "schema:DrugStrength".freeze, "schema:Substance".freeze],
|
@@ -4807,6 +5021,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
4807
5021
|
rangeIncludes: "schema:Organization".freeze,
|
4808
5022
|
subPropertyOf: "schema:memberOf".freeze,
|
4809
5023
|
type: "rdf:Property".freeze
|
5024
|
+
property :afterMedia,
|
5025
|
+
comment: %(A media object representing the circumstances after performing this direction.).freeze,
|
5026
|
+
domainIncludes: "schema:HowToDirection".freeze,
|
5027
|
+
label: "afterMedia".freeze,
|
5028
|
+
rangeIncludes: "schema:MediaObject".freeze,
|
5029
|
+
type: "rdf:Property".freeze
|
4810
5030
|
property :agent,
|
4811
5031
|
comment: %(The direct performer or driver of the action \(animate or inanimate\). e.g. <em>John</em> wrote a book.).freeze,
|
4812
5032
|
domainIncludes: "schema:Action".freeze,
|
@@ -5247,8 +5467,8 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
5247
5467
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
5248
5468
|
type: "rdf:Property".freeze
|
5249
5469
|
property :availableLanguage,
|
5250
|
-
comment: %(A language someone may use with the item. Please use one of the language codes from the <a href="http://tools.ietf.org/html/bcp47">IETF BCP 47 standard</a>. See also <a class="localLink" href="http://schema.org/inLanguage">inLanguage</a>).freeze,
|
5251
|
-
domainIncludes: ["schema:ContactPoint".freeze, "schema:LodgingBusiness".freeze, "schema:ServiceChannel".freeze],
|
5470
|
+
comment: %(A language someone may use with or at the item, service or place. Please use one of the language codes from the <a href="http://tools.ietf.org/html/bcp47">IETF BCP 47 standard</a>. See also <a class="localLink" href="http://schema.org/inLanguage">inLanguage</a>).freeze,
|
5471
|
+
domainIncludes: ["schema:ContactPoint".freeze, "schema:LodgingBusiness".freeze, "schema:ServiceChannel".freeze, "schema:TouristAttraction".freeze],
|
5252
5472
|
label: "availableLanguage".freeze,
|
5253
5473
|
rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze],
|
5254
5474
|
type: "rdf:Property".freeze
|
@@ -5327,6 +5547,13 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
5327
5547
|
label: "baseSalary".freeze,
|
5328
5548
|
rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze, "schema:PriceSpecification".freeze],
|
5329
5549
|
type: "rdf:Property".freeze
|
5550
|
+
property :bccRecipient,
|
5551
|
+
comment: %(A sub property of recipient. The recipient blind copied on a message.).freeze,
|
5552
|
+
domainIncludes: "schema:Message".freeze,
|
5553
|
+
label: "bccRecipient".freeze,
|
5554
|
+
rangeIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
5555
|
+
subPropertyOf: "schema:recipient".freeze,
|
5556
|
+
type: "rdf:Property".freeze
|
5330
5557
|
property :bed,
|
5331
5558
|
comment: %(The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.
|
5332
5559
|
If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.).freeze,
|
@@ -5335,6 +5562,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
5335
5562
|
label: "bed".freeze,
|
5336
5563
|
rangeIncludes: ["schema:BedDetails".freeze, "schema:BedType".freeze, "schema:Text".freeze],
|
5337
5564
|
type: "rdf:Property".freeze
|
5565
|
+
property :beforeMedia,
|
5566
|
+
comment: %(A media object representing the circumstances before performing this direction.).freeze,
|
5567
|
+
domainIncludes: "schema:HowToDirection".freeze,
|
5568
|
+
label: "beforeMedia".freeze,
|
5569
|
+
rangeIncludes: "schema:MediaObject".freeze,
|
5570
|
+
type: "rdf:Property".freeze
|
5338
5571
|
property :beneficiaryBank,
|
5339
5572
|
comment: %(A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary).freeze,
|
5340
5573
|
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO).freeze, %(https://github.com/schemaorg/schemaorg/issues/1253).freeze],
|
@@ -5641,6 +5874,33 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
5641
5874
|
label: "byArtist".freeze,
|
5642
5875
|
rangeIncludes: "schema:MusicGroup".freeze,
|
5643
5876
|
type: "rdf:Property".freeze
|
5877
|
+
property :byDay,
|
5878
|
+
comment: %(Defines the day\(s\) of the week on which a recurring <a class="localLink" href="http://schema.org/Event">Event</a> takes place).freeze,
|
5879
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
5880
|
+
domainIncludes: "schema:Schedule".freeze,
|
5881
|
+
label: "byDay".freeze,
|
5882
|
+
rangeIncludes: "schema:DayOfWeek".freeze,
|
5883
|
+
:"schema:category" => %(issue-1457).freeze,
|
5884
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
5885
|
+
type: "rdf:Property".freeze
|
5886
|
+
property :byMonth,
|
5887
|
+
comment: %(Defines the month\(s\) of the year on which a recurring <a class="localLink" href="http://schema.org/Event">Event</a> takes place. Specified as an <a class="localLink" href="http://schema.org/Integer">Integer</a> between 1-12. January is 1.).freeze,
|
5888
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
5889
|
+
domainIncludes: "schema:Schedule".freeze,
|
5890
|
+
label: "byMonth".freeze,
|
5891
|
+
rangeIncludes: "schema:Integer".freeze,
|
5892
|
+
:"schema:category" => %(issue-1457).freeze,
|
5893
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
5894
|
+
type: "rdf:Property".freeze
|
5895
|
+
property :byMonthDay,
|
5896
|
+
comment: %(Defines the day\(s\) of the month on which a recurring <a class="localLink" href="http://schema.org/Event">Event</a> takes place. Specified as an <a class="localLink" href="http://schema.org/Integer">Integer</a> between 1-31.).freeze,
|
5897
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
5898
|
+
domainIncludes: "schema:Schedule".freeze,
|
5899
|
+
label: "byMonthDay".freeze,
|
5900
|
+
rangeIncludes: "schema:Integer".freeze,
|
5901
|
+
:"schema:category" => %(issue-1457).freeze,
|
5902
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
5903
|
+
type: "rdf:Property".freeze
|
5644
5904
|
property :calories,
|
5645
5905
|
comment: %(The number of calories.).freeze,
|
5646
5906
|
domainIncludes: "schema:NutritionInformation".freeze,
|
@@ -5733,6 +5993,13 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
5733
5993
|
rangeIncludes: "schema:MedicalEntity".freeze,
|
5734
5994
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
5735
5995
|
type: "rdf:Property".freeze
|
5996
|
+
property :ccRecipient,
|
5997
|
+
comment: %(A sub property of recipient. The recipient copied on a message.).freeze,
|
5998
|
+
domainIncludes: "schema:Message".freeze,
|
5999
|
+
label: "ccRecipient".freeze,
|
6000
|
+
rangeIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
6001
|
+
subPropertyOf: "schema:recipient".freeze,
|
6002
|
+
type: "rdf:Property".freeze
|
5736
6003
|
property :character,
|
5737
6004
|
comment: %(Fictional person connected with a creative work.).freeze,
|
5738
6005
|
domainIncludes: "schema:CreativeWork".freeze,
|
@@ -6096,6 +6363,7 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6096
6363
|
domainIncludes: "schema:Recipe".freeze,
|
6097
6364
|
label: "cookTime".freeze,
|
6098
6365
|
rangeIncludes: "schema:Duration".freeze,
|
6366
|
+
subPropertyOf: "schema:performTime".freeze,
|
6099
6367
|
type: "rdf:Property".freeze
|
6100
6368
|
property :cookingMethod,
|
6101
6369
|
comment: %(The method of cooking, such as Frying, Steaming, ...).freeze,
|
@@ -6115,6 +6383,16 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6115
6383
|
label: "copyrightYear".freeze,
|
6116
6384
|
rangeIncludes: "schema:Number".freeze,
|
6117
6385
|
type: "rdf:Property".freeze
|
6386
|
+
property :correctionsPolicy,
|
6387
|
+
comment: %(For an <a class="localLink" href="http://schema.org/Organization">Organization</a> \(e.g. <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>\), a statement describing \(in news media, the newsroom’s\) disclosure and correction policy for errors.).freeze,
|
6388
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
6389
|
+
domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze],
|
6390
|
+
label: "correctionsPolicy".freeze,
|
6391
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
6392
|
+
:"schema:category" => %(issue-1525).freeze,
|
6393
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
6394
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
6395
|
+
type: "rdf:Property".freeze
|
6118
6396
|
property :cost,
|
6119
6397
|
comment: %(Cost per unit of the drug, as reported by the source being tagged.).freeze,
|
6120
6398
|
domainIncludes: "schema:Drug".freeze,
|
@@ -6178,27 +6456,21 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6178
6456
|
type: "rdf:Property".freeze
|
6179
6457
|
property :courseCode,
|
6180
6458
|
comment: %(The identifier for the <a class="localLink" href="http://schema.org/Course">Course</a> used by the course <a class="localLink" href="http://schema.org/provider">provider</a> \(e.g. CS101 or 6.001\).).freeze,
|
6181
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
6182
6459
|
domainIncludes: "schema:Course".freeze,
|
6183
6460
|
label: "courseCode".freeze,
|
6184
6461
|
rangeIncludes: "schema:Text".freeze,
|
6185
|
-
:"schema:category" => %(issue-195).freeze,
|
6186
6462
|
type: "rdf:Property".freeze
|
6187
6463
|
property :courseMode,
|
6188
6464
|
comment: %(The medium or means of delivery of the course instance or the mode of study, either as a text label \(e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time"\) or as a URL reference to a term from a controlled vocabulary \(e.g. https://ceds.ed.gov/element/001311#Asynchronous \).).freeze,
|
6189
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
6190
6465
|
domainIncludes: "schema:CourseInstance".freeze,
|
6191
6466
|
label: "courseMode".freeze,
|
6192
6467
|
rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
|
6193
|
-
:"schema:category" => %(issue-195).freeze,
|
6194
6468
|
type: "rdf:Property".freeze
|
6195
6469
|
property :coursePrerequisites,
|
6196
6470
|
comment: %(Requirements for taking the Course. May be completion of another <a class="localLink" href="http://schema.org/Course">Course</a> or a textual description like "permission of instructor". Requirements may be a pre-requisite competency, referenced using <a class="localLink" href="http://schema.org/AlignmentObject">AlignmentObject</a>.).freeze,
|
6197
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
6198
6471
|
domainIncludes: "schema:Course".freeze,
|
6199
6472
|
label: "coursePrerequisites".freeze,
|
6200
6473
|
rangeIncludes: ["schema:AlignmentObject".freeze, "schema:Course".freeze, "schema:Text".freeze],
|
6201
|
-
:"schema:category" => %(issue-195).freeze,
|
6202
6474
|
type: "rdf:Property".freeze
|
6203
6475
|
property :coverageEndTime,
|
6204
6476
|
comment: %(The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.).freeze,
|
@@ -6230,7 +6502,7 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6230
6502
|
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1389).freeze,
|
6231
6503
|
domainIncludes: "schema:SpeakableSpecification".freeze,
|
6232
6504
|
label: "cssSelector".freeze,
|
6233
|
-
rangeIncludes: "schema:
|
6505
|
+
rangeIncludes: "schema:CssSelectorType".freeze,
|
6234
6506
|
:"schema:category" => %(issue-1389).freeze,
|
6235
6507
|
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
6236
6508
|
type: "rdf:Property".freeze
|
@@ -6345,7 +6617,7 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6345
6617
|
rangeIncludes: "schema:Date".freeze,
|
6346
6618
|
type: "rdf:Property".freeze
|
6347
6619
|
property :dateline,
|
6348
|
-
comment: %(
|
6620
|
+
comment: %(A <a href="https://en.wikipedia.org/wiki/Dateline">dateline</a> is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.).freeze,
|
6349
6621
|
domainIncludes: "schema:NewsArticle".freeze,
|
6350
6622
|
label: "dateline".freeze,
|
6351
6623
|
rangeIncludes: "schema:Text".freeze,
|
@@ -6587,6 +6859,15 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6587
6859
|
label: "distribution".freeze,
|
6588
6860
|
rangeIncludes: "schema:DataDownload".freeze,
|
6589
6861
|
type: "rdf:Property".freeze
|
6862
|
+
property :diversityPolicy,
|
6863
|
+
comment: %(Statement on diversity policy by an <a class="localLink" href="http://schema.org/Organization">Organization</a> e.g. a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>. For a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>, a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.).freeze,
|
6864
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
6865
|
+
domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze],
|
6866
|
+
label: "diversityPolicy".freeze,
|
6867
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
6868
|
+
:"schema:category" => %(issue-1525).freeze,
|
6869
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
6870
|
+
type: "rdf:Property".freeze
|
6590
6871
|
property :documentation,
|
6591
6872
|
comment: %(Further documentation describing the Web API in more detail.).freeze,
|
6592
6873
|
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1423).freeze,
|
@@ -6742,6 +7023,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
6742
7023
|
label: "durationOfWarranty".freeze,
|
6743
7024
|
rangeIncludes: "schema:QuantitativeValue".freeze,
|
6744
7025
|
type: "rdf:Property".freeze
|
7026
|
+
property :duringMedia,
|
7027
|
+
comment: %(A media object representing the circumstances while performing this direction.).freeze,
|
7028
|
+
domainIncludes: "schema:HowToDirection".freeze,
|
7029
|
+
label: "duringMedia".freeze,
|
7030
|
+
rangeIncludes: "schema:MediaObject".freeze,
|
7031
|
+
type: "rdf:Property".freeze
|
6745
7032
|
property :earlyPrepaymentPenalty,
|
6746
7033
|
comment: %(The amount to be paid as a penalty in the event of early payment of the loan.).freeze,
|
6747
7034
|
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO).freeze, %(https://github.com/schemaorg/schemaorg/issues/1253).freeze],
|
@@ -7022,12 +7309,27 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
7022
7309
|
label: "error".freeze,
|
7023
7310
|
rangeIncludes: "schema:Thing".freeze,
|
7024
7311
|
type: "rdf:Property".freeze
|
7312
|
+
property :estimatedCost,
|
7313
|
+
comment: %(The estimated cost of the supply or supplies consumed when performing instructions.).freeze,
|
7314
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToSupply".freeze],
|
7315
|
+
label: "estimatedCost".freeze,
|
7316
|
+
rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Text".freeze],
|
7317
|
+
type: "rdf:Property".freeze
|
7025
7318
|
property :estimatedFlightDuration,
|
7026
7319
|
comment: %(The estimated time the flight will take.).freeze,
|
7027
7320
|
domainIncludes: "schema:Flight".freeze,
|
7028
7321
|
label: "estimatedFlightDuration".freeze,
|
7029
7322
|
rangeIncludes: ["schema:Duration".freeze, "schema:Text".freeze],
|
7030
7323
|
type: "rdf:Property".freeze
|
7324
|
+
property :estimatedSalary,
|
7325
|
+
comment: %(A property describing the estimated salary for a job posting based on a variety of variables including, but not limited to industry, job title, and location. The estimated salary is usually computed by outside organizations and therefore the hiring organization is not bound to this estimated salary.).freeze,
|
7326
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1577).freeze,
|
7327
|
+
domainIncludes: "schema:JobPosting".freeze,
|
7328
|
+
label: "estimatedSalary".freeze,
|
7329
|
+
rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze, "schema:PriceSpecification".freeze],
|
7330
|
+
:"schema:category" => %(issue-1577).freeze,
|
7331
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
7332
|
+
type: "rdf:Property".freeze
|
7031
7333
|
property :estimatesRiskOf,
|
7032
7334
|
comment: %(The condition, complication, or symptom whose risk is being estimated.).freeze,
|
7033
7335
|
domainIncludes: "schema:MedicalRiskEstimator".freeze,
|
@@ -7035,12 +7337,35 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
7035
7337
|
rangeIncludes: "schema:MedicalEntity".freeze,
|
7036
7338
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
7037
7339
|
type: "rdf:Property".freeze
|
7340
|
+
property :ethicsPolicy,
|
7341
|
+
comment: %(Statement about ethics policy, e.g. of a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a> regarding journalistic and publishing practices, or of a <a class="localLink" href="http://schema.org/Restaurant">Restaurant</a>, a page describing food source policies. In the case of a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>, an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.).freeze,
|
7342
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1525).freeze,
|
7343
|
+
domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze],
|
7344
|
+
label: "ethicsPolicy".freeze,
|
7345
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
7346
|
+
:"schema:category" => %(issue-1525).freeze,
|
7347
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
7348
|
+
type: "rdf:Property".freeze
|
7038
7349
|
property :event,
|
7039
7350
|
comment: %(Upcoming or past event associated with this place, organization, or action.).freeze,
|
7040
7351
|
domainIncludes: ["schema:InformAction".freeze, "schema:InviteAction".freeze, "schema:JoinAction".freeze, "schema:LeaveAction".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:PlayAction".freeze],
|
7041
7352
|
label: "event".freeze,
|
7042
7353
|
rangeIncludes: "schema:Event".freeze,
|
7043
7354
|
type: "rdf:Property".freeze
|
7355
|
+
property :eventSchedule,
|
7356
|
+
comment: %(Associates an <a class="localLink" href="http://schema.org/Event">Event</a> with a <a class="localLink" href="http://schema.org/Schedule">Schedule</a>. There are circumstances where it is preferable to share a schedule for a series of
|
7357
|
+
repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly
|
7358
|
+
gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An <a class="localLink" href="http://schema.org/Event">Event</a> that
|
7359
|
+
is associated with a <a class="localLink" href="http://schema.org/Schedule">Schedule</a> using this property should not have <a class="localLink" href="http://schema.org/startDate">startDate</a> or <a class="localLink" href="http://schema.org/endDate">endDate</a> properties. These are instead defined within the associated
|
7360
|
+
<a class="localLink" href="http://schema.org/Schedule">Schedule</a>, this avoids any ambiguity for clients using the data. The propery might have repeated values to specify different schedules, e.g. for different months
|
7361
|
+
or seasons.).freeze,
|
7362
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
7363
|
+
domainIncludes: "schema:Schedule".freeze,
|
7364
|
+
label: "eventSchedule".freeze,
|
7365
|
+
rangeIncludes: "schema:Duration".freeze,
|
7366
|
+
:"schema:category" => %(issue-1457).freeze,
|
7367
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
7368
|
+
type: "rdf:Property".freeze
|
7044
7369
|
property :eventStatus,
|
7045
7370
|
comment: %(An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.).freeze,
|
7046
7371
|
domainIncludes: "schema:Event".freeze,
|
@@ -7076,6 +7401,18 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
7076
7401
|
label: "exampleOfWork".freeze,
|
7077
7402
|
rangeIncludes: "schema:CreativeWork".freeze,
|
7078
7403
|
type: "rdf:Property".freeze
|
7404
|
+
property :exceptDate,
|
7405
|
+
comment: %(Defines a <a class="localLink" href="http://schema.org/Date">Date</a> or <a class="localLink" href="http://schema.org/DateTime">DateTime</a> during which a scheduled <a class="localLink" href="http://schema.org/Event">Event</a> will not take place. The property allows exceptions to
|
7406
|
+
a <a class="localLink" href="http://schema.org/Schedule">Schedule</a> to be specified. If an exception is specified as a <a class="localLink" href="http://schema.org/DateTime">DateTime</a> then only the event that would have started at that specific date and time
|
7407
|
+
should be excluded from the schedule. If an exception is specified as a <a class="localLink" href="http://schema.org/Date">Date</a> then any event that is scheduled for that 24 hour period should be
|
7408
|
+
excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.).freeze,
|
7409
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
7410
|
+
domainIncludes: "schema:Schedule".freeze,
|
7411
|
+
label: "exceptDate".freeze,
|
7412
|
+
rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze],
|
7413
|
+
:"schema:category" => %(issue-1457).freeze,
|
7414
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
7415
|
+
type: "rdf:Property".freeze
|
7079
7416
|
property :exchangeRate,
|
7080
7417
|
comment: %(The price of a currency in terms of another currency.).freeze,
|
7081
7418
|
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO).freeze, %(https://github.com/schemaorg/schemaorg/issues/1253).freeze],
|
@@ -7174,8 +7511,8 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
|
|
7174
7511
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
7175
7512
|
type: "rdf:Property".freeze
|
7176
7513
|
property :expires,
|
7177
|
-
comment: %(Date the content expires and is no longer useful or available.
|
7178
|
-
domainIncludes: "schema:
|
7514
|
+
comment: %(Date the content expires and is no longer useful or available. For example a <a class="localLink" href="http://schema.org/VideoObject">VideoObject</a> or <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a> whose availability or relevance is time-limited, or a <a class="localLink" href="http://schema.org/ClaimReview">ClaimReview</a> fact check whose publisher wants to indicate that it may no longer be relevant \(or helpful to highlight\) after some date.).freeze,
|
7515
|
+
domainIncludes: "schema:CreativeWork".freeze,
|
7179
7516
|
label: "expires".freeze,
|
7180
7517
|
rangeIncludes: "schema:Date".freeze,
|
7181
7518
|
type: "rdf:Property".freeze
|
@@ -7332,7 +7669,7 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
7332
7669
|
rangeIncludes: "schema:Place".freeze,
|
7333
7670
|
type: "rdf:Property".freeze
|
7334
7671
|
property :free,
|
7335
|
-
comment: %(A flag to signal that the
|
7672
|
+
comment: %(A flag to signal that the item, event, or place is accessible for free.).freeze,
|
7336
7673
|
domainIncludes: "schema:PublicationEvent".freeze,
|
7337
7674
|
label: "free".freeze,
|
7338
7675
|
rangeIncludes: "schema:Boolean".freeze,
|
@@ -7699,11 +8036,9 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
7699
8036
|
type: "rdf:Property".freeze
|
7700
8037
|
property :hasCourseInstance,
|
7701
8038
|
comment: %(An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.).freeze,
|
7702
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
7703
8039
|
domainIncludes: "schema:Course".freeze,
|
7704
8040
|
label: "hasCourseInstance".freeze,
|
7705
8041
|
rangeIncludes: "schema:CourseInstance".freeze,
|
7706
|
-
:"schema:category" => %(issue-195).freeze,
|
7707
8042
|
type: "rdf:Property".freeze
|
7708
8043
|
property :hasDeliveryMethod,
|
7709
8044
|
comment: %(Method used for delivery or shipping.).freeze,
|
@@ -8175,6 +8510,7 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8175
8510
|
label: "ingredients".freeze,
|
8176
8511
|
rangeIncludes: "schema:Text".freeze,
|
8177
8512
|
:"schema:supersededBy" => %(schema:recipeIngredient).freeze,
|
8513
|
+
subPropertyOf: "schema:supply".freeze,
|
8178
8514
|
type: "rdf:Property".freeze
|
8179
8515
|
property :inker,
|
8180
8516
|
comment: %(The individual who traces over the pencil drawings in ink after pencils are complete.).freeze,
|
@@ -8199,11 +8535,9 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8199
8535
|
type: "rdf:Property".freeze
|
8200
8536
|
property :instructor,
|
8201
8537
|
comment: %(A person assigned to instruct or provide instructional assistance for the <a class="localLink" href="http://schema.org/CourseInstance">CourseInstance</a>.).freeze,
|
8202
|
-
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/195).freeze,
|
8203
8538
|
domainIncludes: "schema:CourseInstance".freeze,
|
8204
8539
|
label: "instructor".freeze,
|
8205
8540
|
rangeIncludes: "schema:Person".freeze,
|
8206
|
-
:"schema:category" => %(issue-195).freeze,
|
8207
8541
|
type: "rdf:Property".freeze
|
8208
8542
|
property :instrument,
|
8209
8543
|
comment: %(The object that helped the agent perform the action. e.g. John wrote a book with <em>a pen</em>.).freeze,
|
@@ -8285,8 +8619,8 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8285
8619
|
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8286
8620
|
type: "rdf:Property".freeze
|
8287
8621
|
property :isAccessibleForFree,
|
8288
|
-
comment: %(A flag to signal that the
|
8289
|
-
domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:PublicationEvent".freeze],
|
8622
|
+
comment: %(A flag to signal that the item, event, or place is accessible for free.).freeze,
|
8623
|
+
domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Place".freeze, "schema:PublicationEvent".freeze],
|
8290
8624
|
label: "isAccessibleForFree".freeze,
|
8291
8625
|
rangeIncludes: "schema:Boolean".freeze,
|
8292
8626
|
type: "rdf:Property".freeze
|
@@ -8400,9 +8734,9 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8400
8734
|
rangeIncludes: "schema:Text".freeze,
|
8401
8735
|
type: "rdf:Property".freeze
|
8402
8736
|
property :issn,
|
8403
|
-
comment: %(The International Standard Serial Number \(ISSN\) that identifies this
|
8737
|
+
comment: %(The International Standard Serial Number \(ISSN\) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN \(ISSN-L\) for, this serial publication.).freeze,
|
8404
8738
|
:"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
|
8405
|
-
domainIncludes: "schema:
|
8739
|
+
domainIncludes: ["schema:Blog".freeze, "schema:CreativeWorkSeries".freeze, "schema:Dataset".freeze, "schema:WebSite".freeze],
|
8406
8740
|
label: "issn".freeze,
|
8407
8741
|
:"owl:equivalentProperty" => %(bibo:issn).freeze,
|
8408
8742
|
rangeIncludes: "schema:Text".freeze,
|
@@ -8573,6 +8907,195 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8573
8907
|
rangeIncludes: ["schema:DrugLegalStatus".freeze, "schema:MedicalEnumeration".freeze, "schema:Text".freeze],
|
8574
8908
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
8575
8909
|
type: "rdf:Property".freeze
|
8910
|
+
property :legislationAppliedBy,
|
8911
|
+
comment: %(Indicates that this legislation \(or part of a legislation\) is somehow transfered by another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the property <a href="/legislationTransposedBy">legislationTransposedBy</a>. For example the informative consolidated version of the European Directive is somehow "applied by" an informative consolidated law in a European Union's member state.).freeze,
|
8912
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8913
|
+
domainIncludes: "schema:Legislation".freeze,
|
8914
|
+
inverseOf: "schema:legislationApplies".freeze,
|
8915
|
+
label: "legislationAppliedBy".freeze,
|
8916
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#implemented_by).freeze,
|
8917
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8918
|
+
:"schema:category" => %(issue-1156).freeze,
|
8919
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8920
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#implemented_by).freeze,
|
8921
|
+
type: "rdf:Property".freeze
|
8922
|
+
property :legislationApplies,
|
8923
|
+
comment: %(Indicates that this legislation \(or part of a legislation\) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the <a href="/legislationTransposes">legislationTransposes</a> property. For example an informative consolidated law of a European Union's member state "applies" the consolidated version of the European Directive implemented in it.).freeze,
|
8924
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8925
|
+
domainIncludes: "schema:Legislation".freeze,
|
8926
|
+
inverseOf: "schema:legislationAppliedBy".freeze,
|
8927
|
+
label: "legislationApplies".freeze,
|
8928
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#implements).freeze,
|
8929
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8930
|
+
:"schema:category" => %(issue-1156).freeze,
|
8931
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8932
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#implements).freeze,
|
8933
|
+
type: "rdf:Property".freeze
|
8934
|
+
property :legislationChangedBy,
|
8935
|
+
comment: %(Another legislation that changes this legislation. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change \(textual or non-textual amendment\) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the <a href="/legislationConsolidatedBy">legislationConsolidatedBy</a> property.).freeze,
|
8936
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8937
|
+
domainIncludes: "schema:Legislation".freeze,
|
8938
|
+
inverseOf: "schema:legislationChanges".freeze,
|
8939
|
+
label: "legislationChangedBy".freeze,
|
8940
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#changed_by).freeze,
|
8941
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8942
|
+
:"schema:category" => %(issue-1156).freeze,
|
8943
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8944
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#changed_by).freeze,
|
8945
|
+
type: "rdf:Property".freeze
|
8946
|
+
property :legislationChanges,
|
8947
|
+
comment: %(Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change \(textual or non-textual amendment\) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the <a href="/legislationConsolidates">legislationConsolidates</a> property.).freeze,
|
8948
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8949
|
+
domainIncludes: "schema:Legislation".freeze,
|
8950
|
+
inverseOf: "schema:legislationChangedBy".freeze,
|
8951
|
+
label: "legislationChanges".freeze,
|
8952
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#changes).freeze,
|
8953
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8954
|
+
:"schema:category" => %(issue-1156).freeze,
|
8955
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8956
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#changes).freeze,
|
8957
|
+
type: "rdf:Property".freeze
|
8958
|
+
property :legislationConsolidatedBy,
|
8959
|
+
comment: %(Indicates a consolidated legislation \(which is usually the product of an editorial process that revises the legislation\) that take into account this legislation.).freeze,
|
8960
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8961
|
+
domainIncludes: "schema:Legislation".freeze,
|
8962
|
+
inverseOf: "schema:legislationConsolidates".freeze,
|
8963
|
+
label: "legislationConsolidatedBy".freeze,
|
8964
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#consolidated_by).freeze,
|
8965
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8966
|
+
:"schema:category" => %(issue-1156).freeze,
|
8967
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8968
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#consolidated_by).freeze,
|
8969
|
+
type: "rdf:Property".freeze
|
8970
|
+
property :legislationConsolidates,
|
8971
|
+
comment: %(Indicates another legislation taken into account in this consolidated legislation \(which is usually the product of an editorial process that revises the legislation\). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.).freeze,
|
8972
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8973
|
+
domainIncludes: "schema:Legislation".freeze,
|
8974
|
+
inverseOf: "schema:legislationConsolidatedBy".freeze,
|
8975
|
+
label: "legislationConsolidates".freeze,
|
8976
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#consolidates).freeze,
|
8977
|
+
rangeIncludes: "schema:Legislation".freeze,
|
8978
|
+
:"schema:category" => %(issue-1156).freeze,
|
8979
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8980
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#consolidates).freeze,
|
8981
|
+
type: "rdf:Property".freeze
|
8982
|
+
property :legislationDate,
|
8983
|
+
comment: %(The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.).freeze,
|
8984
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8985
|
+
domainIncludes: "schema:Legislation".freeze,
|
8986
|
+
label: "legislationDate".freeze,
|
8987
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#date_document).freeze,
|
8988
|
+
rangeIncludes: "schema:Date".freeze,
|
8989
|
+
:"schema:category" => %(issue-1156).freeze,
|
8990
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
8991
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#date_document).freeze,
|
8992
|
+
subPropertyOf: "schema:dateCreated".freeze,
|
8993
|
+
type: "rdf:Property".freeze
|
8994
|
+
property :legislationDateVersion,
|
8995
|
+
comment: %(The point-in-time at which the provided description of the legislation is valid \(e.g. : when looking at the law on the 2016-04-07 \(= dateVersion\), I get the consolidation of 2015-04-12 of the "National Insurance Contributions Act 2015"\)).freeze,
|
8996
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
8997
|
+
domainIncludes: "schema:Legislation".freeze,
|
8998
|
+
label: "legislationDateVersion".freeze,
|
8999
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#version_date).freeze,
|
9000
|
+
rangeIncludes: "schema:Date".freeze,
|
9001
|
+
:"schema:category" => %(issue-1156).freeze,
|
9002
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9003
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#version_date).freeze,
|
9004
|
+
type: "rdf:Property".freeze
|
9005
|
+
property :legislationIdentifier,
|
9006
|
+
comment: %(An identifier for the legislation. For example the CELEX at EU level, the NOR in France, or the ELI \(European Legislation Identifier\).).freeze,
|
9007
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9008
|
+
domainIncludes: "schema:Legislation".freeze,
|
9009
|
+
label: "legislationIdentifier".freeze,
|
9010
|
+
rangeIncludes: "schema:Text".freeze,
|
9011
|
+
:"schema:category" => %(issue-1156).freeze,
|
9012
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9013
|
+
:"skos:closeMatch" => %(http://data.europa.eu/eli/ontology#id_local).freeze,
|
9014
|
+
subPropertyOf: "schema:identifier".freeze,
|
9015
|
+
type: "rdf:Property".freeze
|
9016
|
+
property :legislationLegalForce,
|
9017
|
+
comment: %(Whether the legislation is currently in force, not in force, or partially in force.).freeze,
|
9018
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9019
|
+
domainIncludes: "schema:Legislation".freeze,
|
9020
|
+
label: "legislationLegalForce".freeze,
|
9021
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#in_force).freeze,
|
9022
|
+
rangeIncludes: "schema:LegalForceStatus".freeze,
|
9023
|
+
:"schema:category" => %(issue-1156).freeze,
|
9024
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9025
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#in_force).freeze,
|
9026
|
+
type: "rdf:Property".freeze
|
9027
|
+
property :legislationLegalValue,
|
9028
|
+
comment: %(The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a "stronger" legal value than the HTML file of the same act.).freeze,
|
9029
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9030
|
+
domainIncludes: "schema:LegislationObject".freeze,
|
9031
|
+
label: "legislationLegalValue".freeze,
|
9032
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#legal_value).freeze,
|
9033
|
+
rangeIncludes: "schema:LegalValueLevel".freeze,
|
9034
|
+
:"schema:category" => %(issue-1156).freeze,
|
9035
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9036
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#legal_value).freeze,
|
9037
|
+
type: "rdf:Property".freeze
|
9038
|
+
property :legislationPassedBy,
|
9039
|
+
comment: %(The person or organization that originally passed or made the law : typically parliament \(for primary legislation\) or government \(for secondary legislation\). This indicates the "legal author" of the law, as opposed to its physical author.).freeze,
|
9040
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9041
|
+
domainIncludes: "schema:Legislation".freeze,
|
9042
|
+
label: "legislationPassedBy".freeze,
|
9043
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#passed_by).freeze,
|
9044
|
+
rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
|
9045
|
+
:"schema:category" => %(issue-1156).freeze,
|
9046
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9047
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#passed_by).freeze,
|
9048
|
+
subPropertyOf: "schema:creator".freeze,
|
9049
|
+
type: "rdf:Property".freeze
|
9050
|
+
property :legislationResponsible,
|
9051
|
+
comment: %(An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.).freeze,
|
9052
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9053
|
+
domainIncludes: "schema:Legislation".freeze,
|
9054
|
+
label: "legislationResponsible".freeze,
|
9055
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#responsibility_of).freeze,
|
9056
|
+
rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
|
9057
|
+
:"schema:category" => %(issue-1156).freeze,
|
9058
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9059
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#responsibility_of).freeze,
|
9060
|
+
type: "rdf:Property".freeze
|
9061
|
+
property :legislationTransposedBy,
|
9062
|
+
comment: %(Indicates that the objectives set by this legislation \(or part of legislation\) are fulfilled by another legislation who passed appropriate implementation measures. Typically, European Directives are transposed by the legislations of European Union's member states or regions. This indicates a legally binding link between the 2 legislations.).freeze,
|
9063
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9064
|
+
domainIncludes: "schema:Legislation".freeze,
|
9065
|
+
inverseOf: "schema:legislationTransposes".freeze,
|
9066
|
+
label: "legislationTransposedBy".freeze,
|
9067
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#transposed_by).freeze,
|
9068
|
+
rangeIncludes: "schema:Legislation".freeze,
|
9069
|
+
:"schema:category" => %(issue-1156).freeze,
|
9070
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9071
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#transposed_by).freeze,
|
9072
|
+
subPropertyOf: "schema:legislationAppliedBy".freeze,
|
9073
|
+
type: "rdf:Property".freeze
|
9074
|
+
property :legislationTransposes,
|
9075
|
+
comment: %(Indicates that this legislation \(or part of legislation\) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.).freeze,
|
9076
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9077
|
+
domainIncludes: "schema:Legislation".freeze,
|
9078
|
+
inverseOf: "schema:legislationTransposedBy".freeze,
|
9079
|
+
label: "legislationTransposes".freeze,
|
9080
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#transposes).freeze,
|
9081
|
+
rangeIncludes: "schema:Legislation".freeze,
|
9082
|
+
:"schema:category" => %(issue-1156).freeze,
|
9083
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9084
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#transposes).freeze,
|
9085
|
+
subPropertyOf: "schema:legislationApplies".freeze,
|
9086
|
+
type: "rdf:Property".freeze
|
9087
|
+
property :legislationType,
|
9088
|
+
comment: %(The type of the legislation. Examples of values are "law", "act", "directive", "decree", "regulation", "statutory instrument", "loi organique", "règlement grand-ducal", etc., depending on the country.).freeze,
|
9089
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
9090
|
+
domainIncludes: "schema:Legislation".freeze,
|
9091
|
+
label: "legislationType".freeze,
|
9092
|
+
:"owl:equivalentProperty" => %(http://data.europa.eu/eli/ontology#type_document).freeze,
|
9093
|
+
rangeIncludes: ["schema:CategoryCode".freeze, "schema:Text".freeze],
|
9094
|
+
:"schema:category" => %(issue-1156).freeze,
|
9095
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9096
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#type_document).freeze,
|
9097
|
+
subPropertyOf: "schema:genre".freeze,
|
9098
|
+
type: "rdf:Property".freeze
|
8576
9099
|
property :leiCode,
|
8577
9100
|
comment: %(An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.).freeze,
|
8578
9101
|
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO).freeze, %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF).freeze],
|
@@ -8767,6 +9290,7 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8767
9290
|
inverseOf: "schema:mainEntityOfPage".freeze,
|
8768
9291
|
label: "mainEntity".freeze,
|
8769
9292
|
rangeIncludes: "schema:Thing".freeze,
|
9293
|
+
subPropertyOf: "schema:about".freeze,
|
8770
9294
|
type: "rdf:Property".freeze
|
8771
9295
|
property :mainEntityOfPage,
|
8772
9296
|
comment: %(Indicates a page \(or other CreativeWork\) for which this thing is the main entity being described. See <a href="/docs/datamodel.html#mainEntityBackground">background notes</a> for details.).freeze,
|
@@ -8809,6 +9333,16 @@ Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for sq
|
|
8809
9333
|
rangeIncludes: "schema:URL".freeze,
|
8810
9334
|
:"schema:supersededBy" => %(schema:hasMap).freeze,
|
8811
9335
|
type: "rdf:Property".freeze
|
9336
|
+
property :masthead,
|
9337
|
+
comment: %(For a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>, a link to the masthead page or a page listing top editorial management.).freeze,
|
9338
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
9339
|
+
domainIncludes: "schema:NewsMediaOrganization".freeze,
|
9340
|
+
label: "masthead".freeze,
|
9341
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
9342
|
+
:"schema:category" => %(issue-1525).freeze,
|
9343
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9344
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
9345
|
+
type: "rdf:Property".freeze
|
8812
9346
|
property :material,
|
8813
9347
|
comment: %(A material that something is made from, e.g. leather, wool, cotton, paper.).freeze,
|
8814
9348
|
domainIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze],
|
@@ -8990,6 +9524,16 @@ corresponding to the method used for measuring the corresponding variable\(s\) \
|
|
8990
9524
|
label: "minimumPaymentDue".freeze,
|
8991
9525
|
rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:PriceSpecification".freeze],
|
8992
9526
|
type: "rdf:Property".freeze
|
9527
|
+
property :missionCoveragePrioritiesPolicy,
|
9528
|
+
comment: %(For a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>, a statement on coverage priorities, including any public agenda or stance on issues.).freeze,
|
9529
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
9530
|
+
domainIncludes: "schema:NewsMediaOrganization".freeze,
|
9531
|
+
label: "missionCoveragePrioritiesPolicy".freeze,
|
9532
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
9533
|
+
:"schema:category" => %(issue-1525).freeze,
|
9534
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
9535
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
9536
|
+
type: "rdf:Property".freeze
|
8993
9537
|
property :model,
|
8994
9538
|
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,
|
8995
9539
|
domainIncludes: "schema:Product".freeze,
|
@@ -9711,6 +10255,12 @@ Typical unit code\(s\): C62 for person).freeze,
|
|
9711
10255
|
:"schema:category" => %(Comics).freeze,
|
9712
10256
|
:"schema:isPartOf" => %(http://bib.schema.org).freeze,
|
9713
10257
|
type: "rdf:Property".freeze
|
10258
|
+
property :performTime,
|
10259
|
+
comment: %(The length of time it takes to perform instructions or a direction \(not including time to prepare the supplies\), in <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO 8601 duration format</a>.).freeze,
|
10260
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze],
|
10261
|
+
label: "performTime".freeze,
|
10262
|
+
rangeIncludes: "schema:Duration".freeze,
|
10263
|
+
type: "rdf:Property".freeze
|
9714
10264
|
property :performer,
|
9715
10265
|
comment: %(A performer at the event—for example, a presenter, musician, musical group or actor.).freeze,
|
9716
10266
|
domainIncludes: "schema:Event".freeze,
|
@@ -9907,8 +10457,8 @@ Typical unit code\(s\): C62 for person).freeze,
|
|
9907
10457
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
9908
10458
|
type: "rdf:Property".freeze
|
9909
10459
|
property :prepTime,
|
9910
|
-
comment: %(The length of time it takes to prepare the
|
9911
|
-
domainIncludes: "schema:
|
10460
|
+
comment: %(The length of time it takes to prepare the items to be used in instructions or a direction, in <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO 8601 duration format</a>.).freeze,
|
10461
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze],
|
9912
10462
|
label: "prepTime".freeze,
|
9913
10463
|
rangeIncludes: "schema:Duration".freeze,
|
9914
10464
|
type: "rdf:Property".freeze
|
@@ -10180,6 +10730,12 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
10180
10730
|
label: "providesService".freeze,
|
10181
10731
|
rangeIncludes: "schema:Service".freeze,
|
10182
10732
|
type: "rdf:Property".freeze
|
10733
|
+
property :publicAccess,
|
10734
|
+
comment: %(A flag to signal that the <a class="localLink" href="http://schema.org/Place">Place</a> is open to public visitors. If this property is omitted there is no assumed default boolean value).freeze,
|
10735
|
+
domainIncludes: "schema:Place".freeze,
|
10736
|
+
label: "publicAccess".freeze,
|
10737
|
+
rangeIncludes: "schema:Boolean".freeze,
|
10738
|
+
type: "rdf:Property".freeze
|
10183
10739
|
property :publication,
|
10184
10740
|
comment: %(A publication event associated with the item.).freeze,
|
10185
10741
|
domainIncludes: "schema:CreativeWork".freeze,
|
@@ -10221,10 +10777,12 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
10221
10777
|
:"schema:isPartOf" => %(http://bib.schema.org).freeze,
|
10222
10778
|
type: "rdf:Property".freeze
|
10223
10779
|
property :publishingPrinciples,
|
10224
|
-
comment: %(
|
10225
|
-
|
10780
|
+
comment: %(The publishingPrinciples property indicates \(typically via <a class="localLink" href="http://schema.org/URL">URL</a>\) a document describing the editorial principles of an <a class="localLink" href="http://schema.org/Organization">Organization</a> \(or individual e.g. a <a class="localLink" href="http://schema.org/Person">Person</a> writing a blog\) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a <a class="localLink" href="http://schema.org/CreativeWork">CreativeWork</a> \(e.g. <a class="localLink" href="http://schema.org/NewsArticle">NewsArticle</a>\) the principles are those of the party primarily responsible for the creation of the <a class="localLink" href="http://schema.org/CreativeWork">CreativeWork</a>.</p>
|
10781
|
+
|
10782
|
+
<p>While such policies are most typically expressed in natural language, sometimes related information \(e.g. indicating a <a class="localLink" href="http://schema.org/funder">funder</a>\) can be expressed using schema.org terminology.).freeze,
|
10783
|
+
domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
10226
10784
|
label: "publishingPrinciples".freeze,
|
10227
|
-
rangeIncludes: "schema:URL".freeze,
|
10785
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
10228
10786
|
type: "rdf:Property".freeze
|
10229
10787
|
property :purchaseDate,
|
10230
10788
|
comment: %(The date the item e.g. vehicle was purchased by the current owner.).freeze,
|
@@ -10330,24 +10888,27 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
10330
10888
|
domainIncludes: "schema:Recipe".freeze,
|
10331
10889
|
label: "recipeIngredient".freeze,
|
10332
10890
|
rangeIncludes: "schema:Text".freeze,
|
10891
|
+
subPropertyOf: "schema:supply".freeze,
|
10333
10892
|
type: "rdf:Property".freeze
|
10334
10893
|
property :recipeInstructions,
|
10335
|
-
comment: %(A step
|
10894
|
+
comment: %(A step in making the recipe, in the form of a single item \(document, video, etc.\) or an ordered list with HowToStep and/or HowToSection items.).freeze,
|
10336
10895
|
domainIncludes: "schema:Recipe".freeze,
|
10337
10896
|
label: "recipeInstructions".freeze,
|
10338
|
-
rangeIncludes: ["schema:ItemList".freeze, "schema:Text".freeze],
|
10897
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:Text".freeze],
|
10898
|
+
subPropertyOf: "schema:steps".freeze,
|
10339
10899
|
type: "rdf:Property".freeze
|
10340
10900
|
property :recipeYield,
|
10341
10901
|
comment: %(The quantity produced by the recipe \(for example, number of people served, number of servings, etc\).).freeze,
|
10342
10902
|
domainIncludes: "schema:Recipe".freeze,
|
10343
10903
|
label: "recipeYield".freeze,
|
10344
|
-
rangeIncludes: "schema:Text".freeze,
|
10904
|
+
rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze],
|
10905
|
+
subPropertyOf: "schema:yield".freeze,
|
10345
10906
|
type: "rdf:Property".freeze
|
10346
10907
|
property :recipient,
|
10347
10908
|
comment: %(A sub property of participant. The participant who is at the receiving end of the action.).freeze,
|
10348
10909
|
domainIncludes: ["schema:AuthorizeAction".freeze, "schema:CommunicateAction".freeze, "schema:DonateAction".freeze, "schema:GiveAction".freeze, "schema:Message".freeze, "schema:PayAction".freeze, "schema:ReturnAction".freeze, "schema:SendAction".freeze, "schema:TipAction".freeze],
|
10349
10910
|
label: "recipient".freeze,
|
10350
|
-
rangeIncludes: ["schema:Audience".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
10911
|
+
rangeIncludes: ["schema:Audience".freeze, "schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
10351
10912
|
subPropertyOf: "schema:participant".freeze,
|
10352
10913
|
type: "rdf:Property".freeze
|
10353
10914
|
property :recognizingAuthority,
|
@@ -10540,6 +11101,26 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
10540
11101
|
:"schema:category" => %(issue-1253).freeze,
|
10541
11102
|
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
10542
11103
|
type: "rdf:Property".freeze
|
11104
|
+
property :repeatCount,
|
11105
|
+
comment: %(Defines the number of times a recurring <a class="localLink" href="http://schema.org/Event">Event</a> will take place).freeze,
|
11106
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
11107
|
+
domainIncludes: "schema:Schedule".freeze,
|
11108
|
+
label: "repeatCount".freeze,
|
11109
|
+
rangeIncludes: "schema:Integer".freeze,
|
11110
|
+
:"schema:category" => %(issue-1457).freeze,
|
11111
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
11112
|
+
type: "rdf:Property".freeze
|
11113
|
+
property :repeatFrequency,
|
11114
|
+
comment: %(Defines the frequency at which <a class="localLink" href="http://schema.org/Events">Events</a> will occur according to a schedule <a class="localLink" href="http://schema.org/Schedule">Schedule</a>. The intervals between
|
11115
|
+
events should be defined as a <a class="localLink" href="http://schema.org/Duration">Duration</a> of time.).freeze,
|
11116
|
+
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1457).freeze,
|
11117
|
+
domainIncludes: "schema:Schedule".freeze,
|
11118
|
+
label: "repeatFrequency".freeze,
|
11119
|
+
rangeIncludes: ["schema:Duration".freeze, "schema:Text".freeze],
|
11120
|
+
:"schema:category" => %(issue-1457).freeze,
|
11121
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
11122
|
+
subPropertyOf: "http://health-lifesci.schema.org/frequency".freeze,
|
11123
|
+
type: "rdf:Property".freeze
|
10543
11124
|
property :repetitions,
|
10544
11125
|
comment: %(Number of times one should repeat the activity.).freeze,
|
10545
11126
|
domainIncludes: "schema:ExercisePlan".freeze,
|
@@ -10604,6 +11185,12 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
10604
11185
|
label: "requiredMinAge".freeze,
|
10605
11186
|
rangeIncludes: "schema:Integer".freeze,
|
10606
11187
|
type: "rdf:Property".freeze
|
11188
|
+
property :requiredQuantity,
|
11189
|
+
comment: %(The required quantity of the item\(s\).).freeze,
|
11190
|
+
domainIncludes: "schema:HowToItem".freeze,
|
11191
|
+
label: "requiredQuantity".freeze,
|
11192
|
+
rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze, "schema:Text".freeze],
|
11193
|
+
type: "rdf:Property".freeze
|
10607
11194
|
property :requirements,
|
10608
11195
|
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,
|
10609
11196
|
domainIncludes: "schema:SoftwareApplication".freeze,
|
@@ -11193,7 +11780,7 @@ Standards bodies should promote a standard prefix for the identifiers of propert
|
|
11193
11780
|
<p>For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section\(s\) as speakable. For this
|
11194
11781
|
we define a supporting type, <a class="localLink" href="http://schema.org/SpeakableSpecification">SpeakableSpecification</a> which is defined to be a possible value of the <em>speakable</em> property.).freeze,
|
11195
11782
|
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1389).freeze,
|
11196
|
-
domainIncludes: "schema:WebPage".freeze,
|
11783
|
+
domainIncludes: ["schema:Article".freeze, "schema:WebPage".freeze],
|
11197
11784
|
label: "speakable".freeze,
|
11198
11785
|
rangeIncludes: ["schema:SpeakableSpecification".freeze, "schema:URL".freeze],
|
11199
11786
|
:"schema:category" => %(issue-1389).freeze,
|
@@ -11335,6 +11922,12 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11335
11922
|
label: "stepValue".freeze,
|
11336
11923
|
rangeIncludes: "schema:Number".freeze,
|
11337
11924
|
type: "rdf:Property".freeze
|
11925
|
+
property :steps,
|
11926
|
+
comment: %(The steps in the form of a single item \(text, document, video, etc.\) or an ordered list with HowToStep and/or HowToSection items.).freeze,
|
11927
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToSection".freeze],
|
11928
|
+
label: "steps".freeze,
|
11929
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:Text".freeze],
|
11930
|
+
type: "rdf:Property".freeze
|
11338
11931
|
property :storageRequirements,
|
11339
11932
|
comment: %(Storage requirements \(free space required\).).freeze,
|
11340
11933
|
domainIncludes: "schema:SoftwareApplication".freeze,
|
@@ -11514,6 +12107,13 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11514
12107
|
rangeIncludes: ["schema:Class".freeze, "schema:Enumeration".freeze, "schema:Property".freeze],
|
11515
12108
|
:"schema:isPartOf" => %(http://meta.schema.org/).freeze,
|
11516
12109
|
type: "rdf:Property".freeze
|
12110
|
+
property :supply,
|
12111
|
+
comment: %(A sub-property of instrument. A supply consumed when performing instructions or a direction.).freeze,
|
12112
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze],
|
12113
|
+
label: "supply".freeze,
|
12114
|
+
rangeIncludes: ["schema:HowToSupply".freeze, "schema:Text".freeze],
|
12115
|
+
subPropertyOf: "schema:instrument".freeze,
|
12116
|
+
type: "rdf:Property".freeze
|
11517
12117
|
property :supplyTo,
|
11518
12118
|
comment: %(The area to which the artery supplies blood.).freeze,
|
11519
12119
|
domainIncludes: "schema:Artery".freeze,
|
@@ -11692,6 +12292,13 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11692
12292
|
rangeIncludes: "schema:Place".freeze,
|
11693
12293
|
subPropertyOf: "schema:location".freeze,
|
11694
12294
|
type: "rdf:Property".freeze
|
12295
|
+
property :toRecipient,
|
12296
|
+
comment: %(A sub property of recipient. The recipient who was directly sent the message.).freeze,
|
12297
|
+
domainIncludes: "schema:Message".freeze,
|
12298
|
+
label: "toRecipient".freeze,
|
12299
|
+
rangeIncludes: ["schema:Audience".freeze, "schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze],
|
12300
|
+
subPropertyOf: "schema:recipient".freeze,
|
12301
|
+
type: "rdf:Property".freeze
|
11695
12302
|
property :tongueWeight,
|
11696
12303
|
comment: %(<p>The permitted vertical load \(TWR\) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating \(TLR\) or Vertical Load Rating \(VLR\)</p>
|
11697
12304
|
|
@@ -11709,6 +12316,13 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11709
12316
|
rangeIncludes: "schema:QuantitativeValue".freeze,
|
11710
12317
|
:"schema:isPartOf" => %(http://auto.schema.org).freeze,
|
11711
12318
|
type: "rdf:Property".freeze
|
12319
|
+
property :tool,
|
12320
|
+
comment: %(A sub property of instrument. An object used \(but not consumed\) when performing instructions or a direction.).freeze,
|
12321
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze],
|
12322
|
+
label: "tool".freeze,
|
12323
|
+
rangeIncludes: ["schema:HowToTool".freeze, "schema:Text".freeze],
|
12324
|
+
subPropertyOf: "schema:instrument".freeze,
|
12325
|
+
type: "rdf:Property".freeze
|
11712
12326
|
property :torque,
|
11713
12327
|
comment: %(<p>The torque \(turning force\) of the vehicle's engine.</p>
|
11714
12328
|
|
@@ -11738,11 +12352,18 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11738
12352
|
rangeIncludes: ["schema:Number".freeze, "schema:PriceSpecification".freeze, "schema:Text".freeze],
|
11739
12353
|
type: "rdf:Property".freeze
|
11740
12354
|
property :totalTime,
|
11741
|
-
comment: %(The total time
|
11742
|
-
domainIncludes: "schema:
|
12355
|
+
comment: %(The total time required to perform instructions or a direction \(including time to prepare the supplies\), in <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO 8601 duration format</a>.).freeze,
|
12356
|
+
domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze],
|
11743
12357
|
label: "totalTime".freeze,
|
11744
12358
|
rangeIncludes: "schema:Duration".freeze,
|
11745
12359
|
type: "rdf:Property".freeze
|
12360
|
+
property :touristType,
|
12361
|
+
comment: %(Attraction suitable for type\(s\) of tourist. eg. Children, visitors from a particular country, etc.).freeze,
|
12362
|
+
:"dc:source" => [%(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it).freeze, %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism).freeze],
|
12363
|
+
domainIncludes: "schema:TouristAttraction".freeze,
|
12364
|
+
label: "touristType".freeze,
|
12365
|
+
rangeIncludes: ["schema:Audience".freeze, "schema:Text".freeze],
|
12366
|
+
type: "rdf:Property".freeze
|
11746
12367
|
property :track,
|
11747
12368
|
comment: %(A music recording \(track\)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.).freeze,
|
11748
12369
|
:"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
|
@@ -11894,6 +12515,16 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
11894
12515
|
label: "unitText".freeze,
|
11895
12516
|
rangeIncludes: "schema:Text".freeze,
|
11896
12517
|
type: "rdf:Property".freeze
|
12518
|
+
property :unnamedSourcesPolicy,
|
12519
|
+
comment: %(For an <a class="localLink" href="http://schema.org/Organization">Organization</a> \(typically a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a>\), a statement about policy on use of unnamed sources and the decision process required.).freeze,
|
12520
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
12521
|
+
domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze],
|
12522
|
+
label: "unnamedSourcesPolicy".freeze,
|
12523
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
12524
|
+
:"schema:category" => %(issue-1525).freeze,
|
12525
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
12526
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
12527
|
+
type: "rdf:Property".freeze
|
11897
12528
|
property :unsaturatedFatContent,
|
11898
12529
|
comment: %(The number of grams of unsaturated fat.).freeze,
|
11899
12530
|
domainIncludes: "schema:NutritionInformation".freeze,
|
@@ -12143,6 +12774,16 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12143
12774
|
:"schema:supersededBy" => %(schema:seller).freeze,
|
12144
12775
|
subPropertyOf: "schema:participant".freeze,
|
12145
12776
|
type: "rdf:Property".freeze
|
12777
|
+
property :verificationFactCheckingPolicy,
|
12778
|
+
comment: %(Disclosure about verification and fact-checking processes for a <a class="localLink" href="http://schema.org/NewsMediaOrganization">NewsMediaOrganization</a> or other fact-checking <a class="localLink" href="http://schema.org/Organization">Organization</a>.).freeze,
|
12779
|
+
:"dc:source" => [%(https://github.com/schemaorg/schemaorg/issues/1525).freeze, %(https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP).freeze],
|
12780
|
+
domainIncludes: "schema:NewsMediaOrganization".freeze,
|
12781
|
+
label: "verificationFactCheckingPolicy".freeze,
|
12782
|
+
rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze],
|
12783
|
+
:"schema:category" => %(issue-1525).freeze,
|
12784
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
12785
|
+
subPropertyOf: "schema:publishingPrinciples".freeze,
|
12786
|
+
type: "rdf:Property".freeze
|
12146
12787
|
property :version,
|
12147
12788
|
comment: %(The version of the CreativeWork embodied by a specified resource.).freeze,
|
12148
12789
|
domainIncludes: "schema:CreativeWork".freeze,
|
@@ -12343,7 +12984,7 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12343
12984
|
:"dc:source" => %(https://github.com/schemaorg/schemaorg/issues/1389).freeze,
|
12344
12985
|
domainIncludes: "schema:SpeakableSpecification".freeze,
|
12345
12986
|
label: "xpath".freeze,
|
12346
|
-
rangeIncludes: "schema:
|
12987
|
+
rangeIncludes: "schema:XPathType".freeze,
|
12347
12988
|
:"schema:category" => %(issue-1389).freeze,
|
12348
12989
|
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
12349
12990
|
type: "rdf:Property".freeze
|
@@ -12359,6 +13000,12 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12359
13000
|
label: "yearsInOperation".freeze,
|
12360
13001
|
rangeIncludes: "schema:QuantitativeValue".freeze,
|
12361
13002
|
type: "rdf:Property".freeze
|
13003
|
+
property :yield,
|
13004
|
+
comment: %(The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.).freeze,
|
13005
|
+
domainIncludes: "schema:HowTo".freeze,
|
13006
|
+
label: "yield".freeze,
|
13007
|
+
rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze],
|
13008
|
+
type: "rdf:Property".freeze
|
12362
13009
|
|
12363
13010
|
# Extra definitions
|
12364
13011
|
term :Abdomen,
|
@@ -12409,6 +13056,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12409
13056
|
comment: %(Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.).freeze,
|
12410
13057
|
label: "AudiobookFormat".freeze,
|
12411
13058
|
type: "schema:BookFormatType".freeze
|
13059
|
+
term :AuthoritativeLegalValue,
|
13060
|
+
comment: %(Indicates that the publisher gives some special status to the publication of the document. \("The Queens Printer" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications\). Something "AuthoritativeLegalValue" is considered to be also <a class="localLink" href="http://schema.org/OfficialLegalValue">OfficialLegalValue</a>".).freeze,
|
13061
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13062
|
+
label: "AuthoritativeLegalValue".freeze,
|
13063
|
+
:"schema:category" => %(issue-1156).freeze,
|
13064
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13065
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#LegalValue-authoritative).freeze,
|
13066
|
+
type: "schema:LegalValueLevel".freeze
|
12412
13067
|
term :Ayurvedic,
|
12413
13068
|
comment: %(A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.).freeze,
|
12414
13069
|
label: "Ayurvedic".freeze,
|
@@ -12516,6 +13171,15 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12516
13171
|
comment: %(Indicates that the item is damaged.).freeze,
|
12517
13172
|
label: "DamagedCondition".freeze,
|
12518
13173
|
type: "schema:OfferItemCondition".freeze
|
13174
|
+
term :Definitive,
|
13175
|
+
comment: %(Indicates a document for which the text is conclusively what the law says and is legally binding. \(e.g. The digitally signed version of an Official Journal.\)
|
13176
|
+
Something "Definitive" is considered to be also "<a href="/Authoritative">Authoritative</a>".).freeze,
|
13177
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13178
|
+
label: "Definitive".freeze,
|
13179
|
+
:"schema:category" => %(issue-1156).freeze,
|
13180
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13181
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#LegalValue-definitive).freeze,
|
13182
|
+
type: "schema:LegalValueLevel".freeze
|
12519
13183
|
term :DemoAlbum,
|
12520
13184
|
comment: %(DemoAlbum.).freeze,
|
12521
13185
|
:"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
|
@@ -12778,6 +13442,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12778
13442
|
label: "Homeopathic".freeze,
|
12779
13443
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
12780
13444
|
type: "schema:MedicineSystem".freeze
|
13445
|
+
term :InForce,
|
13446
|
+
comment: %(Indicates that a legislation is in force.).freeze,
|
13447
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13448
|
+
label: "InForce".freeze,
|
13449
|
+
:"schema:category" => %(issue-1156).freeze,
|
13450
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13451
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#InForce-inForce).freeze,
|
13452
|
+
type: "schema:LegalForceStatus".freeze
|
12781
13453
|
term :InStock,
|
12782
13454
|
comment: %(Indicates that the item is in stock.).freeze,
|
12783
13455
|
label: "InStock".freeze,
|
@@ -12945,6 +13617,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12945
13617
|
label: "Nose".freeze,
|
12946
13618
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
12947
13619
|
type: "schema:PhysicalExam".freeze
|
13620
|
+
term :NotInForce,
|
13621
|
+
comment: %(Indicates that a legislation is currently not in force.).freeze,
|
13622
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13623
|
+
label: "NotInForce".freeze,
|
13624
|
+
:"schema:category" => %(issue-1156).freeze,
|
13625
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13626
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#InForce-notInForce).freeze,
|
13627
|
+
type: "schema:LegalForceStatus".freeze
|
12948
13628
|
term :NotYetRecruiting,
|
12949
13629
|
comment: %(Not yet recruiting.).freeze,
|
12950
13630
|
label: "NotYetRecruiting".freeze,
|
@@ -12983,6 +13663,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
12983
13663
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
12984
13664
|
subClassOf: "schema:MedicalTherapy".freeze,
|
12985
13665
|
type: "schema:MedicalSpecialty".freeze
|
13666
|
+
term :OfficialLegalValue,
|
13667
|
+
comment: %(All the documents published by an official publisher should have at least the legal value level "OfficialLegalValue". This indicates that the document was published by an organisation with the public task of making it available \(e.g. a consolidated version of a EU directive published by the EU Office of Publications\).).freeze,
|
13668
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13669
|
+
label: "OfficialLegalValue".freeze,
|
13670
|
+
:"schema:category" => %(issue-1156).freeze,
|
13671
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13672
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#LegalValue-official).freeze,
|
13673
|
+
type: "schema:LegalValueLevel".freeze
|
12986
13674
|
term :OfflinePermanently,
|
12987
13675
|
comment: %(Game server status: OfflinePermanently. Server is offline and not available.).freeze,
|
12988
13676
|
label: "OfflinePermanently".freeze,
|
@@ -13084,6 +13772,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
13084
13772
|
comment: %(A parking map.).freeze,
|
13085
13773
|
label: "ParkingMap".freeze,
|
13086
13774
|
type: "schema:MapCategoryType".freeze
|
13775
|
+
term :PartiallyInForce,
|
13776
|
+
comment: %(Indicates that parts of the legislation are in force, and parts are not.).freeze,
|
13777
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
13778
|
+
label: "PartiallyInForce".freeze,
|
13779
|
+
:"schema:category" => %(issue-1156).freeze,
|
13780
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
13781
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#InForce-partiallyInForce).freeze,
|
13782
|
+
type: "schema:LegalForceStatus".freeze
|
13087
13783
|
term :Pathology,
|
13088
13784
|
comment: %(A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.).freeze,
|
13089
13785
|
label: "Pathology".freeze,
|
@@ -13450,6 +14146,14 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
13450
14146
|
label: "Ultrasound".freeze,
|
13451
14147
|
:"schema:isPartOf" => %(http://health-lifesci.schema.org).freeze,
|
13452
14148
|
type: "schema:MedicalImagingTechnique".freeze
|
14149
|
+
term :UnofficialLegalValue,
|
14150
|
+
comment: %(Indicates that a document has no particular or special standing \(e.g. a republication of a law by a private publisher\).).freeze,
|
14151
|
+
:"dc:source" => [%(http://publications.europa.eu/mdr/eli/index.html).freeze, %(https://github.com/schemaorg/schemaorg/issues/1156).freeze],
|
14152
|
+
label: "UnofficialLegalValue".freeze,
|
14153
|
+
:"schema:category" => %(issue-1156).freeze,
|
14154
|
+
:"schema:isPartOf" => %(http://pending.schema.org).freeze,
|
14155
|
+
:"skos:exactMatch" => %(http://data.europa.eu/eli/ontology#LegalValue-unofficial).freeze,
|
14156
|
+
type: "schema:LegalValueLevel".freeze
|
13453
14157
|
term :Urologic,
|
13454
14158
|
comment: %(A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.).freeze,
|
13455
14159
|
label: "Urologic".freeze,
|
@@ -13509,11 +14213,5 @@ we define a supporting type, <a class="localLink" href="http://schema.org/Speaka
|
|
13509
14213
|
comment: %(The airline boards by zones of the plane.).freeze,
|
13510
14214
|
label: "ZoneBoardingPolicy".freeze,
|
13511
14215
|
type: "schema:BoardingPolicyType".freeze
|
13512
|
-
term :preventiveProcedure,
|
13513
|
-
label: "preventiveProcedure".freeze,
|
13514
|
-
subPropertyOf: "schema:availableService".freeze
|
13515
|
-
term :treatment,
|
13516
|
-
label: "treatment".freeze,
|
13517
|
-
subPropertyOf: "schema:availableService".freeze
|
13518
14216
|
end
|
13519
14217
|
end
|