@tpluscode/rdf-ns-builders 5.0.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/Factory.d.ts +1 -1
  3. package/Factory.d.ts.map +1 -1
  4. package/Factory.js +1 -1
  5. package/index.d.ts.map +1 -1
  6. package/loose.d.ts +6 -0
  7. package/loose.d.ts.map +1 -1
  8. package/loose.js +6 -0
  9. package/package.json +17 -9
  10. package/strict.d.ts +6 -0
  11. package/strict.d.ts.map +1 -1
  12. package/strict.js +6 -0
  13. package/vocabularies/b59.d.ts +14 -0
  14. package/vocabularies/b59.d.ts.map +1 -0
  15. package/vocabularies/b59.js +4 -0
  16. package/vocabularies/cc.d.ts +18 -83
  17. package/vocabularies/cc.d.ts.map +1 -1
  18. package/vocabularies/code.d.ts +34 -0
  19. package/vocabularies/code.d.ts.map +1 -0
  20. package/vocabularies/code.js +4 -0
  21. package/vocabularies/constant.d.ts +11 -6
  22. package/vocabularies/constant.d.ts.map +1 -1
  23. package/vocabularies/crm.d.ts +160 -163
  24. package/vocabularies/crm.d.ts.map +1 -1
  25. package/vocabularies/cube.d.ts +30 -0
  26. package/vocabularies/cube.d.ts.map +1 -0
  27. package/vocabularies/cube.js +4 -0
  28. package/vocabularies/dbo.d.ts +0 -207
  29. package/vocabularies/dbo.d.ts.map +1 -1
  30. package/vocabularies/dcat.d.ts +34 -5
  31. package/vocabularies/dcat.d.ts.map +1 -1
  32. package/vocabularies/dtype.d.ts +5 -1
  33. package/vocabularies/dtype.d.ts.map +1 -1
  34. package/vocabularies/gs1.d.ts +648 -1472
  35. package/vocabularies/gs1.d.ts.map +1 -1
  36. package/vocabularies/la.d.ts +12 -22
  37. package/vocabularies/la.d.ts.map +1 -1
  38. package/vocabularies/m4i.d.ts +92 -2
  39. package/vocabularies/m4i.d.ts.map +1 -1
  40. package/vocabularies/mads.d.ts +2 -0
  41. package/vocabularies/mads.d.ts.map +1 -1
  42. package/vocabularies/meta.d.ts +28 -0
  43. package/vocabularies/meta.d.ts.map +1 -0
  44. package/vocabularies/meta.js +4 -0
  45. package/vocabularies/pipeline.d.ts +36 -0
  46. package/vocabularies/pipeline.d.ts.map +1 -0
  47. package/vocabularies/pipeline.js +4 -0
  48. package/vocabularies/prefix.d.ts +4 -0
  49. package/vocabularies/prefix.d.ts.map +1 -1
  50. package/vocabularies/qkdv.d.ts +69 -18
  51. package/vocabularies/qkdv.d.ts.map +1 -1
  52. package/vocabularies/rdfs.d.ts +2 -5
  53. package/vocabularies/rdfs.d.ts.map +1 -1
  54. package/vocabularies/relation.d.ts +18 -0
  55. package/vocabularies/relation.d.ts.map +1 -0
  56. package/vocabularies/relation.js +4 -0
  57. package/vocabularies/rico.d.ts +1320 -912
  58. package/vocabularies/rico.d.ts.map +1 -1
  59. package/vocabularies/schema.d.ts +586 -125
  60. package/vocabularies/schema.d.ts.map +1 -1
  61. package/vocabularies/sh.d.ts +0 -384
  62. package/vocabularies/sh.d.ts.map +1 -1
  63. package/vocabularies/solid.d.ts +4 -0
  64. package/vocabularies/solid.d.ts.map +1 -1
  65. package/vocabularies/sou.d.ts +1 -9
  66. package/vocabularies/sou.d.ts.map +1 -1
  67. package/vocabularies/vcard.d.ts +12 -0
  68. package/vocabularies/vcard.d.ts.map +1 -1
@@ -9,7 +9,7 @@ export interface Schema {
9
9
  "3DModel": NamedNode<'http://schema.org/3DModel'>;
10
10
  /** Abdomen clinical examination. */
11
11
  "Abdomen": NamedNode<'http://schema.org/Abdomen'>;
12
- /** The subject matter of the content. */
12
+ /** The subject matter of an object. */
13
13
  "about": NamedNode<'http://schema.org/about'>;
14
14
  /** Web page type: About page. */
15
15
  "AboutPage": NamedNode<'http://schema.org/AboutPage'>;
@@ -25,7 +25,7 @@ export interface Schema {
25
25
  "acceptedAnswer": NamedNode<'http://schema.org/acceptedAnswer'>;
26
26
  /** The offer(s) -- e.g., product, quantity and price combinations -- included in the order. */
27
27
  "acceptedOffer": NamedNode<'http://schema.org/acceptedOffer'>;
28
- /** The payment method(s) accepted by seller for this offer. */
28
+ /** The payment method(s) that are accepted in general by an organization, or for some specific demand or offer. */
29
29
  "acceptedPaymentMethod": NamedNode<'http://schema.org/acceptedPaymentMethod'>;
30
30
  /** Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```. */
31
31
  "acceptsReservations": NamedNode<'http://schema.org/acceptsReservations'>;
@@ -39,7 +39,7 @@ export interface Schema {
39
39
  "accessibilityFeature": NamedNode<'http://schema.org/accessibilityFeature'>;
40
40
  /** A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary). */
41
41
  "accessibilityHazard": NamedNode<'http://schema.org/accessibilityHazard'>;
42
- /** A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed." */
42
+ /** A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed". */
43
43
  "accessibilitySummary": NamedNode<'http://schema.org/accessibilitySummary'>;
44
44
  /** The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary). */
45
45
  "accessMode": NamedNode<'http://schema.org/accessMode'>;
@@ -47,7 +47,7 @@ export interface Schema {
47
47
  "accessModeSufficient": NamedNode<'http://schema.org/accessModeSufficient'>;
48
48
  /**
49
49
  * An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.
50
- * For more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.
50
+ * For more specific types of accommodations not defined in schema.org, one can use [[additionalType]] with external vocabularies.
51
51
  * <br /><br />
52
52
  * See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>.
53
53
  *
@@ -78,7 +78,7 @@ export interface Schema {
78
78
  "acquireLicensePage": NamedNode<'http://schema.org/acquireLicensePage'>;
79
79
  /** The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards. */
80
80
  "acrissCode": NamedNode<'http://schema.org/acrissCode'>;
81
- /** An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](http://schema.org/docs/actions.html). */
81
+ /** An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also [blog post](https://blog.schema.org/2014/04/16/announcing-schema-org-actions/) and [Actions overview document](http://schema.org/docs/actions.html). */
82
82
  "Action": NamedNode<'http://schema.org/Action'>;
83
83
  /** For a [[NewsMediaOrganization]] or other news-related [[Organization]], 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. */
84
84
  "actionableFeedbackPolicy": NamedNode<'http://schema.org/actionableFeedbackPolicy'>;
@@ -92,6 +92,8 @@ export interface Schema {
92
92
  "actionOption": NamedNode<'http://schema.org/actionOption'>;
93
93
  /** The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication. */
94
94
  "actionPlatform": NamedNode<'http://schema.org/actionPlatform'>;
95
+ /** Description of the process by which the action was performed. */
96
+ "actionProcess": NamedNode<'http://schema.org/actionProcess'>;
95
97
  /** Indicates the current disposition of the Action. */
96
98
  "actionStatus": NamedNode<'http://schema.org/actionStatus'>;
97
99
  /** The status of an Action. */
@@ -110,7 +112,7 @@ export interface Schema {
110
112
  "activityDuration": NamedNode<'http://schema.org/activityDuration'>;
111
113
  /** How often one should engage in the activity. */
112
114
  "activityFrequency": NamedNode<'http://schema.org/activityFrequency'>;
113
- /** An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. */
115
+ /** An actor (individual or a group), e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. */
114
116
  "actor": NamedNode<'http://schema.org/actor'>;
115
117
  /** An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip. */
116
118
  "actors": NamedNode<'http://schema.org/actors'>;
@@ -125,7 +127,10 @@ export interface Schema {
125
127
  *
126
128
  */
127
129
  "additionalProperty": NamedNode<'http://schema.org/additionalProperty'>;
128
- /** An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. */
130
+ /**
131
+ * An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the
132
+ * use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org <a href="http://schema.org/docs/styleguide.html">style guide</a>.
133
+ */
129
134
  "additionalType": NamedNode<'http://schema.org/additionalType'>;
130
135
  /** Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc. */
131
136
  "additionalVariable": NamedNode<'http://schema.org/additionalVariable'>;
@@ -133,7 +138,7 @@ export interface Schema {
133
138
  "addOn": NamedNode<'http://schema.org/addOn'>;
134
139
  /** Physical address of the item. */
135
140
  "address": NamedNode<'http://schema.org/address'>;
136
- /** The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). */
141
+ /** The country. Recommended to be in 2-letter [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1) format, for example "US". For backward compatibility, a 3-letter [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) country code such as "SGP" or a full country name such as "Singapore" can also be used. */
137
142
  "addressCountry": NamedNode<'http://schema.org/addressCountry'>;
138
143
  /** The locality in which the street address is, and which is in the region. For example, Mountain View. */
139
144
  "addressLocality": NamedNode<'http://schema.org/addressLocality'>;
@@ -163,6 +168,10 @@ export interface Schema {
163
168
  "afterMedia": NamedNode<'http://schema.org/afterMedia'>;
164
169
  /** The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book. */
165
170
  "agent": NamedNode<'http://schema.org/agent'>;
171
+ /** The number of completed interactions for this entity, in a particular role (the 'agent'), in a particular action (indicated in the statistic), and in a particular context (i.e. interactionService). */
172
+ "agentInteractionStatistic": NamedNode<'http://schema.org/agentInteractionStatistic'>;
173
+ /** Indicates a prototype of the elements in the list that is used to hold aggregate information (ratings, offers, etc.). */
174
+ "aggregateElement": NamedNode<'http://schema.org/aggregateElement'>;
166
175
  /** 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.\n\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined. */
167
176
  "AggregateOffer": NamedNode<'http://schema.org/AggregateOffer'>;
168
177
  /** The overall rating, based on a collection of reviews or ratings, of the item. */
@@ -195,9 +204,12 @@ export interface Schema {
195
204
  "alcoholWarning": NamedNode<'http://schema.org/alcoholWarning'>;
196
205
  /** The algorithm or rules to follow to compute the score. */
197
206
  "algorithm": NamedNode<'http://schema.org/algorithm'>;
207
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/algorithmicallyEnhanced">algorithmically enhanced</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
208
+ "AlgorithmicallyEnhancedDigitalSource": NamedNode<'http://schema.org/AlgorithmicallyEnhancedDigitalSource'>;
209
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/algorithmicMedia">algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
210
+ "AlgorithmicMediaDigitalSource": NamedNode<'http://schema.org/AlgorithmicMediaDigitalSource'>;
198
211
  /**
199
212
  * An intangible item that describes an alignment between a learning resource and a node in an educational framework.
200
- *
201
213
  * Should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.
202
214
  */
203
215
  "AlignmentObject": NamedNode<'http://schema.org/AlignmentObject'>;
@@ -281,7 +293,7 @@ export interface Schema {
281
293
  "applicationCategory": NamedNode<'http://schema.org/applicationCategory'>;
282
294
  /** Contact details for further information relevant to this job posting. */
283
295
  "applicationContact": NamedNode<'http://schema.org/applicationContact'>;
284
- /** The date at which the program stops collecting applications for the next enrollment cycle. */
296
+ /** The date on which the program stops collecting applications for the next enrollment cycle. Flexible application deadlines (for example, a program with rolling admissions) can be described in a textual string, rather than as a DateTime. */
285
297
  "applicationDeadline": NamedNode<'http://schema.org/applicationDeadline'>;
286
298
  /** The date at which the program begins collecting applications for the next enrollment cycle. */
287
299
  "applicationStartDate": NamedNode<'http://schema.org/applicationStartDate'>;
@@ -339,7 +351,7 @@ export interface Schema {
339
351
  "artform": NamedNode<'http://schema.org/artform'>;
340
352
  /** An art gallery. */
341
353
  "ArtGallery": NamedNode<'http://schema.org/ArtGallery'>;
342
- /** An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). */
354
+ /** An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also [blog post](https://blog.schema.org/2014/09/02/schema-org-support-for-bibliographic-relationships-and-periodicals/). */
343
355
  "Article": NamedNode<'http://schema.org/Article'>;
344
356
  /** The actual body of the article. */
345
357
  "articleBody": NamedNode<'http://schema.org/articleBody'>;
@@ -420,11 +432,15 @@ export interface Schema {
420
432
  "AudioObject": NamedNode<'http://schema.org/AudioObject'>;
421
433
  /** A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity. */
422
434
  "AudioObjectSnapshot": NamedNode<'http://schema.org/AudioObjectSnapshot'>;
435
+ /** Date when a certification was last audited. See also [gs1:certificationAuditDate](https://www.gs1.org/voc/certificationAuditDate). */
436
+ "auditDate": NamedNode<'http://schema.org/auditDate'>;
437
+ /** The action of authenticating into a device or application. */
438
+ "AuthenticateAction": NamedNode<'http://schema.org/AuthenticateAction'>;
423
439
  /** The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media. */
424
440
  "authenticator": NamedNode<'http://schema.org/authenticator'>;
425
441
  /** The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably. */
426
442
  "author": NamedNode<'http://schema.org/author'>;
427
- /** 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 "Authoritative" is considered to be also [[OfficialLegalValue]]. */
443
+ /** 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 "Authoritative" is considered to be also [[OfficialLegalValue]]". */
428
444
  "AuthoritativeLegalValue": NamedNode<'http://schema.org/AuthoritativeLegalValue'>;
429
445
  /** The act of granting permission to an object. */
430
446
  "AuthorizeAction": NamedNode<'http://schema.org/AuthorizeAction'>;
@@ -540,7 +556,7 @@ export interface Schema {
540
556
  "BenefitsHealthAspect": NamedNode<'http://schema.org/BenefitsHealthAspect'>;
541
557
  /** The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation. */
542
558
  "benefitsSummaryUrl": NamedNode<'http://schema.org/benefitsSummaryUrl'>;
543
- /** The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. */
559
+ /** The highest value allowed in this rating system. */
544
560
  "bestRating": NamedNode<'http://schema.org/bestRating'>;
545
561
  /** A bike store. */
546
562
  "BikeStore": NamedNode<'http://schema.org/BikeStore'>;
@@ -702,7 +718,7 @@ export interface Schema {
702
718
  "broadcaster": NamedNode<'http://schema.org/broadcaster'>;
703
719
  /** An over the air or online broadcast event. */
704
720
  "BroadcastEvent": NamedNode<'http://schema.org/BroadcastEvent'>;
705
- /** The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. "87 FM". */
721
+ /** The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequencies of AM and FM radio channels, e.g. "87 FM". */
706
722
  "broadcastFrequency": NamedNode<'http://schema.org/broadcastFrequency'>;
707
723
  /** The frequency in MHz and the modulation used for a particular BroadcastService. */
708
724
  "BroadcastFrequencySpecification": NamedNode<'http://schema.org/BroadcastFrequencySpecification'>;
@@ -754,7 +770,7 @@ export interface Schema {
754
770
  "busName": NamedNode<'http://schema.org/busName'>;
755
771
  /** The unique identifier for the bus. */
756
772
  "busNumber": NamedNode<'http://schema.org/busNumber'>;
757
- /** A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel. */
773
+ /** A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury buses, usually in service for long distance travel. */
758
774
  "BusOrCoach": NamedNode<'http://schema.org/BusOrCoach'>;
759
775
  /** A reservation for bus travel. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. */
760
776
  "BusReservation": NamedNode<'http://schema.org/BusReservation'>;
@@ -770,8 +786,12 @@ export interface Schema {
770
786
  "buyer": NamedNode<'http://schema.org/buyer'>;
771
787
  /** The artist that performed this album or recording. */
772
788
  "byArtist": NamedNode<'http://schema.org/byArtist'>;
789
+ /** Payment in advance by bank transfer, equivalent to <code>http://purl.org/goodrelations/v1#ByBankTransferInAdvance</code>. */
790
+ "ByBankTransferInAdvance": NamedNode<'http://schema.org/ByBankTransferInAdvance'>;
773
791
  /** Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules. */
774
792
  "byDay": NamedNode<'http://schema.org/byDay'>;
793
+ /** Payment by invoice, typically after the goods were delivered, equivalent to <code>http://purl.org/goodrelations/v1#ByInvoice</code>. */
794
+ "ByInvoice": NamedNode<'http://schema.org/ByInvoice'>;
775
795
  /** Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1. */
776
796
  "byMonth": NamedNode<'http://schema.org/byMonth'>;
777
797
  /** Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31. */
@@ -828,6 +848,8 @@ export interface Schema {
828
848
  "CarUsageType": NamedNode<'http://schema.org/CarUsageType'>;
829
849
  /** A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection. */
830
850
  "CaseSeries": NamedNode<'http://schema.org/CaseSeries'>;
851
+ /** Payment using cash, on premises, equivalent to <code>http://purl.org/goodrelations/v1#Cash</code>. */
852
+ "Cash": NamedNode<'http://schema.org/Cash'>;
831
853
  /** A cardholder benefit that pays the cardholder a small percentage of their net expenditures. */
832
854
  "cashBack": NamedNode<'http://schema.org/cashBack'>;
833
855
  /** A casino. */
@@ -846,6 +868,8 @@ export interface Schema {
846
868
  "CategoryCodeSet": NamedNode<'http://schema.org/CategoryCodeSet'>;
847
869
  /** A Catholic church. */
848
870
  "CatholicChurch": NamedNode<'http://schema.org/CatholicChurch'>;
871
+ /** The cause of a medical condition. */
872
+ "cause": NamedNode<'http://schema.org/cause'>;
849
873
  /** The condition, complication, symptom, sign, etc. caused. */
850
874
  "causeOf": NamedNode<'http://schema.org/causeOf'>;
851
875
  /** Information about the causes and main actions that gave rise to the topic. */
@@ -863,6 +887,20 @@ export interface Schema {
863
887
  "CDFormat": NamedNode<'http://schema.org/CDFormat'>;
864
888
  /** A graveyard. */
865
889
  "Cemetery": NamedNode<'http://schema.org/Cemetery'>;
890
+ /** A Certification is an official and authoritative statement about a subject, for example a product, service, person, or organization. A certification is typically issued by an indendent certification body, for example a professional organization or government. It formally attests certain characteristics about the subject, for example Organizations can be ISO certified, Food products can be certified Organic or Vegan, a Person can be a certified professional, a Place can be certified for food processing. There are certifications for many domains: regulatory, organizational, recycling, food, efficiency, educational, ecological, etc. A certification is a form of credential, as are accreditations and licenses. Mapped from the [gs1:CertificationDetails](https://www.gs1.org/voc/CertificationDetails) class in the GS1 Web Vocabulary. */
891
+ "Certification": NamedNode<'http://schema.org/Certification'>;
892
+ /** Specifies that a certification is active. */
893
+ "CertificationActive": NamedNode<'http://schema.org/CertificationActive'>;
894
+ /** Identifier of a certification instance (as registered with an independent certification body). Typically this identifier can be used to consult and verify the certification instance. See also [gs1:certificationIdentification](https://www.gs1.org/voc/certificationIdentification). */
895
+ "certificationIdentification": NamedNode<'http://schema.org/certificationIdentification'>;
896
+ /** Specifies that a certification is inactive (no longer in effect). */
897
+ "CertificationInactive": NamedNode<'http://schema.org/CertificationInactive'>;
898
+ /** Rating of a certification instance (as defined by an independent certification body). Typically this rating can be used to rate the level to which the requirements of the certification instance are fulfilled. See also [gs1:certificationValue](https://www.gs1.org/voc/certificationValue). */
899
+ "certificationRating": NamedNode<'http://schema.org/certificationRating'>;
900
+ /** Indicates the current status of a certification: active or inactive. See also [gs1:certificationStatus](https://www.gs1.org/voc/certificationStatus). */
901
+ "certificationStatus": NamedNode<'http://schema.org/certificationStatus'>;
902
+ /** Enumerates the different statuses of a Certification (Active and Inactive). */
903
+ "CertificationStatusEnumeration": NamedNode<'http://schema.org/CertificationStatusEnumeration'>;
866
904
  /** One of the sections into which a book is divided. A chapter usually has a section number or a name. */
867
905
  "Chapter": NamedNode<'http://schema.org/Chapter'>;
868
906
  /** Fictional person connected with a creative work. */
@@ -879,6 +917,8 @@ export interface Schema {
879
917
  "CheckAction": NamedNode<'http://schema.org/CheckAction'>;
880
918
  /** The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check-in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\n\nRelated actions:\n\n* [[CheckOutAction]]: The antonym of CheckInAction.\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence. */
881
919
  "CheckInAction": NamedNode<'http://schema.org/CheckInAction'>;
920
+ /** Payment in advance by sending a check, equivalent to <code>http://purl.org/goodrelations/v1#CheckInAdvance</code>. */
921
+ "CheckInAdvance": NamedNode<'http://schema.org/CheckInAdvance'>;
882
922
  /** The earliest someone may check into a lodging establishment. */
883
923
  "checkinTime": NamedNode<'http://schema.org/checkinTime'>;
884
924
  /** The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check-in) or place (e.g. hotel).\n\nRelated actions:\n\n* [[CheckInAction]]: The antonym of CheckOutAction.\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service. */
@@ -934,10 +974,7 @@ export interface Schema {
934
974
  *
935
975
  */
936
976
  "Claim": NamedNode<'http://schema.org/Claim'>;
937
- /**
938
- * For a [[Claim]] interpreted from [[MediaObject]] content
939
- * sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].
940
- */
977
+ /** For a [[Claim]] interpreted from [[MediaObject]] content, the [[interpretedAsClaim]] property can be used to indicate a claim contained, implied or refined from the content of a [[MediaObject]]. */
941
978
  "claimInterpreter": NamedNode<'http://schema.org/claimInterpreter'>;
942
979
  /** A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed). */
943
980
  "ClaimReview": NamedNode<'http://schema.org/ClaimReview'>;
@@ -963,6 +1000,8 @@ export interface Schema {
963
1000
  "ClothingStore": NamedNode<'http://schema.org/ClothingStore'>;
964
1001
  /** A person that acts in a coaching role for a sports team. */
965
1002
  "coach": NamedNode<'http://schema.org/coach'>;
1003
+ /** Cash on Delivery (COD) payment, equivalent to <code>http://purl.org/goodrelations/v1#COD</code>. */
1004
+ "COD": NamedNode<'http://schema.org/COD'>;
966
1005
  /** A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. */
967
1006
  "code": NamedNode<'http://schema.org/code'>;
968
1007
  /** Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates. */
@@ -995,6 +1034,8 @@ export interface Schema {
995
1034
  "color": NamedNode<'http://schema.org/color'>;
996
1035
  /** The individual who adds color to inked drawings. */
997
1036
  "colorist": NamedNode<'http://schema.org/colorist'>;
1037
+ /** A color swatch image, visualizing the color of a [[Product]]. Should match the textual description specified in the [[color]] property. This can be a URL or a fully described ImageObject. */
1038
+ "colorSwatch": NamedNode<'http://schema.org/colorSwatch'>;
998
1039
  /** A comedy club. */
999
1040
  "ComedyClub": NamedNode<'http://schema.org/ComedyClub'>;
1000
1041
  /** Event type: Comedy event. */
@@ -1040,6 +1081,8 @@ export interface Schema {
1040
1081
  "CommunicateAction": NamedNode<'http://schema.org/CommunicateAction'>;
1041
1082
  /** A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas. */
1042
1083
  "CommunityHealth": NamedNode<'http://schema.org/CommunityHealth'>;
1084
+ /** The official registration number of a business including the organization that issued it such as Company House or Chamber of Commerce. */
1085
+ "companyRegistration": NamedNode<'http://schema.org/companyRegistration'>;
1043
1086
  /** Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource. */
1044
1087
  "competencyRequired": NamedNode<'http://schema.org/competencyRequired'>;
1045
1088
  /** A competitor in a sports event. */
@@ -1058,6 +1101,14 @@ export interface Schema {
1058
1101
  "CompleteDataFeed": NamedNode<'http://schema.org/CompleteDataFeed'>;
1059
1102
  /** The person or organization who wrote a composition, or who is the composer of a work performed at some event. */
1060
1103
  "composer": NamedNode<'http://schema.org/composer'>;
1104
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/compositeCapture">composite capture</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1105
+ "CompositeCaptureDigitalSource": NamedNode<'http://schema.org/CompositeCaptureDigitalSource'>;
1106
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/algorithmicMedia">algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1107
+ "CompositeDigitalSource": NamedNode<'http://schema.org/CompositeDigitalSource'>;
1108
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/compositeSynthetic">composite synthetic</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1109
+ "CompositeSyntheticDigitalSource": NamedNode<'http://schema.org/CompositeSyntheticDigitalSource'>;
1110
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/compositeWithTrainedAlgorithmicMedia">composite with trained algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1111
+ "CompositeWithTrainedAlgorithmicMediaDigitalSource": NamedNode<'http://schema.org/CompositeWithTrainedAlgorithmicMediaDigitalSource'>;
1061
1112
  /** A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. "electricity" or "final cleaning"). */
1062
1113
  "CompoundPriceSpecification": NamedNode<'http://schema.org/CompoundPriceSpecification'>;
1063
1114
  /** Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system. */
@@ -1068,6 +1119,8 @@ export interface Schema {
1068
1119
  "ComputerStore": NamedNode<'http://schema.org/ComputerStore'>;
1069
1120
  /** Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\n\nFor example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ". */
1070
1121
  "conditionsOfAccess": NamedNode<'http://schema.org/conditionsOfAccess'>;
1122
+ /** Event type: Conference event. */
1123
+ "ConferenceEvent": NamedNode<'http://schema.org/ConferenceEvent'>;
1071
1124
  /** The act of notifying someone that a future event/action is going to happen as expected.\n\nRelated actions:\n\n* [[CancelAction]]: The antonym of ConfirmAction. */
1072
1125
  "ConfirmAction": NamedNode<'http://schema.org/ConfirmAction'>;
1073
1126
  /** A number that confirms the given order or payment has been received. */
@@ -1077,10 +1130,12 @@ export interface Schema {
1077
1130
  /** A Consortium is a membership [[Organization]] whose members are typically Organizations. */
1078
1131
  "Consortium": NamedNode<'http://schema.org/Consortium'>;
1079
1132
  /**
1080
- * Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities
1081
- * corresponding to an indicated type (via [[populationType]]).
1133
+ * The ConstraintNode type is provided to support usecases in which a node in a structured data graph is described with properties which appear to describe a single entity, but are being used in a situation where they serve a more abstract purpose. A [[ConstraintNode]] can be described using [[constraintProperty]] and [[numConstraints]]. These constraint properties can serve a
1134
+ * variety of purposes, and their values may sometimes be understood to indicate sets of possible values rather than single, exact and specific values.
1082
1135
  */
1083
- "constrainingProperty": NamedNode<'http://schema.org/constrainingProperty'>;
1136
+ "ConstraintNode": NamedNode<'http://schema.org/ConstraintNode'>;
1137
+ /** Indicates a property used as a constraint. For example, in the definition of a [[StatisticalVariable]]. The value is a property, either from within Schema.org or from other compatible (e.g. RDF) systems such as DataCommons.org or Wikidata.org. */
1138
+ "constraintProperty": NamedNode<'http://schema.org/constraintProperty'>;
1084
1139
  /** The act of ingesting information/resources/food. */
1085
1140
  "ConsumeAction": NamedNode<'http://schema.org/ConsumeAction'>;
1086
1141
  /** A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology. */
@@ -1141,6 +1196,8 @@ export interface Schema {
1141
1196
  "cookTime": NamedNode<'http://schema.org/cookTime'>;
1142
1197
  /** Play mode: CoOp. Co-operative games, where you play on the same team with friends. */
1143
1198
  "CoOp": NamedNode<'http://schema.org/CoOp'>;
1199
+ /** An organization that is a joint project of multiple organizations or persons. */
1200
+ "Cooperative": NamedNode<'http://schema.org/Cooperative'>;
1144
1201
  /** The party holding the legal copyright to the CreativeWork. */
1145
1202
  "copyrightHolder": NamedNode<'http://schema.org/copyrightHolder'>;
1146
1203
  /** Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. */
@@ -1193,6 +1250,8 @@ export interface Schema {
1193
1250
  "courseMode": NamedNode<'http://schema.org/courseMode'>;
1194
1251
  /** Requirements for taking the Course. May be completion of another [[Course]] or a textual description like "permission of instructor". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]]. */
1195
1252
  "coursePrerequisites": NamedNode<'http://schema.org/coursePrerequisites'>;
1253
+ /** Represents the length and pace of a course, expressed as a [[Schedule]]. */
1254
+ "courseSchedule": NamedNode<'http://schema.org/courseSchedule'>;
1196
1255
  /** The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, "2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week". */
1197
1256
  "courseWorkload": NamedNode<'http://schema.org/courseWorkload'>;
1198
1257
  /** A courthouse. */
@@ -1307,10 +1366,14 @@ export interface Schema {
1307
1366
  "DanceGroup": NamedNode<'http://schema.org/DanceGroup'>;
1308
1367
  /** The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more. */
1309
1368
  "DangerousGoodConsideration": NamedNode<'http://schema.org/DangerousGoodConsideration'>;
1369
+ /** Data associated with the event, like for instance a log message. */
1370
+ "data": NamedNode<'http://schema.org/data'>;
1310
1371
  /** A collection of datasets. */
1311
1372
  "DataCatalog": NamedNode<'http://schema.org/DataCatalog'>;
1312
1373
  /** All or part of a [[Dataset]] in downloadable form. */
1313
1374
  "DataDownload": NamedNode<'http://schema.org/DataDownload'>;
1375
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/dataDrivenMedia">data driven media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1376
+ "DataDrivenMediaDigitalSource": NamedNode<'http://schema.org/DataDrivenMediaDigitalSource'>;
1314
1377
  /** A single feed providing structured information about one or more entities or topics. */
1315
1378
  "DataFeed": NamedNode<'http://schema.org/DataFeed'>;
1316
1379
  /** An item within a data feed. Data feeds may have many elements. */
@@ -1348,7 +1411,7 @@ export interface Schema {
1348
1411
  "dateModified": NamedNode<'http://schema.org/dateModified'>;
1349
1412
  /** Publication date of an online listing. */
1350
1413
  "datePosted": NamedNode<'http://schema.org/datePosted'>;
1351
- /** Date of first broadcast/publication. */
1414
+ /** Date of first publication or broadcast. For example the date a [[CreativeWork]] was broadcast or a [[Certification]] was issued. */
1352
1415
  "datePublished": NamedNode<'http://schema.org/datePublished'>;
1353
1416
  /** The date/time at which the message has been read by the recipient if a single recipient exists. */
1354
1417
  "dateRead": NamedNode<'http://schema.org/dateRead'>;
@@ -1413,12 +1476,12 @@ export interface Schema {
1413
1476
  *
1414
1477
  */
1415
1478
  "DefinedRegion": NamedNode<'http://schema.org/DefinedRegion'>;
1416
- /** A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term. */
1479
+ /** A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term. Use the about property to specify what the term is about. */
1417
1480
  "DefinedTerm": NamedNode<'http://schema.org/DefinedTerm'>;
1418
- /** A set of defined terms, for example a set of categories or a classification scheme, a glossary, dictionary or enumeration. */
1481
+ /** A set of defined terms, for example a set of categories or a classification scheme, a glossary, dictionary or enumeration. Use the about property to specify what the term set is about. */
1419
1482
  "DefinedTermSet": NamedNode<'http://schema.org/DefinedTermSet'>;
1420
1483
  /**
1421
- * 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.)
1484
+ * 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.)
1422
1485
  * Something "Definitive" is considered to be also [[AuthoritativeLegalValue]].
1423
1486
  */
1424
1487
  "DefinitiveLegalValue": NamedNode<'http://schema.org/DefinitiveLegalValue'>;
@@ -1443,7 +1506,6 @@ export interface Schema {
1443
1506
  "deliveryStatus": NamedNode<'http://schema.org/deliveryStatus'>;
1444
1507
  /** The total delay between the receipt of the order and the goods reaching the final customer. */
1445
1508
  "deliveryTime": NamedNode<'http://schema.org/deliveryTime'>;
1446
- /** A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]]. */
1447
1509
  "DeliveryTimeSettings": NamedNode<'http://schema.org/DeliveryTimeSettings'>;
1448
1510
  /** A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply. */
1449
1511
  "Demand": NamedNode<'http://schema.org/Demand'>;
@@ -1517,8 +1579,12 @@ export interface Schema {
1517
1579
  "DietNutrition": NamedNode<'http://schema.org/DietNutrition'>;
1518
1580
  /** One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient. */
1519
1581
  "differentialDiagnosis": NamedNode<'http://schema.org/differentialDiagnosis'>;
1582
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/digitalArt">digital art</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1583
+ "DigitalArtDigitalSource": NamedNode<'http://schema.org/DigitalArtDigitalSource'>;
1520
1584
  /** DigitalAudioTapeFormat. */
1521
1585
  "DigitalAudioTapeFormat": NamedNode<'http://schema.org/DigitalAudioTapeFormat'>;
1586
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/digitalCapture">digital capture</a></a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
1587
+ "DigitalCaptureDigitalSource": NamedNode<'http://schema.org/DigitalCaptureDigitalSource'>;
1522
1588
  /** An electronic file or document. */
1523
1589
  "DigitalDocument": NamedNode<'http://schema.org/DigitalDocument'>;
1524
1590
  /** A permission for a particular person or group to access a particular file. */
@@ -1529,8 +1595,12 @@ export interface Schema {
1529
1595
  "DigitalFormat": NamedNode<'http://schema.org/DigitalFormat'>;
1530
1596
  /** Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). */
1531
1597
  "DigitalPlatformEnumeration": NamedNode<'http://schema.org/DigitalPlatformEnumeration'>;
1598
+ /** Indicates an IPTCDigitalSourceEnumeration code indicating the nature of the digital source(s) for some [[CreativeWork]]. */
1599
+ "digitalSourceType": NamedNode<'http://schema.org/digitalSourceType'>;
1532
1600
  /** Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied. */
1533
1601
  "directApply": NamedNode<'http://schema.org/directApply'>;
1602
+ /** Payment in advance by direct debit from the bank, equivalent to <code>http://purl.org/goodrelations/v1#DirectDebit</code>. */
1603
+ "DirectDebit": NamedNode<'http://schema.org/DirectDebit'>;
1534
1604
  /** A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. */
1535
1605
  "director": NamedNode<'http://schema.org/director'>;
1536
1606
  /** A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip. */
@@ -1567,6 +1637,8 @@ export interface Schema {
1567
1637
  "diseaseSpreadStatistics": NamedNode<'http://schema.org/diseaseSpreadStatistics'>;
1568
1638
  /** The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants. */
1569
1639
  "DislikeAction": NamedNode<'http://schema.org/DislikeAction'>;
1640
+ /** The location at which an item can be viewed or experienced in-person. */
1641
+ "displayLocation": NamedNode<'http://schema.org/displayLocation'>;
1570
1642
  /** The date that this organization was dissolved. */
1571
1643
  "dissolutionDate": NamedNode<'http://schema.org/dissolutionDate'>;
1572
1644
  /** The distance travelled, e.g. exercising or travelling. */
@@ -1667,7 +1739,7 @@ export interface Schema {
1667
1739
  "duns": NamedNode<'http://schema.org/duns'>;
1668
1740
  /** A therapy that duplicates or overlaps this one. */
1669
1741
  "duplicateTherapy": NamedNode<'http://schema.org/duplicateTherapy'>;
1670
- /** The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). */
1742
+ /** The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). */
1671
1743
  "duration": NamedNode<'http://schema.org/duration'>;
1672
1744
  /** Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)). */
1673
1745
  "Duration": NamedNode<'http://schema.org/Duration'>;
@@ -1766,6 +1838,8 @@ export interface Schema {
1766
1838
  "eligibleRegion": NamedNode<'http://schema.org/eligibleRegion'>;
1767
1839
  /** The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount. */
1768
1840
  "eligibleTransactionVolume": NamedNode<'http://schema.org/eligibleTransactionVolume'>;
1841
+ /** The supplier of the incentivized item/service for which the incentive is valid for such as a utility company, merchant, or contractor. */
1842
+ "eligibleWithSupplier": NamedNode<'http://schema.org/eligibleWithSupplier'>;
1769
1843
  /** Email address. */
1770
1844
  "email": NamedNode<'http://schema.org/email'>;
1771
1845
  /** An email message. */
@@ -1891,8 +1965,12 @@ export interface Schema {
1891
1965
  "EPRelease": NamedNode<'http://schema.org/EPRelease'>;
1892
1966
  /** This ordering relation for qualitative values indicates that the subject is equal to the object. */
1893
1967
  "equal": NamedNode<'http://schema.org/equal'>;
1894
- /** For failed actions, more information on the cause of the failure. */
1968
+ /** For failed actions, more information on the cause of the failure. Consider using the Error type. */
1895
1969
  "error": NamedNode<'http://schema.org/error'>;
1970
+ /** Representation of an Error. */
1971
+ "Error": NamedNode<'http://schema.org/Error'>;
1972
+ /** Application or platform dependant error code. */
1973
+ "errorCode": NamedNode<'http://schema.org/errorCode'>;
1896
1974
  /** The estimated cost of the supply or supplies consumed when performing instructions. */
1897
1975
  "estimatedCost": NamedNode<'http://schema.org/estimatedCost'>;
1898
1976
  /** The estimated time the flight will take. */
@@ -1989,6 +2067,8 @@ export interface Schema {
1989
2067
  "EvidenceLevelC": NamedNode<'http://schema.org/EvidenceLevelC'>;
1990
2068
  /** Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc. */
1991
2069
  "evidenceOrigin": NamedNode<'http://schema.org/evidenceOrigin'>;
2070
+ /** An example [[MeasurementMethodEnum]] (to remove when real enums are added). */
2071
+ "ExampleMeasurementMethodEnum": NamedNode<'http://schema.org/ExampleMeasurementMethodEnum'>;
1992
2072
  /** A creative work that this work is an example/instance/realization/derivation of. */
1993
2073
  "exampleOfWork": NamedNode<'http://schema.org/exampleOfWork'>;
1994
2074
  /**
@@ -2038,10 +2118,12 @@ export interface Schema {
2038
2118
  "experienceRequirements": NamedNode<'http://schema.org/experienceRequirements'>;
2039
2119
  /** Medical expert advice related to the plan. */
2040
2120
  "expertConsiderations": NamedNode<'http://schema.org/expertConsiderations'>;
2041
- /** Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. */
2121
+ /** Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date, or a [[Certification]] the validity has expired. */
2042
2122
  "expires": NamedNode<'http://schema.org/expires'>;
2043
2123
  /** Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system. */
2044
2124
  "expressedIn": NamedNode<'http://schema.org/expressedIn'>;
2125
+ /** An address extension such as an apartment number, C/O or alternative name. */
2126
+ "extendedAddress": NamedNode<'http://schema.org/extendedAddress'>;
2045
2127
  /** Eye or ophthalmological function assessment with clinical examination. */
2046
2128
  "Eye": NamedNode<'http://schema.org/Eye'>;
2047
2129
  /** An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure. */
@@ -2088,6 +2170,15 @@ export interface Schema {
2088
2170
  "FilmAction": NamedNode<'http://schema.org/FilmAction'>;
2089
2171
  /** A financial aid type or program which students may use to pay for tuition or fees associated with the program. */
2090
2172
  "financialAidEligible": NamedNode<'http://schema.org/financialAidEligible'>;
2173
+ /**
2174
+ * <p>Represents financial incentives for goods/services offered by an organization (or individual).</p>
2175
+ *
2176
+ * <p>Typically contains the [[name]] of the incentive, the [[incentivizedItem]], the [[incentiveAmount]], the [[incentiveStatus]], [[incentiveType]], the [[provider]] of the incentive, and [[eligibleWithSupplier]].</p>
2177
+ *
2178
+ * <p>Optionally contains criteria on whether the incentive is limited based on [[purchaseType]], [[purchasePriceLimit]], [[incomeLimit]], and the [[qualifiedExpense]].
2179
+ *
2180
+ */
2181
+ "FinancialIncentive": NamedNode<'http://schema.org/FinancialIncentive'>;
2091
2182
  /** A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry. */
2092
2183
  "FinancialProduct": NamedNode<'http://schema.org/FinancialProduct'>;
2093
2184
  /** Financial services business. */
@@ -2123,7 +2214,7 @@ export interface Schema {
2123
2214
  "FloorPlan": NamedNode<'http://schema.org/FloorPlan'>;
2124
2215
  /**
2125
2216
  * The size of the accommodation, e.g. in square meter or squarefoot.
2126
- * Typical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard
2217
+ * Typical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard.
2127
2218
  */
2128
2219
  "floorSize": NamedNode<'http://schema.org/floorSize'>;
2129
2220
  /** A florist. */
@@ -2152,7 +2243,7 @@ export interface Schema {
2152
2243
  "FoodService": NamedNode<'http://schema.org/FoodService'>;
2153
2244
  /** Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug. */
2154
2245
  "foodWarning": NamedNode<'http://schema.org/foodWarning'>;
2155
- /** A person who founded this organization. */
2246
+ /** A person or organization who founded this organization. */
2156
2247
  "founder": NamedNode<'http://schema.org/founder'>;
2157
2248
  /** A person who founded this organization. */
2158
2249
  "founders": NamedNode<'http://schema.org/founders'>;
@@ -2184,6 +2275,20 @@ export interface Schema {
2184
2275
  "fuelEfficiency": NamedNode<'http://schema.org/fuelEfficiency'>;
2185
2276
  /** The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle. */
2186
2277
  "fuelType": NamedNode<'http://schema.org/fuelType'>;
2278
+ /** Type of fulfillment applicable to the [[ShippingService]]. */
2279
+ "fulfillmentType": NamedNode<'http://schema.org/fulfillmentType'>;
2280
+ /** Fulfillment to a collection point location. */
2281
+ "FulfillmentTypeCollectionPoint": NamedNode<'http://schema.org/FulfillmentTypeCollectionPoint'>;
2282
+ /** Fulfillment to a customer selected address. */
2283
+ "FulfillmentTypeDelivery": NamedNode<'http://schema.org/FulfillmentTypeDelivery'>;
2284
+ /** A type of product fulfillment. */
2285
+ "FulfillmentTypeEnumeration": NamedNode<'http://schema.org/FulfillmentTypeEnumeration'>;
2286
+ /** Fulfillment through pick-up drop-off locations. */
2287
+ "FulfillmentTypePickupDropoff": NamedNode<'http://schema.org/FulfillmentTypePickupDropoff'>;
2288
+ /** Fulfillment through pick-up in a store. */
2289
+ "FulfillmentTypePickupInStore": NamedNode<'http://schema.org/FulfillmentTypePickupInStore'>;
2290
+ /** Fulfillment to a customer selected address after scheduling with the customer. */
2291
+ "FulfillmentTypeScheduledDelivery": NamedNode<'http://schema.org/FulfillmentTypeScheduledDelivery'>;
2187
2292
  /** Indicates full game availability. */
2188
2293
  "FullGameAvailability": NamedNode<'http://schema.org/FullGameAvailability'>;
2189
2294
  /** Specifies that a refund can be done in the full amount the customer paid for the product. */
@@ -2249,7 +2354,7 @@ export interface Schema {
2249
2354
  "Gastroenterologic": NamedNode<'http://schema.org/Gastroenterologic'>;
2250
2355
  /** Residence type: Gated community. */
2251
2356
  "GatedResidenceCommunity": NamedNode<'http://schema.org/GatedResidenceCommunity'>;
2252
- /** Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of "Mixed". */
2357
+ /** Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who are not a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of "Mixed". */
2253
2358
  "gender": NamedNode<'http://schema.org/gender'>;
2254
2359
  /** An enumeration of genders. */
2255
2360
  "GenderType": NamedNode<'http://schema.org/GenderType'>;
@@ -2350,7 +2455,11 @@ export interface Schema {
2350
2455
  "Grant": NamedNode<'http://schema.org/Grant'>;
2351
2456
  /** The person, organization, contact point, or audience that has been granted this permission. */
2352
2457
  "grantee": NamedNode<'http://schema.org/grantee'>;
2353
- /** Book format: GraphicNovel. May represent a bound collection of ComicIssue instances. */
2458
+ /**
2459
+ * This type is deprecated: GraphicNovel does not fit the BookFormatType enumeration, as it can appear in multiple formats (e.g., Hardcover, eBook). It is not mutually exclusive and therefore deprecated. Use standard BookFormatType values instead in combination with the SequentialArt.
2460
+ *
2461
+ * Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.
2462
+ */
2354
2463
  "GraphicNovel": NamedNode<'http://schema.org/GraphicNovel'>;
2355
2464
  /** This ordering relation for qualitative values indicates that the subject is greater than the object. */
2356
2465
  "greater": NamedNode<'http://schema.org/greater'>;
@@ -2363,7 +2472,10 @@ export interface Schema {
2363
2472
  /**
2364
2473
  * A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes.
2365
2474
  *
2366
- * The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809) for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a "GS1 Digital Link" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.
2475
+ * A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a "GS1 Digital Link" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.
2476
+ *
2477
+ * The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) expresses GTINs as URLs (URIs, IRIs, etc.).
2478
+ * Digital Links should be populated into the [[hasGS1DigitalLink]] attribute.
2367
2479
  *
2368
2480
  * Note also that this is a definition for how to include GTINs in Schema.org data, and not a definition of GTINs in general - see the GS1 documentation for authoritative details.
2369
2481
  */
@@ -2392,9 +2504,15 @@ export interface Schema {
2392
2504
  "HairSalon": NamedNode<'http://schema.org/HairSalon'>;
2393
2505
  /** A diet conforming to Islamic dietary practices. */
2394
2506
  "HalalDiet": NamedNode<'http://schema.org/HalalDiet'>;
2395
- /** The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as "d"), i.e. only counting days when the business normally operates. */
2507
+ /**
2508
+ * The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.
2509
+ *
2510
+ * In the context of [[ShippingDeliveryTime]], Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as "d"), i.e. only counting days when the business normally operates.
2511
+ *
2512
+ * In the context of [[ShippingService]], use the [[ServicePeriod]] format, that contains the same information in a structured form, with cut-off time, business days and duration.
2513
+ */
2396
2514
  "handlingTime": NamedNode<'http://schema.org/handlingTime'>;
2397
- /** Book format: Hardcover. */
2515
+ /** A durable, archival-quality book featuring a rigid protective shell made of heavy board wrapped in cloth or paper, designed to withstand heavy use and preservation on a shelf. */
2398
2516
  "Hardcover": NamedNode<'http://schema.org/Hardcover'>;
2399
2517
  /** A hardware store. */
2400
2518
  "HardwareStore": NamedNode<'http://schema.org/HardwareStore'>;
@@ -2408,6 +2526,8 @@ export interface Schema {
2408
2526
  "hasBroadcastChannel": NamedNode<'http://schema.org/hasBroadcastChannel'>;
2409
2527
  /** A Category code contained in this code set. */
2410
2528
  "hasCategoryCode": NamedNode<'http://schema.org/hasCategoryCode'>;
2529
+ /** Certification information about a product, organization, service, place, or person. */
2530
+ "hasCertification": NamedNode<'http://schema.org/hasCertification'>;
2411
2531
  /** A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program. */
2412
2532
  "hasCourse": NamedNode<'http://schema.org/hasCourse'>;
2413
2533
  /** 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. */
@@ -2426,12 +2546,16 @@ export interface Schema {
2426
2546
  "hasEnergyConsumptionDetails": NamedNode<'http://schema.org/hasEnergyConsumptionDetails'>;
2427
2547
  /** Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard. */
2428
2548
  "hasEnergyEfficiencyCategory": NamedNode<'http://schema.org/hasEnergyEfficiencyCategory'>;
2549
+ /** The <a href="https://www.gs1.org/standards/gs1-digital-link">GS1 digital link</a> associated with the object. This URL should conform to the particular requirements of digital links. The link should only contain the Application Identifiers (AIs) that are relevant for the entity being annotated, for instance a [[Product]] or an [[Organization]], and for the correct granularity. In particular, for products:<ul><li>A Digital Link that contains a serial number (AI <code>21</code>) should only be present on instances of [[IndividualProduct]]</li><li>A Digital Link that contains a lot number (AI <code>10</code>) should be annotated as [[SomeProduct]] if only products from that lot are sold, or [[IndividualProduct]] if there is only a specific product.</li><li>A Digital Link that contains a global model number (AI <code>8013</code>) should be attached to a [[Product]] or a [[ProductModel]].</li></ul> Other item types should be adapted similarly. */
2550
+ "hasGS1DigitalLink": NamedNode<'http://schema.org/hasGS1DigitalLink'>;
2429
2551
  /** Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects. */
2430
2552
  "hasHealthAspect": NamedNode<'http://schema.org/hasHealthAspect'>;
2431
2553
  /** A URL to a map of the place. */
2432
2554
  "hasMap": NamedNode<'http://schema.org/hasMap'>;
2433
- /** A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings. */
2555
+ /** A measurement of an item, For example, the inseam of pants, the wheel size of a bicycle, the gauge of a screw, or the carbon footprint measured for certification by an authority. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings. */
2434
2556
  "hasMeasurement": NamedNode<'http://schema.org/hasMeasurement'>;
2557
+ /** MemberProgram offered by an Organization, for example an eCommerce merchant or an airline. */
2558
+ "hasMemberProgram": NamedNode<'http://schema.org/hasMemberProgram'>;
2435
2559
  /** Either the actual menu as a structured representation, as text, or a URL of the menu. */
2436
2560
  "hasMenu": NamedNode<'http://schema.org/hasMenu'>;
2437
2561
  /** A food or drink item contained in a menu or menu section. */
@@ -2448,10 +2572,24 @@ export interface Schema {
2448
2572
  "hasOfferCatalog": NamedNode<'http://schema.org/hasOfferCatalog'>;
2449
2573
  /** Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). */
2450
2574
  "hasPart": NamedNode<'http://schema.org/hasPart'>;
2575
+ /** An offer to participate in the event, for example, Call for Proposals, Call for Speakers, or Call for Performers. */
2576
+ "hasParticipationOffer": NamedNode<'http://schema.org/hasParticipationOffer'>;
2451
2577
  /** Points-of-Sales operated by the organization or person. */
2452
2578
  "hasPOS": NamedNode<'http://schema.org/hasPOS'>;
2453
2579
  /** A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image. */
2454
2580
  "hasRepresentation": NamedNode<'http://schema.org/hasRepresentation'>;
2581
+ /** Specification of a shipping service offered by the organization. */
2582
+ "hasShippingService": NamedNode<'http://schema.org/hasShippingService'>;
2583
+ /** An offer to sponsor the event, for example, Sponsorship Prospectus, Sponsorship Opportunities, or Sponsor Packages. */
2584
+ "hasSponsorshipOffer": NamedNode<'http://schema.org/hasSponsorshipOffer'>;
2585
+ /** An eCommerce store part of an online marketplace. */
2586
+ "hasStore": NamedNode<'http://schema.org/hasStore'>;
2587
+ /** A member benefit for a particular tier of a loyalty program. */
2588
+ "hasTierBenefit": NamedNode<'http://schema.org/hasTierBenefit'>;
2589
+ /** A requirement for a user to join a membership tier, for example: a CreditCard if the tier requires sign up for a credit card, A UnitPriceSpecification if the user is required to pay a (periodic) fee, or a MonetaryAmount if the user needs to spend a minimum amount to join the tier. If a tier is free to join then this property does not need to be specified. */
2590
+ "hasTierRequirement": NamedNode<'http://schema.org/hasTierRequirement'>;
2591
+ /** The tiers of a member program. */
2592
+ "hasTiers": NamedNode<'http://schema.org/hasTiers'>;
2455
2593
  /** Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]). */
2456
2594
  "hasVariant": NamedNode<'http://schema.org/hasVariant'>;
2457
2595
  /** Head assessment with clinical examination. */
@@ -2554,7 +2692,7 @@ export interface Schema {
2554
2692
  *
2555
2693
  */
2556
2694
  "Hostel": NamedNode<'http://schema.org/Hostel'>;
2557
- /** The organization (airline, travelers' club, etc.) the membership is made with. */
2695
+ /** The Organization (airline, travelers' club, retailer, etc.) the membership is made with or which offers the MemberProgram. */
2558
2696
  "hostingOrganization": NamedNode<'http://schema.org/hostingOrganization'>;
2559
2697
  /**
2560
2698
  * A hotel is an establishment that provides lodging paid on a short-term basis (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).
@@ -2641,10 +2779,131 @@ export interface Schema {
2641
2779
  "inAlbum": NamedNode<'http://schema.org/inAlbum'>;
2642
2780
  /** The CableOrSatelliteService offering the channel. */
2643
2781
  "inBroadcastLineup": NamedNode<'http://schema.org/inBroadcastLineup'>;
2782
+ /**
2783
+ * Describes the amount that can be redeemed from this incentive.
2784
+ *
2785
+ * <p>[[QuantitativeValue]]: Use this for incentives based on price (either raw amount or percentage-based). For a raw amount example, "You can claim $2,500 - $7,500 from the total cost of installation" would be represented as the following:</p>
2786
+ * {
2787
+ * "@type": "QuantitativeValue",
2788
+ * “minValue”: 2500,
2789
+ * “maxValue”: 7500,
2790
+ * "unitCode": "USD"
2791
+ * }
2792
+ * <p>[[QuantitivateValue]] can also be used for percentage amounts. In such cases, value is used to represent the incentive’s percentage, while maxValue represents a limit (if one exists) to that incentive. The unitCode should be 'P1' and the unitText should be '%', while valueReference should be used for holding the currency type. For example, "You can claim up to 30% of the total cost of installation, up to a maximum of $7,500" would be:</p>
2793
+ * {
2794
+ * "@type": "QuantitativeValue",
2795
+ * "value": 30,
2796
+ * "unitCode": "P1",
2797
+ * "unitText": "%",
2798
+ * “maxValue”: 7500,
2799
+ * “valueReference”: “USD”
2800
+ * }
2801
+ * <p>[[UnitPriceSpecification]]: Use this for incentives that are based on amounts rather than price. For example, a net metering rebate that pays $10/kWh, up to $1,000:</p>
2802
+ * {
2803
+ * "@type": "UnitPriceSpecification",
2804
+ * "price": 10,
2805
+ * "priceCurrency": "USD",
2806
+ * "referenceQuantity": 1,
2807
+ * "unitCode": "DO3",
2808
+ * "unitText": "kw/h",
2809
+ * "maxPrice": 1000,
2810
+ * "description": "$10 / kwh up to $1000"
2811
+ * }
2812
+ * <p>[[LoanOrCredit]]: Use for incentives that are loan based. For example, a loan of $4,000 - $50,000 with a repayment term of 10 years, interest free would look like:</p>
2813
+ * {
2814
+ * "@type": "LoanOrCredit",
2815
+ * "loanTerm": {
2816
+ * "@type":"QuantitativeValue",
2817
+ * "value":"10",
2818
+ * "unitCode": "ANN"
2819
+ * },
2820
+ * "amount":[
2821
+ * {
2822
+ * "@type": "QuantitativeValue",
2823
+ * "Name":"fixed interest rate",
2824
+ * "value":"0",
2825
+ * },
2826
+ * ],
2827
+ * "amount":[
2828
+ * {
2829
+ * "@type": "MonetaryAmount",
2830
+ * "Name":"min loan amount",
2831
+ * "value":"4000",
2832
+ * "currency":"CAD"
2833
+ * },
2834
+ * {
2835
+ * "@type": "MonetaryAmount",
2836
+ * "Name":"max loan amount",
2837
+ * "value":"50000",
2838
+ * "currency":"CAD"
2839
+ * }
2840
+ * ],
2841
+ * }
2842
+ *
2843
+ * In summary: <ul><li>Use [[QuantitativeValue]] for absolute/percentage-based incentives applied on the price of a good/service.</li>
2844
+ * <li>Use [[UnitPriceSpecification]] for incentives based on a per-unit basis (e.g. net metering).</li>
2845
+ * <li>Use [[LoanOrCredit]] for loans/credits.</li>
2846
+ * </ul>.
2847
+ */
2848
+ "incentiveAmount": NamedNode<'http://schema.org/incentiveAmount'>;
2644
2849
  /** Description of bonus and commission compensation aspects of the job. */
2645
2850
  "incentiveCompensation": NamedNode<'http://schema.org/incentiveCompensation'>;
2851
+ /** The types of expenses that are covered by the incentive. For example some incentives are only for the goods (tangible items) but the services (labor) are excluded. */
2852
+ "IncentiveQualifiedExpenseType": NamedNode<'http://schema.org/IncentiveQualifiedExpenseType'>;
2853
+ /** This incentive applies to goods only. */
2854
+ "IncentiveQualifiedExpenseTypeGoodsOnly": NamedNode<'http://schema.org/IncentiveQualifiedExpenseTypeGoodsOnly'>;
2855
+ /** This incentive can apply to either goods or services (or both). */
2856
+ "IncentiveQualifiedExpenseTypeGoodsOrServices": NamedNode<'http://schema.org/IncentiveQualifiedExpenseTypeGoodsOrServices'>;
2857
+ /** This incentive applies to services only. */
2858
+ "IncentiveQualifiedExpenseTypeServicesOnly": NamedNode<'http://schema.org/IncentiveQualifiedExpenseTypeServicesOnly'>;
2859
+ /** This incentive applies to utility bills. */
2860
+ "IncentiveQualifiedExpenseTypeUtilityBill": NamedNode<'http://schema.org/IncentiveQualifiedExpenseTypeUtilityBill'>;
2646
2861
  /** Description of bonus and commission compensation aspects of the job. */
2647
2862
  "incentives": NamedNode<'http://schema.org/incentives'>;
2863
+ /** The status of the incentive (active, on hold, retired, etc.). */
2864
+ "incentiveStatus": NamedNode<'http://schema.org/incentiveStatus'>;
2865
+ /** Enumerates a status for an incentive, such as whether it is active. */
2866
+ "IncentiveStatus": NamedNode<'http://schema.org/IncentiveStatus'>;
2867
+ /** This incentive is currently active. */
2868
+ "IncentiveStatusActive": NamedNode<'http://schema.org/IncentiveStatusActive'>;
2869
+ /** This incentive is currently being developed, and may become active/retired in the future. */
2870
+ "IncentiveStatusInDevelopment": NamedNode<'http://schema.org/IncentiveStatusInDevelopment'>;
2871
+ /** This incentive is currently active, but may not be accepting new applicants (e.g. max number of redemptions reached for a year) */
2872
+ "IncentiveStatusOnHold": NamedNode<'http://schema.org/IncentiveStatusOnHold'>;
2873
+ /** This incentive is not longer available. */
2874
+ "IncentiveStatusRetired": NamedNode<'http://schema.org/IncentiveStatusRetired'>;
2875
+ /** The type of incentive offered (tax credit/rebate, tax deduction, tax waiver, subsidies, etc.). */
2876
+ "incentiveType": NamedNode<'http://schema.org/incentiveType'>;
2877
+ /** Enumerates common financial incentives for products, including tax credits, tax deductions, rebates and subsidies, etc. */
2878
+ "IncentiveType": NamedNode<'http://schema.org/IncentiveType'>;
2879
+ /** An incentive where the recipient can receive additional funding for the purchase/lease of the good/service, which must be paid back. */
2880
+ "IncentiveTypeLoan": NamedNode<'http://schema.org/IncentiveTypeLoan'>;
2881
+ /** An incentive that reduces the purchase/lease cost of the good/service in question. */
2882
+ "IncentiveTypeRebateOrSubsidy": NamedNode<'http://schema.org/IncentiveTypeRebateOrSubsidy'>;
2883
+ /** An incentive that directly reduces the amount of tax owed by the recipient. */
2884
+ "IncentiveTypeTaxCredit": NamedNode<'http://schema.org/IncentiveTypeTaxCredit'>;
2885
+ /** An incentive that reduces the recipient's amount of taxable income. */
2886
+ "IncentiveTypeTaxDeduction": NamedNode<'http://schema.org/IncentiveTypeTaxDeduction'>;
2887
+ /** An incentive that reduces/exempts the recipient from taxation applicable to the incentivized good/service (e.g. luxury taxes, registration taxes, circulation tax). */
2888
+ "IncentiveTypeTaxWaiver": NamedNode<'http://schema.org/IncentiveTypeTaxWaiver'>;
2889
+ /**
2890
+ * The type or specific product(s) and/or service(s) being incentivized.
2891
+ * <p>DefinedTermSets are used for product and service categories such as the United Nations Standard Products and Services Code:</p>
2892
+ * {
2893
+ * "@type": "DefinedTerm",
2894
+ * "inDefinedTermSet": "https://www.unspsc.org/",
2895
+ * "termCode": "261315XX",
2896
+ * "name": "Photovoltaic module"
2897
+ * }
2898
+ *
2899
+ * <p>For a specific product or service, use the Product type:</p>
2900
+ * {
2901
+ * "@type": "Product",
2902
+ * "name": "Kenmore White 17" Microwave",
2903
+ * }
2904
+ * For multiple different incentivized items, use multiple [[DefinedTerm]] or [[Product]].
2905
+ */
2906
+ "incentivizedItem": NamedNode<'http://schema.org/incentivizedItem'>;
2648
2907
  /** Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations. */
2649
2908
  "inChI": NamedNode<'http://schema.org/inChI'>;
2650
2909
  /** InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm). */
@@ -2669,10 +2928,28 @@ export interface Schema {
2669
2928
  "includesObject": NamedNode<'http://schema.org/includesObject'>;
2670
2929
  /** A [[CategoryCodeSet]] that contains this category code. */
2671
2930
  "inCodeSet": NamedNode<'http://schema.org/inCodeSet'>;
2931
+ /**
2932
+ * Optional. Income limit for which the incentive is applicable for.
2933
+ *
2934
+ * <p>If MonetaryAmount is specified, this should be based on annualized income (e.g. if an incentive is limited to those making <$114,000 annually):</p>
2935
+ * {
2936
+ * "@type": "MonetaryAmount",
2937
+ * "maxValue": 114000,
2938
+ * "currency": "USD",
2939
+ * }
2940
+ *
2941
+ * Use Text for incentives that are limited based on other criteria, for example if an incentive is only available to recipients making 120% of the median poverty income in their area.
2942
+ */
2943
+ "incomeLimit": NamedNode<'http://schema.org/incomeLimit'>;
2672
2944
  /** The condition, complication, etc. influenced by this factor. */
2673
2945
  "increasesRiskOf": NamedNode<'http://schema.org/increasesRiskOf'>;
2674
2946
  /** A [[DefinedTermSet]] that contains this term. */
2675
2947
  "inDefinedTermSet": NamedNode<'http://schema.org/inDefinedTermSet'>;
2948
+ /**
2949
+ * An individual medical practitioner. For their official address use [[address]], for affiliations to hospitals use [[hospitalAffiliation]].
2950
+ * The [[practicesAt]] property can be used to indicate [[MedicalOrganization]] hospitals, clinics, pharmacies etc. where this physician practices.
2951
+ */
2952
+ "IndividualPhysician": NamedNode<'http://schema.org/IndividualPhysician'>;
2676
2953
  /** A single, identifiable product instance (e.g. a laptop with a particular serial number). */
2677
2954
  "IndividualProduct": NamedNode<'http://schema.org/IndividualProduct'>;
2678
2955
  /** The industry associated with the job position. */
@@ -2718,10 +2995,14 @@ export interface Schema {
2718
2995
  "Installment": NamedNode<'http://schema.org/Installment'>;
2719
2996
  /** URL at which the app may be installed, if different from the URL of the item. */
2720
2997
  "installUrl": NamedNode<'http://schema.org/installUrl'>;
2998
+ /** An event with no duration, like for instance a computer log entry. */
2999
+ "InstantaneousEvent": NamedNode<'http://schema.org/InstantaneousEvent'>;
2721
3000
  /** Indicates that the item is in stock. */
2722
3001
  "InStock": NamedNode<'http://schema.org/InStock'>;
2723
3002
  /** Indicates that the item is available only at physical locations. */
2724
3003
  "InStoreOnly": NamedNode<'http://schema.org/InStoreOnly'>;
3004
+ /** Payment in advance in some form of shop or kiosk for goods purchased online. */
3005
+ "InStorePrepay": NamedNode<'http://schema.org/InStorePrepay'>;
2725
3006
  /** Are in-store returns offered? (For more advanced return methods use the [[returnMethod]] property.) */
2726
3007
  "inStoreReturnsOffered": NamedNode<'http://schema.org/inStoreReturnsOffered'>;
2727
3008
  /** A person assigned to instruct or provide instructional assistance for the [[CourseInstance]]. */
@@ -2778,6 +3059,12 @@ export interface Schema {
2778
3059
  "InvoicePrice": NamedNode<'http://schema.org/InvoicePrice'>;
2779
3060
  /** Represents the broad notion of iOS-based operating systems. */
2780
3061
  "IOSPlatform": NamedNode<'http://schema.org/IOSPlatform'>;
3062
+ /**
3063
+ * <a href="https://www.iptc.org/">IPTC</a> "Digital Source" codes for use with the [[digitalSourceType]] property, providing information about the source for a digital media object.
3064
+ * In general these codes are not declared here to be mutually exclusive, although some combinations would be contradictory if applied simultaneously, or might be considered mutually incompatible by upstream maintainers of the definitions. See the IPTC <a href="https://www.iptc.org/std/photometadata/documentation/userguide/">documentation</a>
3065
+ * for <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">detailed definitions</a> of all terms.
3066
+ */
3067
+ "IPTCDigitalSourceEnumeration": NamedNode<'http://schema.org/IPTCDigitalSourceEnumeration'>;
2781
3068
  /** Whether the provider is accepting new patients. */
2782
3069
  "isAcceptingNewPatients": NamedNode<'http://schema.org/isAcceptingNewPatients'>;
2783
3070
  /** A flag to signal that the item, event, or place is accessible for free. */
@@ -2786,7 +3073,7 @@ export interface Schema {
2786
3073
  "isAccessoryOrSparePartFor": NamedNode<'http://schema.org/isAccessoryOrSparePartFor'>;
2787
3074
  /** True if the drug is available in a generic form (regardless of name). */
2788
3075
  "isAvailableGenerically": NamedNode<'http://schema.org/isAvailableGenerically'>;
2789
- /** A resource from which this work is derived or from which it is a modification or adaption. */
3076
+ /** A resource from which this work is derived or from which it is a modification or adaptation. */
2790
3077
  "isBasedOn": NamedNode<'http://schema.org/isBasedOn'>;
2791
3078
  /** A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html. */
2792
3079
  "isBasedOnUrl": NamedNode<'http://schema.org/isBasedOnUrl'>;
@@ -2808,7 +3095,7 @@ export interface Schema {
2808
3095
  "isLiveBroadcast": NamedNode<'http://schema.org/isLiveBroadcast'>;
2809
3096
  /** Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence. */
2810
3097
  "isLocatedInSubcellularLocation": NamedNode<'http://schema.org/isLocatedInSubcellularLocation'>;
2811
- /** An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](http://schema.org/leiCode), [duns](http://schema.org/duns) and [vatID](http://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. */
3098
+ /** An organization identifier as defined in [ISO 6523(-1)](https://en.wikipedia.org/wiki/ISO/IEC_6523). The identifier should be in the `XXXX:YYYYYY:ZZZ` or `XXXX:YYYYYY`format. Where `XXXX` is a 4 digit _ICD_ (International Code Designator), `YYYYYY` is an _OID_ (Organization Identifier) with all formatting characters (dots, dashes, spaces) removed with a maximal length of 35 characters, and `ZZZ` is an optional OPI (Organization Part Identifier) with a maximum length of 35 characters. The various components (ICD, OID, OPI) are joined with a colon character (ASCII `0x3a`). Note that many existing organization identifiers defined as attributes like [leiCode](http://schema.org/leiCode) (`0199`), [duns](http://schema.org/duns) (`0060`) or [GLN](http://schema.org/globalLocationNumber) (`0088`) can be expressed using ISO-6523. If possible, ISO-6523 codes should be preferred to populating [vatID](http://schema.org/vatID) or [taxID](http://schema.org/taxID), as ISO identifiers are less ambiguous. */
2812
3099
  "iso6523Code": NamedNode<'http://schema.org/iso6523Code'>;
2813
3100
  /** Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. */
2814
3101
  "isPartOf": NamedNode<'http://schema.org/isPartOf'>;
@@ -2828,12 +3115,16 @@ export interface Schema {
2828
3115
  "isSimilarTo": NamedNode<'http://schema.org/isSimilarTo'>;
2829
3116
  /** 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. */
2830
3117
  "issn": NamedNode<'http://schema.org/issn'>;
2831
- /** The organization issuing the ticket or permit. */
3118
+ /** The eCommerce marketplace this online store is on. */
3119
+ "isStoreOn": NamedNode<'http://schema.org/isStoreOn'>;
3120
+ /** The organization issuing the item, for example a [[Permit]], [[Ticket]], or [[Certification]]. */
2832
3121
  "issuedBy": NamedNode<'http://schema.org/issuedBy'>;
2833
3122
  /** The service through which the permit was granted. */
2834
3123
  "issuedThrough": NamedNode<'http://schema.org/issuedThrough'>;
2835
3124
  /** Identifies the issue of publication; for example, "iii" or "2". */
2836
3125
  "issueNumber": NamedNode<'http://schema.org/issueNumber'>;
3126
+ /** The member program this tier is a part of. */
3127
+ "isTierOf": NamedNode<'http://schema.org/isTierOf'>;
2837
3128
  /** This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings. */
2838
3129
  "isUnlabelledFallback": NamedNode<'http://schema.org/isUnlabelledFallback'>;
2839
3130
  /** Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group. */
@@ -2902,6 +3193,8 @@ export interface Schema {
2902
3193
  "Joint": NamedNode<'http://schema.org/Joint'>;
2903
3194
  /** Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based. */
2904
3195
  "jurisdiction": NamedNode<'http://schema.org/jurisdiction'>;
3196
+ /** Specifies that the consumer can keep the product, even when receiving a refund or store credit. */
3197
+ "KeepProduct": NamedNode<'http://schema.org/KeepProduct'>;
2905
3198
  /** Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property. */
2906
3199
  "keywords": NamedNode<'http://schema.org/keywords'>;
2907
3200
  /** A textual description of known damages, both repaired and unrepaired. */
@@ -2954,10 +3247,14 @@ export interface Schema {
2954
3247
  "LeaveAction": NamedNode<'http://schema.org/LeaveAction'>;
2955
3248
  /** The steering position is on the left side of the vehicle (viewed from the main direction of driving). */
2956
3249
  "LeftHandDriving": NamedNode<'http://schema.org/LeftHandDriving'>;
3250
+ /** The legal address of an organization which acts as the officially registered address used for legal and tax purposes. The legal address can be different from the place of operations of a business and other addresses can be part of an organization. */
3251
+ "legalAddress": NamedNode<'http://schema.org/legalAddress'>;
2957
3252
  /** A list of possible statuses for the legal force of a legislation. */
2958
3253
  "LegalForceStatus": NamedNode<'http://schema.org/LegalForceStatus'>;
2959
3254
  /** The official name of the organization, e.g. the registered company name. */
2960
3255
  "legalName": NamedNode<'http://schema.org/legalName'>;
3256
+ /** One or multiple persons who represent this organization legally such as CEO or sole administrator. */
3257
+ "legalRepresentative": NamedNode<'http://schema.org/legalRepresentative'>;
2961
3258
  /** A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). */
2962
3259
  "LegalService": NamedNode<'http://schema.org/LegalService'>;
2963
3260
  /** The drug or supplement's legal status, including any controlled substance schedules that apply. */
@@ -2966,16 +3263,28 @@ export interface Schema {
2966
3263
  "LegalValueLevel": NamedNode<'http://schema.org/LegalValueLevel'>;
2967
3264
  /** A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article). */
2968
3265
  "Legislation": NamedNode<'http://schema.org/Legislation'>;
3266
+ /** Another legislation that this legislation amends, introducing legal changes. */
3267
+ "legislationAmends": NamedNode<'http://schema.org/legislationAmends'>;
2969
3268
  /** 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. */
2970
3269
  "legislationApplies": NamedNode<'http://schema.org/legislationApplies'>;
2971
3270
  /** 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. */
2972
3271
  "legislationChanges": NamedNode<'http://schema.org/legislationChanges'>;
3272
+ /** Another legislation that this one sets into force. */
3273
+ "legislationCommences": NamedNode<'http://schema.org/legislationCommences'>;
2973
3274
  /** 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. */
2974
3275
  "legislationConsolidates": NamedNode<'http://schema.org/legislationConsolidates'>;
3276
+ /** Another legislation in which this one introduces textual changes, like correction of spelling mistakes, with no legal impact (for modifications that have legal impact, use <a href="/legislationAmends">legislationAmends</a>). */
3277
+ "legislationCorrects": NamedNode<'http://schema.org/legislationCorrects'>;
3278
+ /** The person or organization that countersigned the legislation. Depending on the legal context, a countersignature can indicate that the signed authority undertakes to assume responsibility for texts emanating from a person who is inviolable and irresponsible, (for example a King, Grand Duc or President), or that the authority is in charge of the implementation of the text. */
3279
+ "legislationCountersignedBy": NamedNode<'http://schema.org/legislationCountersignedBy'>;
2975
3280
  /** 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. */
2976
3281
  "legislationDate": NamedNode<'http://schema.org/legislationDate'>;
3282
+ /** The date at which the Legislation becomes applicable. This can sometimes be distinct from the date of entry into force : a text may come in force today, and state it will become applicable in 3 months. */
3283
+ "legislationDateOfApplicability": NamedNode<'http://schema.org/legislationDateOfApplicability'>;
2977
3284
  /** 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") */
2978
3285
  "legislationDateVersion": NamedNode<'http://schema.org/legislationDateVersion'>;
3286
+ /** Indicates that this Legislation ensures the implementation of another Legislation, for example by modifying national legislations so that they do not contradict to an EU regulation or decision. This implies a legal meaning. Transpositions of EU Directive should be captured with <a href="/legislationTransposes">legislationTransposes</a>. */
3287
+ "legislationEnsuresImplementationOf": NamedNode<'http://schema.org/legislationEnsuresImplementationOf'>;
2979
3288
  /** An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex. */
2980
3289
  "legislationIdentifier": NamedNode<'http://schema.org/legislationIdentifier'>;
2981
3290
  /** The jurisdiction from which the legislation originates. */
@@ -2988,6 +3297,8 @@ export interface Schema {
2988
3297
  "LegislationObject": NamedNode<'http://schema.org/LegislationObject'>;
2989
3298
  /** 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. */
2990
3299
  "legislationPassedBy": NamedNode<'http://schema.org/legislationPassedBy'>;
3300
+ /** Another legislation that this legislation repeals (cancels, abrogates). */
3301
+ "legislationRepeals": NamedNode<'http://schema.org/legislationRepeals'>;
2991
3302
  /** 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. */
2992
3303
  "legislationResponsible": NamedNode<'http://schema.org/legislationResponsible'>;
2993
3304
  /** 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. */
@@ -3016,6 +3327,8 @@ export interface Schema {
3016
3327
  "LibrarySystem": NamedNode<'http://schema.org/LibrarySystem'>;
3017
3328
  /** A license document that applies to this content, typically indicated by URL. */
3018
3329
  "license": NamedNode<'http://schema.org/license'>;
3330
+ /** A life event like baptism, communions, Bar Mitzvahs, Aqiqah, Namakarana, Miyamairi, burial, .... */
3331
+ "lifeEvent": NamedNode<'http://schema.org/lifeEvent'>;
3019
3332
  /** A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition. */
3020
3333
  "LifestyleModification": NamedNode<'http://schema.org/LifestyleModification'>;
3021
3334
  /** A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints. */
@@ -3038,7 +3351,7 @@ export interface Schema {
3038
3351
  "ListenAction": NamedNode<'http://schema.org/ListenAction'>;
3039
3352
  /** An list item, e.g. a step in a checklist or how-to description. */
3040
3353
  "ListItem": NamedNode<'http://schema.org/ListItem'>;
3041
- /** Represents the list price (the price a product is actually advertised for) of an offered product. */
3354
+ /** Represents the list price of an offered product. Typically the same as the [MSRP](http://schema.org/MSRP). */
3042
3355
  "ListPrice": NamedNode<'http://schema.org/ListPrice'>;
3043
3356
  /** Event type: Literary event. */
3044
3357
  "LiteraryEvent": NamedNode<'http://schema.org/LiteraryEvent'>;
@@ -3084,6 +3397,8 @@ export interface Schema {
3084
3397
  "lodgingUnitDescription": NamedNode<'http://schema.org/lodgingUnitDescription'>;
3085
3398
  /** Textual description of the unit type (including suite vs. room, size of bed, etc.). */
3086
3399
  "lodgingUnitType": NamedNode<'http://schema.org/lodgingUnitType'>;
3400
+ /** The action of logging into a device or application. */
3401
+ "LoginAction": NamedNode<'http://schema.org/LoginAction'>;
3087
3402
  /** An associated logo. */
3088
3403
  "logo": NamedNode<'http://schema.org/logo'>;
3089
3404
  /** The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). */
@@ -3112,6 +3427,8 @@ export interface Schema {
3112
3427
  "lyricist": NamedNode<'http://schema.org/lyricist'>;
3113
3428
  /** The words in the song. */
3114
3429
  "lyrics": NamedNode<'http://schema.org/lyrics'>;
3430
+ /** Indicates that the item is made to order (custom made). */
3431
+ "MadeToOrder": NamedNode<'http://schema.org/MadeToOrder'>;
3115
3432
  /** Indicates if this web page element is the main subject of the page. */
3116
3433
  "mainContentOfPage": NamedNode<'http://schema.org/mainContentOfPage'>;
3117
3434
  /** Indicates the primary entity described in some page or other CreativeWork. */
@@ -3141,7 +3458,7 @@ export interface Schema {
3141
3458
  "maps": NamedNode<'http://schema.org/maps'>;
3142
3459
  /** Indicates the kind of Map, from the MapCategoryType Enumeration. */
3143
3460
  "mapType": NamedNode<'http://schema.org/mapType'>;
3144
- /** A marginOfError for an [[Observation]]. */
3461
+ /** A [[marginOfError]] for an [[Observation]]. */
3145
3462
  "marginOfError": NamedNode<'http://schema.org/marginOfError'>;
3146
3463
  /** The act of marrying a person. */
3147
3464
  "MarryAction": NamedNode<'http://schema.org/MarryAction'>;
@@ -3167,7 +3484,7 @@ export interface Schema {
3167
3484
  "maximumIntake": NamedNode<'http://schema.org/maximumIntake'>;
3168
3485
  /** The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). */
3169
3486
  "maximumPhysicalAttendeeCapacity": NamedNode<'http://schema.org/maximumPhysicalAttendeeCapacity'>;
3170
- /** The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). */
3487
+ /** The maximum virtual attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). */
3171
3488
  "maximumVirtualAttendeeCapacity": NamedNode<'http://schema.org/maximumVirtualAttendeeCapacity'>;
3172
3489
  /** The highest price if the price is a range. */
3173
3490
  "maxPrice": NamedNode<'http://schema.org/maxPrice'>;
@@ -3177,20 +3494,24 @@ export interface Schema {
3177
3494
  "MayTreatHealthAspect": NamedNode<'http://schema.org/MayTreatHealthAspect'>;
3178
3495
  /** Description of the meals that will be provided or available for purchase. */
3179
3496
  "mealService": NamedNode<'http://schema.org/mealService'>;
3180
- /** The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties). */
3497
+ /** The measuredProperty of an [[Observation]], typically via its [[StatisticalVariable]]. There are various kinds of applicable [[Property]]: a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, Data Commons, Wikidata, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties). */
3181
3498
  "measuredProperty": NamedNode<'http://schema.org/measuredProperty'>;
3182
- /** The measuredValue of an [[Observation]]. */
3183
- "measuredValue": NamedNode<'http://schema.org/measuredValue'>;
3499
+ /** Identifies the denominator variable when an observation represents a ratio or percentage. */
3500
+ "measurementDenominator": NamedNode<'http://schema.org/measurementDenominator'>;
3501
+ /** A subproperty of [[measurementTechnique]] that can be used for specifying specific methods, in particular via [[MeasurementMethodEnum]]. */
3502
+ "measurementMethod": NamedNode<'http://schema.org/measurementMethod'>;
3503
+ /** Enumeration(s) for use with [[measurementMethod]]. */
3504
+ "MeasurementMethodEnum": NamedNode<'http://schema.org/MeasurementMethodEnum'>;
3505
+ /** Provides additional qualification to an observation. For example, a GDP observation measures the Nominal value. */
3506
+ "measurementQualifier": NamedNode<'http://schema.org/measurementQualifier'>;
3184
3507
  /**
3185
- * A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),
3186
- * corresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.
3187
- *
3188
- * For example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: "mass spectrometry" or "nmr spectroscopy" or "colorimetry" or "immunofluorescence".
3508
+ * A technique, method or technology used in an [[Observation]], [[StatisticalVariable]] or [[Dataset]] (or [[DataDownload]], [[DataCatalog]]), corresponding to the method used for measuring the corresponding variable(s) (for datasets, described using [[variableMeasured]]; for [[Observation]], a [[StatisticalVariable]]). Often but not necessarily each [[variableMeasured]] will have an explicit representation as (or mapping to) an property such as those defined in Schema.org, or other RDF vocabularies and "knowledge graphs". In that case the subproperty of [[variableMeasured]] called [[measuredProperty]] is applicable.
3189
3509
  *
3190
- * If the [[variableMeasured]] is "depression rating", the [[measurementTechnique]] could be "Zung Scale" or "HAM-D" or "Beck Depression Inventory".
3510
+ * The [[measurementTechnique]] property helps when extra clarification is needed about how a [[measuredProperty]] was measured. This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but can often serve as a high level summary for dataset discovery.
3191
3511
  *
3192
- * If there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].
3512
+ * For example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: "mass spectrometry" or "nmr spectroscopy" or "colorimetry" or "immunofluorescence". If the [[variableMeasured]] is "depression rating", the [[measurementTechnique]] could be "Zung Scale" or "HAM-D" or "Beck Depression Inventory".
3193
3513
  *
3514
+ * If there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]]. The value can also be from an enumeration, organized as a [[MeasurementMetholdEnumeration]].
3194
3515
  */
3195
3516
  "measurementTechnique": NamedNode<'http://schema.org/measurementTechnique'>;
3196
3517
  /** Enumeration of common measurement types (or dimensions), for example "chest" for a person, "inseam" for pants, "gauge" for screws, or "wheel" for bicycles. */
@@ -3199,6 +3520,8 @@ export interface Schema {
3199
3520
  "mechanismOfAction": NamedNode<'http://schema.org/mechanismOfAction'>;
3200
3521
  /** Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared). */
3201
3522
  "mediaAuthenticityCategory": NamedNode<'http://schema.org/mediaAuthenticityCategory'>;
3523
+ /** MediaEnumeration enumerations are lists of codes, labels etc. useful for describing media objects. They may be reflections of externally developed lists, or created at schema.org, or a combination. */
3524
+ "MediaEnumeration": NamedNode<'http://schema.org/MediaEnumeration'>;
3202
3525
  /** Web page type: Media gallery page. A mixed-media page that can contain media such as images, videos, and other multimedia. */
3203
3526
  "MediaGallery": NamedNode<'http://schema.org/MediaGallery'>;
3204
3527
  /** In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]]. */
@@ -3207,7 +3530,7 @@ export interface Schema {
3207
3530
  "MediaManipulationRatingEnumeration": NamedNode<'http://schema.org/MediaManipulationRatingEnumeration'>;
3208
3531
  /** The median value. */
3209
3532
  "median": NamedNode<'http://schema.org/median'>;
3210
- /** A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 [[AudioObject]]s). */
3533
+ /** A media object, such as an image, video, audio, or text object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's). */
3211
3534
  "MediaObject": NamedNode<'http://schema.org/MediaObject'>;
3212
3535
  /**
3213
3536
  * A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.
@@ -3327,6 +3650,10 @@ export interface Schema {
3327
3650
  "member": NamedNode<'http://schema.org/member'>;
3328
3651
  /** An Organization (or ProgramMembership) to which this Person or Organization belongs. */
3329
3652
  "memberOf": NamedNode<'http://schema.org/memberOf'>;
3653
+ /** A MemberProgram defines a loyalty (or membership) program that provides its members with certain benefits, for example better pricing, free shipping or returns, or the ability to earn loyalty points. Member programs may have multiple tiers, for example silver and gold members, each with different benefits. */
3654
+ "MemberProgram": NamedNode<'http://schema.org/MemberProgram'>;
3655
+ /** A MemberProgramTier specifies a tier under a loyalty (member) program, for example "gold". */
3656
+ "MemberProgramTier": NamedNode<'http://schema.org/MemberProgramTier'>;
3330
3657
  /** A member of this organization. */
3331
3658
  "members": NamedNode<'http://schema.org/members'>;
3332
3659
  /** A unique identifier for the membership. */
@@ -3377,12 +3704,14 @@ export interface Schema {
3377
3704
  "MiddleSchool": NamedNode<'http://schema.org/MiddleSchool'>;
3378
3705
  /** A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives. */
3379
3706
  "Midwifery": NamedNode<'http://schema.org/Midwifery'>;
3380
- /** The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles */
3707
+ /** The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles. */
3381
3708
  "mileageFromOdometer": NamedNode<'http://schema.org/mileageFromOdometer'>;
3382
3709
  /** Represents the minimum advertised price ("MAP") (as dictated by the manufacturer) of an offered product. */
3383
3710
  "MinimumAdvertisedPrice": NamedNode<'http://schema.org/MinimumAdvertisedPrice'>;
3384
3711
  /** The minimum payment required at this time. */
3385
3712
  "minimumPaymentDue": NamedNode<'http://schema.org/minimumPaymentDue'>;
3713
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/minorHumanEdits">minor human edits</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
3714
+ "MinorHumanEditsDigitalSource": NamedNode<'http://schema.org/MinorHumanEditsDigitalSource'>;
3386
3715
  /** The lowest price if the price is a range. */
3387
3716
  "minPrice": NamedNode<'http://schema.org/minPrice'>;
3388
3717
  /** The lower value of some characteristic or property. */
@@ -3481,6 +3810,8 @@ export interface Schema {
3481
3810
  "MulticellularParasite": NamedNode<'http://schema.org/MulticellularParasite'>;
3482
3811
  /** A trial that takes place at multiple centers. */
3483
3812
  "MultiCenterTrial": NamedNode<'http://schema.org/MultiCenterTrial'>;
3813
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/algorithmicMedia">algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
3814
+ "MultiFrameComputationalCaptureDigitalSource": NamedNode<'http://schema.org/MultiFrameComputationalCaptureDigitalSource'>;
3484
3815
  /** Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously. */
3485
3816
  "MultiPlayer": NamedNode<'http://schema.org/MultiPlayer'>;
3486
3817
  /** Whether multiple values are allowed for the property. Default is false. */
@@ -3549,6 +3880,8 @@ export interface Schema {
3549
3880
  "naturalProgression": NamedNode<'http://schema.org/naturalProgression'>;
3550
3881
  /** Neck assessment with clinical examination. */
3551
3882
  "Neck": NamedNode<'http://schema.org/Neck'>;
3883
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/negativeFilm">negative film</a></a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
3884
+ "NegativeFilmDigitalSource": NamedNode<'http://schema.org/NegativeFilmDigitalSource'>;
3552
3885
  /**
3553
3886
  * Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry
3554
3887
  *
@@ -3564,7 +3897,7 @@ export interface Schema {
3564
3897
  "Nerve": NamedNode<'http://schema.org/Nerve'>;
3565
3898
  /** The neurological pathway extension that involves muscle control. */
3566
3899
  "nerveMotor": NamedNode<'http://schema.org/nerveMotor'>;
3567
- /** The total financial value of the person as calculated by subtracting assets from liabilities. */
3900
+ /** The total financial value of the person as calculated by subtracting the total value of liabilities from the total value of assets. */
3568
3901
  "netWorth": NamedNode<'http://schema.org/netWorth'>;
3569
3902
  /** Neurological system clinical examination. */
3570
3903
  "Neuro": NamedNode<'http://schema.org/Neuro'>;
@@ -3707,7 +4040,7 @@ export interface Schema {
3707
4040
  "numberOfAirbags": NamedNode<'http://schema.org/numberOfAirbags'>;
3708
4041
  /** Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]]. */
3709
4042
  "numberOfAvailableAccommodationUnits": NamedNode<'http://schema.org/numberOfAvailableAccommodationUnits'>;
3710
- /** The number of axles.\n\nTypical unit code(s): C62 */
4043
+ /** The number of axles.\n\nTypical unit code(s): C62. */
3711
4044
  "numberOfAxles": NamedNode<'http://schema.org/numberOfAxles'>;
3712
4045
  /** The total integer number of bathrooms in some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): "The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.". See also [[numberOfRooms]]. */
3713
4046
  "numberOfBathroomsTotal": NamedNode<'http://schema.org/numberOfBathroomsTotal'>;
@@ -3717,13 +4050,13 @@ export interface Schema {
3717
4050
  "numberOfBeds": NamedNode<'http://schema.org/numberOfBeds'>;
3718
4051
  /** The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram. */
3719
4052
  "numberOfCredits": NamedNode<'http://schema.org/numberOfCredits'>;
3720
- /** The number of doors.\n\nTypical unit code(s): C62 */
4053
+ /** The number of doors.\n\nTypical unit code(s): C62. */
3721
4054
  "numberOfDoors": NamedNode<'http://schema.org/numberOfDoors'>;
3722
4055
  /** The number of employees in an organization, e.g. business. */
3723
4056
  "numberOfEmployees": NamedNode<'http://schema.org/numberOfEmployees'>;
3724
4057
  /** The number of episodes in this season or series. */
3725
4058
  "numberOfEpisodes": NamedNode<'http://schema.org/numberOfEpisodes'>;
3726
- /** The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62 */
4059
+ /** The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62. */
3727
4060
  "numberOfForwardGears": NamedNode<'http://schema.org/numberOfForwardGears'>;
3728
4061
  /** Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field). */
3729
4062
  "numberOfFullBathrooms": NamedNode<'http://schema.org/numberOfFullBathrooms'>;
@@ -3737,7 +4070,7 @@ export interface Schema {
3737
4070
  "numberOfPartialBathrooms": NamedNode<'http://schema.org/numberOfPartialBathrooms'>;
3738
4071
  /** Indicate how many people can play this game (minimum, maximum, or range). */
3739
4072
  "numberOfPlayers": NamedNode<'http://schema.org/numberOfPlayers'>;
3740
- /** The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62 */
4073
+ /** The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62. */
3741
4074
  "numberOfPreviousOwners": NamedNode<'http://schema.org/numberOfPreviousOwners'>;
3742
4075
  /**
3743
4076
  * The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.
@@ -3748,8 +4081,10 @@ export interface Schema {
3748
4081
  "numberOfSeasons": NamedNode<'http://schema.org/numberOfSeasons'>;
3749
4082
  /** The number of children staying in the unit. */
3750
4083
  "numChildren": NamedNode<'http://schema.org/numChildren'>;
3751
- /** Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]]. */
4084
+ /** Indicates the number of constraints property values defined for a particular [[ConstraintNode]] such as [[StatisticalVariable]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalVariable]] or other construct that is defined using properties on template-style nodes. */
3752
4085
  "numConstraints": NamedNode<'http://schema.org/numConstraints'>;
4086
+ /** Limits the number of items being shipped for which these conditions apply. */
4087
+ "numItems": NamedNode<'http://schema.org/numItems'>;
3753
4088
  /** The number of tracks in this album or playlist. */
3754
4089
  "numTracks": NamedNode<'http://schema.org/numTracks'>;
3755
4090
  /** A health profession of a person formally educated and trained in the care of the sick or infirm person. */
@@ -3761,22 +4096,27 @@ export interface Schema {
3761
4096
  /** The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*. */
3762
4097
  "object": NamedNode<'http://schema.org/object'>;
3763
4098
  /**
3764
- * Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube "measure properties", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).
3765
- * See also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.
4099
+ * Instances of the class [[Observation]] are used to specify observations about an entity at a particular time. The principal properties of an [[Observation]] are [[observationAbout]], [[measuredProperty]], [[statType]], [[value] and [[observationDate]] and [[measuredProperty]]. Some but not all Observations represent a [[QuantitativeValue]]. Quantitative observations can be about a [[StatisticalVariable]], which is an abstract specification about which we can make observations that are grounded at a particular location and time.
4100
+ *
4101
+ * Observations can also encode a subset of simple RDF-like statements (its observationAbout, a StatisticalVariable, defining the measuredPoperty; its observationAbout property indicating the entity the statement is about, and [[value]] )
4102
+ *
4103
+ * In the context of a quantitative knowledge graph, typical properties could include [[measuredProperty]], [[observationAbout]], [[observationDate]], [[value]], [[unitCode]], [[unitText]], [[measurementMethod]].
3766
4104
  *
3767
4105
  */
3768
4106
  "Observation": NamedNode<'http://schema.org/Observation'>;
4107
+ /** The [[observationAbout]] property identifies an entity, often a [[Place]], associated with an [[Observation]]. */
4108
+ "observationAbout": NamedNode<'http://schema.org/observationAbout'>;
3769
4109
  /** An observational study design. */
3770
4110
  "Observational": NamedNode<'http://schema.org/Observational'>;
3771
4111
  /** The observationDate of an [[Observation]]. */
3772
4112
  "observationDate": NamedNode<'http://schema.org/observationDate'>;
3773
- /** The observedNode of an [[Observation]], often a [[StatisticalPopulation]]. */
3774
- "observedNode": NamedNode<'http://schema.org/observedNode'>;
4113
+ /** The length of time an Observation took place over. The format follows `P[0-9]*[Y|M|D|h|m|s]`. For example, P1Y is Period 1 Year, P3M is Period 3 Months, P3h is Period 3 hours. */
4114
+ "observationPeriod": NamedNode<'http://schema.org/observationPeriod'>;
3775
4115
  /** A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child. */
3776
4116
  "Obstetric": NamedNode<'http://schema.org/Obstetric'>;
3777
4117
  /**
3778
4118
  * The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).
3779
- * Typical unit code(s): C62 for person
4119
+ * Typical unit code(s): C62 for person.
3780
4120
  */
3781
4121
  "occupancy": NamedNode<'http://schema.org/occupancy'>;
3782
4122
  /** A profession, may involve prolonged training and/or a formal qualification. */
@@ -3846,7 +4186,7 @@ export interface Schema {
3846
4186
  "offersPrescriptionByMail": NamedNode<'http://schema.org/offersPrescriptionByMail'>;
3847
4187
  /** An office equipment store. */
3848
4188
  "OfficeEquipmentStore": NamedNode<'http://schema.org/OfficeEquipmentStore'>;
3849
- /** 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 an EU directive published by the EU Office of Publications). */
4189
+ /** 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). */
3850
4190
  "OfficialLegalValue": NamedNode<'http://schema.org/OfficialLegalValue'>;
3851
4191
  /** OfflineEventAttendanceMode - an event that is primarily conducted offline. */
3852
4192
  "OfflineEventAttendanceMode": NamedNode<'http://schema.org/OfflineEventAttendanceMode'>;
@@ -3868,6 +4208,8 @@ export interface Schema {
3868
4208
  "OnlineEventAttendanceMode": NamedNode<'http://schema.org/OnlineEventAttendanceMode'>;
3869
4209
  /** Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached. */
3870
4210
  "OnlineFull": NamedNode<'http://schema.org/OnlineFull'>;
4211
+ /** An eCommerce marketplace. */
4212
+ "OnlineMarketplace": NamedNode<'http://schema.org/OnlineMarketplace'>;
3871
4213
  /** Indicates that the item is available only online. */
3872
4214
  "OnlineOnly": NamedNode<'http://schema.org/OnlineOnly'>;
3873
4215
  /** An eCommerce site. */
@@ -3890,6 +4232,8 @@ export interface Schema {
3890
4232
  "OpenTrial": NamedNode<'http://schema.org/OpenTrial'>;
3891
4233
  /** Operating systems supported (Windows 7, OS X 10.6, Android 1.6). */
3892
4234
  "operatingSystem": NamedNode<'http://schema.org/operatingSystem'>;
4235
+ /** System software that manages computer hardware and software resources, and provides common services for computer programs. */
4236
+ "OperatingSystem": NamedNode<'http://schema.org/OperatingSystem'>;
3893
4237
  /** An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. */
3894
4238
  "OpinionNewsArticle": NamedNode<'http://schema.org/OpinionNewsArticle'>;
3895
4239
  /** A sub property of participant. The opponent on this action. */
@@ -3926,6 +4270,8 @@ export interface Schema {
3926
4270
  "orderNumber": NamedNode<'http://schema.org/orderNumber'>;
3927
4271
  /** OrderStatus representing that payment is due on an order. */
3928
4272
  "OrderPaymentDue": NamedNode<'http://schema.org/OrderPaymentDue'>;
4273
+ /** Value in the range [0.0 ; 1.0] representing the fraction of the value of the order that is charged as shipping cost. */
4274
+ "orderPercentage": NamedNode<'http://schema.org/orderPercentage'>;
3929
4275
  /** OrderStatus representing availability of an order for pickup. */
3930
4276
  "OrderPickupAvailable": NamedNode<'http://schema.org/OrderPickupAvailable'>;
3931
4277
  /** OrderStatus representing that there is a problem with the order. */
@@ -3940,6 +4286,8 @@ export interface Schema {
3940
4286
  "orderStatus": NamedNode<'http://schema.org/orderStatus'>;
3941
4287
  /** Enumerated status values for Order. */
3942
4288
  "OrderStatus": NamedNode<'http://schema.org/OrderStatus'>;
4289
+ /** Minimum and maximum order value for which these shipping conditions are valid. */
4290
+ "orderValue": NamedNode<'http://schema.org/orderValue'>;
3943
4291
  /** An organization such as a school, NGO, corporation, club, etc. */
3944
4292
  "Organization": NamedNode<'http://schema.org/Organization'>;
3945
4293
  /** A subclass of Role used to describe roles within organizations. */
@@ -3989,11 +4337,13 @@ export interface Schema {
3989
4337
  "ownedFrom": NamedNode<'http://schema.org/ownedFrom'>;
3990
4338
  /** The date and time of giving up ownership on the product. */
3991
4339
  "ownedThrough": NamedNode<'http://schema.org/ownedThrough'>;
4340
+ /** A person or organization who owns this Thing. */
4341
+ "owner": NamedNode<'http://schema.org/owner'>;
3992
4342
  /** For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable. */
3993
4343
  "ownershipFundingInfo": NamedNode<'http://schema.org/ownershipFundingInfo'>;
3994
4344
  /** A structured value providing information about when a certain organization or person owned a certain product. */
3995
4345
  "OwnershipInfo": NamedNode<'http://schema.org/OwnershipInfo'>;
3996
- /** Products owned by the organization or person. */
4346
+ /** Things owned by the organization or person. */
3997
4347
  "owns": NamedNode<'http://schema.org/owns'>;
3998
4348
  /** The page on which the work ends; for example "138" or "xvi". */
3999
4349
  "pageEnd": NamedNode<'http://schema.org/pageEnd'>;
@@ -4009,7 +4359,9 @@ export interface Schema {
4009
4359
  "Painting": NamedNode<'http://schema.org/Painting'>;
4010
4360
  /** A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition. */
4011
4361
  "PalliativeProcedure": NamedNode<'http://schema.org/PalliativeProcedure'>;
4012
- /** Book format: Paperback. */
4362
+ /** A small, unbound or stapled booklet consisting of few pages with a flexible paper cover, designed for the economical distribution of focused information on a single subject. */
4363
+ "Pamphlet": NamedNode<'http://schema.org/Pamphlet'>;
4364
+ /** A flexible, lightweight book bound with a thick paper or cardstock cover and glued spine, prioritizing portability and affordability over long-term durability. */
4013
4365
  "Paperback": NamedNode<'http://schema.org/Paperback'>;
4014
4366
  /** The delivery of a parcel either via the postal service or a commercial service. */
4015
4367
  "ParcelDelivery": NamedNode<'http://schema.org/ParcelDelivery'>;
@@ -4024,7 +4376,7 @@ export interface Schema {
4024
4376
  "ParentalSupport": NamedNode<'http://schema.org/ParentalSupport'>;
4025
4377
  /** A set of characteristics describing parents, who can be interested in viewing some content. */
4026
4378
  "ParentAudience": NamedNode<'http://schema.org/ParentAudience'>;
4027
- /** The parent of a question, answer or item in general. */
4379
+ /** The parent of a question, answer or item in general. Typically used for Q/A discussion threads e.g. a chain of comments with the first comment being an [[Article]] or other [[CreativeWork]]. See also [[comment]] which points from something to a comment about it. */
4028
4380
  "parentItem": NamedNode<'http://schema.org/parentItem'>;
4029
4381
  /** The larger organization that this organization is a [[subOrganization]] of, if any. */
4030
4382
  "parentOrganization": NamedNode<'http://schema.org/parentOrganization'>;
@@ -4104,13 +4456,14 @@ export interface Schema {
4104
4456
  "paymentDueDate": NamedNode<'http://schema.org/paymentDueDate'>;
4105
4457
  /** The name of the credit card or other method of payment for the order. */
4106
4458
  "paymentMethod": NamedNode<'http://schema.org/paymentMethod'>;
4107
- /**
4108
- * A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\n* http://purl.org/goodrelations/v1#ByInvoice\n* http://purl.org/goodrelations/v1#Cash\n* http://purl.org/goodrelations/v1#CheckInAdvance\n* http://purl.org/goodrelations/v1#COD\n* http://purl.org/goodrelations/v1#DirectDebit\n* http://purl.org/goodrelations/v1#GoogleCheckout\n* http://purl.org/goodrelations/v1#PayPal\n* http://purl.org/goodrelations/v1#PaySwarm
4109
- *
4110
- */
4459
+ /** A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. The following legacy values should be accepted: \n\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\n* http://purl.org/goodrelations/v1#ByInvoice\n* http://purl.org/goodrelations/v1#Cash\n* http://purl.org/goodrelations/v1#CheckInAdvance\n* http://purl.org/goodrelations/v1#COD\n* http://purl.org/goodrelations/v1#DirectDebit\n* http://purl.org/goodrelations/v1#GoogleCheckout\n* http://purl.org/goodrelations/v1#PayPal\n* http://purl.org/goodrelations/v1#PaySwarm\n\nStructured values, or [UNCE payment means](https://vocabulary.uncefact.org/PaymentMeans) are recommended or for newer annotations. */
4111
4460
  "PaymentMethod": NamedNode<'http://schema.org/PaymentMethod'>;
4112
4461
  /** An identifier for the method of payment used (e.g. the last 4 digits of the credit card). */
4113
4462
  "paymentMethodId": NamedNode<'http://schema.org/paymentMethodId'>;
4463
+ /** The type of a payment method. */
4464
+ "paymentMethodType": NamedNode<'http://schema.org/paymentMethodType'>;
4465
+ /** The type of payment method, only for generic payment types, specific forms of payments, like card payment should be expressed using subclasses of PaymentMethod. */
4466
+ "PaymentMethodType": NamedNode<'http://schema.org/PaymentMethodType'>;
4114
4467
  /** The payment is due and considered late. */
4115
4468
  "PaymentPastDue": NamedNode<'http://schema.org/PaymentPastDue'>;
4116
4469
  /** A Service to transfer funds from a person or organization to a beneficiary person or organization. */
@@ -4147,13 +4500,15 @@ export interface Schema {
4147
4500
  "performerIn": NamedNode<'http://schema.org/performerIn'>;
4148
4501
  /** The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor. */
4149
4502
  "performers": NamedNode<'http://schema.org/performers'>;
4503
+ /** Live performance <a class="localLink" href="http://schema.org/Event">Event of the performing arts (music, theatre, dance, acrobatics, spoken word), including performance art and performative sports (e.g. choreographed forms of martial arts, figure skating, competitive ballroom dancing).<br/><br/>Note: Use <a class="localLink" href="http://schema.org/additionalType">additionalType</a> to differentiate between productions / shows (PerformanceWork, EventSeries), tours (EventSeries), and individual performances. */
4504
+ "PerformingArtsEvent": NamedNode<'http://schema.org/PerformingArtsEvent'>;
4150
4505
  /** A theater or other performing art center. */
4151
4506
  "PerformingArtsTheater": NamedNode<'http://schema.org/PerformingArtsTheater'>;
4152
4507
  /** A performance group, such as a band, an orchestra, or a circus. */
4153
4508
  "PerformingGroup": NamedNode<'http://schema.org/PerformingGroup'>;
4154
4509
  /** The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). */
4155
4510
  "performTime": NamedNode<'http://schema.org/performTime'>;
4156
- /** A publication in any medium issued in successive parts bearing numerical or chronological designations and intended to continue indefinitely, such as a magazine, scholarly journal, or newspaper.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). */
4511
+ /** A publication in any medium issued in successive parts bearing numerical or chronological designations and intended to continue indefinitely, such as a magazine, scholarly journal, or newspaper.\n\nSee also [blog post](https://blog.schema.org/2014/09/02/schema-org-support-for-bibliographic-relationships-and-periodicals/). */
4157
4512
  "Periodical": NamedNode<'http://schema.org/Periodical'>;
4158
4513
  /** Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi). */
4159
4514
  "permissions": NamedNode<'http://schema.org/permissions'>;
@@ -4177,6 +4532,8 @@ export interface Schema {
4177
4532
  "Pharmacy": NamedNode<'http://schema.org/Pharmacy'>;
4178
4533
  /** The practice or art and science of preparing and dispensing drugs and medicines. */
4179
4534
  "PharmacySpecialty": NamedNode<'http://schema.org/PharmacySpecialty'>;
4535
+ /** Payment by billing via the phone carrier. */
4536
+ "PhoneCarrierPayment": NamedNode<'http://schema.org/PhoneCarrierPayment'>;
4180
4537
  /** Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/. */
4181
4538
  "phoneticText": NamedNode<'http://schema.org/phoneticText'>;
4182
4539
  /** A photograph of this place. */
@@ -4197,8 +4554,10 @@ export interface Schema {
4197
4554
  "physicalRequirement": NamedNode<'http://schema.org/physicalRequirement'>;
4198
4555
  /** A process of progressive physical care and rehabilitation aimed at improving a health condition. */
4199
4556
  "PhysicalTherapy": NamedNode<'http://schema.org/PhysicalTherapy'>;
4200
- /** A doctor's office. */
4557
+ /** An individual physician or a physician's office considered as a [[MedicalOrganization]]. */
4201
4558
  "Physician": NamedNode<'http://schema.org/Physician'>;
4559
+ /** A doctor's office or clinic. */
4560
+ "PhysiciansOffice": NamedNode<'http://schema.org/PhysiciansOffice'>;
4202
4561
  /** Specific physiologic benefits associated to the plan. */
4203
4562
  "physiologicalBenefits": NamedNode<'http://schema.org/physiologicalBenefits'>;
4204
4563
  /** The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery. */
@@ -4243,14 +4602,18 @@ export interface Schema {
4243
4602
  "Podiatric": NamedNode<'http://schema.org/Podiatric'>;
4244
4603
  /** A police station. */
4245
4604
  "PoliceStation": NamedNode<'http://schema.org/PoliceStation'>;
4605
+ /** Organization: Political Party. */
4606
+ "PoliticalParty": NamedNode<'http://schema.org/PoliticalParty'>;
4246
4607
  /** A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical. */
4247
4608
  "polygon": NamedNode<'http://schema.org/polygon'>;
4248
4609
  /** A pond. */
4249
4610
  "Pond": NamedNode<'http://schema.org/Pond'>;
4250
- /** Indicates the populationType common to all members of a [[StatisticalPopulation]]. */
4611
+ /** Indicates the populationType common to all members of a [[StatisticalPopulation]] or all cases within the scope of a [[StatisticalVariable]]. */
4251
4612
  "populationType": NamedNode<'http://schema.org/populationType'>;
4252
4613
  /** The position of an item in a series or sequence of items. */
4253
4614
  "position": NamedNode<'http://schema.org/position'>;
4615
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/positiveFilm">positive film</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
4616
+ "PositiveFilmDigitalSource": NamedNode<'http://schema.org/PositiveFilmDigitalSource'>;
4254
4617
  /**
4255
4618
  * Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.
4256
4619
  *
@@ -4291,6 +4654,8 @@ export interface Schema {
4291
4654
  "PotentialActionStatus": NamedNode<'http://schema.org/PotentialActionStatus'>;
4292
4655
  /** Intended use of the BioChemEntity by humans. */
4293
4656
  "potentialUse": NamedNode<'http://schema.org/potentialUse'>;
4657
+ /** A [[MedicalOrganization]] where the [[IndividualPhysician]] practices. */
4658
+ "practicesAt": NamedNode<'http://schema.org/practicesAt'>;
4294
4659
  /** A pointer from a previous, often discontinued variant of the product to its newer variant. */
4295
4660
  "predecessorOf": NamedNode<'http://schema.org/predecessorOf'>;
4296
4661
  /** Pregnancy category of this drug. */
@@ -4350,7 +4715,7 @@ export interface Schema {
4350
4715
  "priceSpecification": NamedNode<'http://schema.org/priceSpecification'>;
4351
4716
  /** A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc. */
4352
4717
  "PriceSpecification": NamedNode<'http://schema.org/PriceSpecification'>;
4353
- /** Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration. */
4718
+ /** Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or, a UN/EDIFACT 5387 code, or as a free form text string for price types that are not already predefined in PriceTypeEnumeration. */
4354
4719
  "priceType": NamedNode<'http://schema.org/priceType'>;
4355
4720
  /** Enumerates different price types, for example list price, invoice price, and sale price. */
4356
4721
  "PriceTypeEnumeration": NamedNode<'http://schema.org/PriceTypeEnumeration'>;
@@ -4364,6 +4729,8 @@ export interface Schema {
4364
4729
  "primaryPrevention": NamedNode<'http://schema.org/primaryPrevention'>;
4365
4730
  /** The number of the column in which the NewsArticle appears in the print edition. */
4366
4731
  "printColumn": NamedNode<'http://schema.org/printColumn'>;
4732
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/print">print</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
4733
+ "PrintDigitalSource": NamedNode<'http://schema.org/PrintDigitalSource'>;
4367
4734
  /** The edition of the print product in which the NewsArticle appears. */
4368
4735
  "printEdition": NamedNode<'http://schema.org/printEdition'>;
4369
4736
  /** If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18). */
@@ -4418,6 +4785,8 @@ export interface Schema {
4418
4785
  "ProfilePage": NamedNode<'http://schema.org/ProfilePage'>;
4419
4786
  /** Typical progression and happenings of life course of the topic. */
4420
4787
  "PrognosisHealthAspect": NamedNode<'http://schema.org/PrognosisHealthAspect'>;
4788
+ /** The [MemberProgram](http://schema.org/MemberProgram) associated with a [ProgramMembership](http://schema.org/ProgramMembership). */
4789
+ "program": NamedNode<'http://schema.org/program'>;
4421
4790
  /** Used to describe membership in a loyalty programs (e.g. "StarAliance"), traveler clubs (e.g. "AAA"), purchase clubs ("Safeway Club"), etc. */
4422
4791
  "ProgramMembership": NamedNode<'http://schema.org/ProgramMembership'>;
4423
4792
  /** Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation. */
@@ -4426,7 +4795,7 @@ export interface Schema {
4426
4795
  "programmingLanguage": NamedNode<'http://schema.org/programmingLanguage'>;
4427
4796
  /** Indicates whether API is managed or unmanaged. */
4428
4797
  "programmingModel": NamedNode<'http://schema.org/programmingModel'>;
4429
- /** The program providing the membership. */
4798
+ /** The program providing the membership. It is preferable to use [:program](http://schema.org/program) instead. */
4430
4799
  "programName": NamedNode<'http://schema.org/programName'>;
4431
4800
  /** Prerequisites for enrolling in the program. */
4432
4801
  "programPrerequisites": NamedNode<'http://schema.org/programPrerequisites'>;
@@ -4440,6 +4809,13 @@ export interface Schema {
4440
4809
  "Project": NamedNode<'http://schema.org/Project'>;
4441
4810
  /** Data type: PronounceableText. */
4442
4811
  "PronounceableText": NamedNode<'http://schema.org/PronounceableText'>;
4812
+ /**
4813
+ * A short string listing or describing pronouns for a person. Typically the person concerned is the best authority as pronouns are a critical part of personal identity and expression. Publishers and consumers of this information are reminded to treat this data responsibly, take country-specific laws related to gender expression into account, and be wary of out-of-date data and drawing unwarranted inferences about the person being described.
4814
+ *
4815
+ * In English, formulations such as "they/them", "she/her", and "he/him" are commonly used online and can also be used here. We do not intend to enumerate all possible micro-syntaxes in all languages. More structured and well-defined external values for pronouns can be referenced using the [[StructuredValue]] or [[DefinedTerm]] values.
4816
+ *
4817
+ */
4818
+ "pronouns": NamedNode<'http://schema.org/pronouns'>;
4443
4819
  /** A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property. */
4444
4820
  "Property": NamedNode<'http://schema.org/Property'>;
4445
4821
  /**
@@ -4458,7 +4834,7 @@ export interface Schema {
4458
4834
  "PropertyValueSpecification": NamedNode<'http://schema.org/PropertyValueSpecification'>;
4459
4835
  /** Proprietary name given to the diet plan, typically by its originator or creator. */
4460
4836
  "proprietaryName": NamedNode<'http://schema.org/proprietaryName'>;
4461
- /** Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring. */
4837
+ /** Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type :Protein. A protein can thus be a subclass of another protein, e.g. :Protein as a UniProt record can have multiple isoforms inside it which would also be :Protein. They can be imagined, synthetic, hypothetical or naturally occurring. */
4462
4838
  "Protein": NamedNode<'http://schema.org/Protein'>;
4463
4839
  /** The number of grams of protein. */
4464
4840
  "proteinContent": NamedNode<'http://schema.org/proteinContent'>;
@@ -4476,17 +4852,17 @@ export interface Schema {
4476
4852
  "Psychiatric": NamedNode<'http://schema.org/Psychiatric'>;
4477
4853
  /** A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs. */
4478
4854
  "PsychologicalTreatment": NamedNode<'http://schema.org/PsychologicalTreatment'>;
4479
- /** A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value */
4855
+ /** A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value. */
4480
4856
  "publicAccess": NamedNode<'http://schema.org/publicAccess'>;
4481
4857
  /** A publication event associated with the item. */
4482
4858
  "publication": NamedNode<'http://schema.org/publication'>;
4483
4859
  /** 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. */
4484
4860
  "PublicationEvent": NamedNode<'http://schema.org/PublicationEvent'>;
4485
- /** A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). */
4861
+ /** A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\n\nSee also [blog post](https://blog-schema.org/2014/09/02/schema-org-support-for-bibliographic-relationships-and-periodicals/). */
4486
4862
  "PublicationIssue": NamedNode<'http://schema.org/PublicationIssue'>;
4487
4863
  /** The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html). */
4488
4864
  "publicationType": NamedNode<'http://schema.org/publicationType'>;
4489
- /** A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). */
4865
+ /** A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\n\nSee also [blog post](https://blog-schema.org/2014/09/02/schema-org-support-for-bibliographic-relationships-and-periodicals/). */
4490
4866
  "PublicationVolume": NamedNode<'http://schema.org/PublicationVolume'>;
4491
4867
  /** Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine. */
4492
4868
  "PublicHealth": NamedNode<'http://schema.org/PublicHealth'>;
@@ -4502,7 +4878,7 @@ export interface Schema {
4502
4878
  "publishedBy": NamedNode<'http://schema.org/publishedBy'>;
4503
4879
  /** A broadcast service associated with the publication event. */
4504
4880
  "publishedOn": NamedNode<'http://schema.org/publishedOn'>;
4505
- /** The publisher of the creative work. */
4881
+ /** The publisher of the article in question. */
4506
4882
  "publisher": NamedNode<'http://schema.org/publisher'>;
4507
4883
  /** The publishing division which published the comic. */
4508
4884
  "publisherImprint": NamedNode<'http://schema.org/publisherImprint'>;
@@ -4517,10 +4893,26 @@ export interface Schema {
4517
4893
  "Pulmonary": NamedNode<'http://schema.org/Pulmonary'>;
4518
4894
  /** The date the item, e.g. vehicle, was purchased by the current owner. */
4519
4895
  "purchaseDate": NamedNode<'http://schema.org/purchaseDate'>;
4896
+ /** Optional. The maximum price the item can have and still qualify for this offer. */
4897
+ "purchasePriceLimit": NamedNode<'http://schema.org/purchasePriceLimit'>;
4898
+ /** Optional. The type of purchase the consumer must make in order to qualify for this incentive. */
4899
+ "purchaseType": NamedNode<'http://schema.org/purchaseType'>;
4900
+ /** Enumerates a purchase type for an item. */
4901
+ "PurchaseType": NamedNode<'http://schema.org/PurchaseType'>;
4902
+ /** This is a lease of an item. */
4903
+ "PurchaseTypeLease": NamedNode<'http://schema.org/PurchaseTypeLease'>;
4904
+ /** This is a purchase of a new item. */
4905
+ "PurchaseTypeNewPurchase": NamedNode<'http://schema.org/PurchaseTypeNewPurchase'>;
4906
+ /** This is a trade-in for an item. */
4907
+ "PurchaseTypeTradeIn": NamedNode<'http://schema.org/PurchaseTypeTradeIn'>;
4908
+ /** This is a purchase of a used item. */
4909
+ "PurchaseTypeUsedPurchase": NamedNode<'http://schema.org/PurchaseTypeUsedPurchase'>;
4520
4910
  /** A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs). */
4521
4911
  "QAPage": NamedNode<'http://schema.org/QAPage'>;
4522
4912
  /** Specific qualifications required for this role or Occupation. */
4523
4913
  "qualifications": NamedNode<'http://schema.org/qualifications'>;
4914
+ /** Optional. The types of expenses that are covered by the incentive. For example some incentives are only for the goods (tangible items) but the services (labor) are excluded. */
4915
+ "qualifiedExpense": NamedNode<'http://schema.org/qualifiedExpense'>;
4524
4916
  /** A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'. */
4525
4917
  "QualitativeValue": NamedNode<'http://schema.org/QualitativeValue'>;
4526
4918
  /** A point value or interval for product characteristics and other purposes. */
@@ -4607,7 +4999,7 @@ export interface Schema {
4607
4999
  "recipeCategory": NamedNode<'http://schema.org/recipeCategory'>;
4608
5000
  /** The cuisine of the recipe (for example, French or Ethiopian). */
4609
5001
  "recipeCuisine": NamedNode<'http://schema.org/recipeCuisine'>;
4610
- /** A single ingredient used in the recipe, e.g. sugar, flour or garlic. */
5002
+ /** An ingredient or ordered list of ingredients and potentially quantities used in the recipe, e.g. 1 cup of sugar, flour or garlic. The ingredients can be represented as free text or more structured values. */
4611
5003
  "recipeIngredient": NamedNode<'http://schema.org/recipeIngredient'>;
4612
5004
  /** 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. */
4613
5005
  "recipeInstructions": NamedNode<'http://schema.org/recipeInstructions'>;
@@ -4645,6 +5037,8 @@ export interface Schema {
4645
5037
  "RecyclingCenter": NamedNode<'http://schema.org/RecyclingCenter'>;
4646
5038
  /** A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc. */
4647
5039
  "ReducedRelevanceForChildrenConsideration": NamedNode<'http://schema.org/ReducedRelevanceForChildrenConsideration'>;
5040
+ /** An official who watches a game or match closely to enforce the rules and arbitrate on matters arising from the play such as referees, umpires or judges. The name of the effective function can vary according to the sport. */
5041
+ "referee": NamedNode<'http://schema.org/referee'>;
4648
5042
  /** The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit. */
4649
5043
  "referenceQuantity": NamedNode<'http://schema.org/referenceQuantity'>;
4650
5044
  /** The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice. */
@@ -4663,6 +5057,8 @@ export interface Schema {
4663
5057
  "RegisterAction": NamedNode<'http://schema.org/RegisterAction'>;
4664
5058
  /** A registry-based study design. */
4665
5059
  "Registry": NamedNode<'http://schema.org/Registry'>;
5060
+ /** Represents the regular price of an offered product. This is usually the advertised price before a temporary sale. Once the sale period ends the advertised price will go back to the regular price. */
5061
+ "RegularPrice": NamedNode<'http://schema.org/RegularPrice'>;
4666
5062
  /** The drug's cost represents the maximum reimbursement paid by an insurer for the drug. */
4667
5063
  "ReimbursementCap": NamedNode<'http://schema.org/ReimbursementCap'>;
4668
5064
  /** The act of rejecting to/adopting an object.\n\nRelated actions:\n\n* [[AcceptAction]]: The antonym of RejectAction. */
@@ -4792,10 +5188,14 @@ export interface Schema {
4792
5188
  "ReservationStatusType": NamedNode<'http://schema.org/ReservationStatusType'>;
4793
5189
  /** Reserving a concrete object.\n\nRelated actions:\n\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation. */
4794
5190
  "ReserveAction": NamedNode<'http://schema.org/ReserveAction'>;
5191
+ /** Indicates that the item is reserved and therefore not available. */
5192
+ "Reserved": NamedNode<'http://schema.org/Reserved'>;
4795
5193
  /** A ticket associated with the reservation. */
4796
5194
  "reservedTicket": NamedNode<'http://schema.org/reservedTicket'>;
4797
5195
  /** A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir. */
4798
5196
  "Reservoir": NamedNode<'http://schema.org/Reservoir'>;
5197
+ /** The action of resetting the password of a device or application. */
5198
+ "ResetPasswordAction": NamedNode<'http://schema.org/ResetPasswordAction'>;
4799
5199
  /** The place where a person lives. */
4800
5200
  "Residence": NamedNode<'http://schema.org/Residence'>;
4801
5201
  /**
@@ -4903,7 +5303,7 @@ export interface Schema {
4903
5303
  "RisksOrComplicationsHealthAspect": NamedNode<'http://schema.org/RisksOrComplicationsHealthAspect'>;
4904
5304
  /** A river (for example, the broad majestic Shannon). */
4905
5305
  "RiverBodyOfWater": NamedNode<'http://schema.org/RiverBodyOfWater'>;
4906
- /** Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html). */
5306
+ /** Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also [blog post](https://blog.schema.org/2014/06/16/introducing-role/). */
4907
5307
  "Role": NamedNode<'http://schema.org/Role'>;
4908
5308
  /** A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'. */
4909
5309
  "roleName": NamedNode<'http://schema.org/roleName'>;
@@ -4936,6 +5336,8 @@ export interface Schema {
4936
5336
  "runtime": NamedNode<'http://schema.org/runtime'>;
4937
5337
  /** Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0). */
4938
5338
  "runtimePlatform": NamedNode<'http://schema.org/runtimePlatform'>;
5339
+ /** Specialized software environment that provides the essential infrastructure, libraries, and services required to execute a program. */
5340
+ "RuntimePlatform": NamedNode<'http://schema.org/RuntimePlatform'>;
4939
5341
  /** A place offering space for "Recreational Vehicles", Caravans, mobile homes and the like. */
4940
5342
  "RVPark": NamedNode<'http://schema.org/RVPark'>;
4941
5343
  /** The RxCUI drug identifier from RXNORM. */
@@ -5002,6 +5404,8 @@ export interface Schema {
5002
5404
  "schoolClosuresInfo": NamedNode<'http://schema.org/schoolClosuresInfo'>;
5003
5405
  /** A School District is an administrative area for the administration of schools. */
5004
5406
  "SchoolDistrict": NamedNode<'http://schema.org/SchoolDistrict'>;
5407
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/algorithmicMedia">algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
5408
+ "ScreenCaptureDigitalSource": NamedNode<'http://schema.org/ScreenCaptureDigitalSource'>;
5005
5409
  /** The number of screens in the movie theater. */
5006
5410
  "screenCount": NamedNode<'http://schema.org/screenCount'>;
5007
5411
  /** A screening of a movie or other video. */
@@ -5012,7 +5416,7 @@ export interface Schema {
5012
5416
  "screenshot": NamedNode<'http://schema.org/screenshot'>;
5013
5417
  /** A piece of sculpture. */
5014
5418
  "Sculpture": NamedNode<'http://schema.org/Sculpture'>;
5015
- /** Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] */
5419
+ /** Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]. */
5016
5420
  "sdDatePublished": NamedNode<'http://schema.org/sdDatePublished'>;
5017
5421
  /** A license document that applies to this structured data, typically indicated by URL. */
5018
5422
  "sdLicense": NamedNode<'http://schema.org/sdLicense'>;
@@ -5033,13 +5437,15 @@ export interface Schema {
5033
5437
  "season": NamedNode<'http://schema.org/season'>;
5034
5438
  /** A media season, e.g. TV, radio, video game etc. */
5035
5439
  "Season": NamedNode<'http://schema.org/Season'>;
5440
+ /** Limited period during which these shipping conditions apply. */
5441
+ "seasonalOverride": NamedNode<'http://schema.org/seasonalOverride'>;
5036
5442
  /** Position of the season within an ordered group of seasons. */
5037
5443
  "seasonNumber": NamedNode<'http://schema.org/seasonNumber'>;
5038
5444
  /** A season in a media series. */
5039
5445
  "seasons": NamedNode<'http://schema.org/seasons'>;
5040
5446
  /** Used to describe a seat, such as a reserved seat in an event reservation. */
5041
5447
  "Seat": NamedNode<'http://schema.org/Seat'>;
5042
- /** The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\n\nTypical unit code(s): C62 for persons */
5448
+ /** The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\n\nTypical unit code(s): C62 for persons. */
5043
5449
  "seatingCapacity": NamedNode<'http://schema.org/seatingCapacity'>;
5044
5450
  /** A seating map. */
5045
5451
  "SeatingMap": NamedNode<'http://schema.org/SeatingMap'>;
@@ -5079,6 +5485,8 @@ export interface Schema {
5079
5485
  "sensoryRequirement": NamedNode<'http://schema.org/sensoryRequirement'>;
5080
5486
  /** The neurological pathway extension that inputs and sends information to the brain or spinal cord. */
5081
5487
  "sensoryUnit": NamedNode<'http://schema.org/sensoryUnit'>;
5488
+ /** An art forms that use images deployed in a specific order for the purpose of graphic storytelling (i.e., narration of graphic stories) or conveying information. Examples of SequentialArt are Franco-Belgian Bande Dessinée, Comics in the USA and 漫画 (Manga) in Japan. */
5489
+ "SequentialArt": NamedNode<'http://schema.org/SequentialArt'>;
5082
5490
  /** The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer. */
5083
5491
  "serialNumber": NamedNode<'http://schema.org/serialNumber'>;
5084
5492
  /** A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]]. */
@@ -5103,6 +5511,8 @@ export interface Schema {
5103
5511
  "serviceOperator": NamedNode<'http://schema.org/serviceOperator'>;
5104
5512
  /** The tangible thing generated by the service, e.g. a passport, permit, etc. */
5105
5513
  "serviceOutput": NamedNode<'http://schema.org/serviceOutput'>;
5514
+ /** ServicePeriod represents a duration with some constraints about cutoff time and business days. This is used e.g. in shipping for handling times or transit time. */
5515
+ "ServicePeriod": NamedNode<'http://schema.org/ServicePeriod'>;
5106
5516
  /** The phone number to use to access the service. */
5107
5517
  "servicePhone": NamedNode<'http://schema.org/servicePhone'>;
5108
5518
  /** The address for accessing the service by mail. */
@@ -5117,7 +5527,7 @@ export interface Schema {
5117
5527
  "servingSize": NamedNode<'http://schema.org/servingSize'>;
5118
5528
  /** The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys. */
5119
5529
  "SexualContentConsideration": NamedNode<'http://schema.org/SexualContentConsideration'>;
5120
- /** The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855' */
5530
+ /** The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'. */
5121
5531
  "sha256": NamedNode<'http://schema.org/sha256'>;
5122
5532
  /** The act of distributing content to people for their amusement or edification. */
5123
5533
  "ShareAction": NamedNode<'http://schema.org/ShareAction'>;
@@ -5125,22 +5535,24 @@ export interface Schema {
5125
5535
  "sharedContent": NamedNode<'http://schema.org/sharedContent'>;
5126
5536
  /** Printed music, as opposed to performed or recorded music. */
5127
5537
  "SheetMusic": NamedNode<'http://schema.org/SheetMusic'>;
5538
+ /** The conditions (constraints, price) applicable to the [[ShippingService]]. */
5539
+ "shippingConditions": NamedNode<'http://schema.org/shippingConditions'>;
5540
+ /** ShippingConditions represent a set of constraints and information about the conditions of shipping a product. Such conditions may apply to only a subset of the products being shipped, depending on aspects of the product like weight, size, price, destination, and others. All the specified conditions must be met for this ShippingConditions to apply. */
5541
+ "ShippingConditions": NamedNode<'http://schema.org/ShippingConditions'>;
5128
5542
  /** ShippingDeliveryTime provides various pieces of information about delivery times for shipping. */
5129
5543
  "ShippingDeliveryTime": NamedNode<'http://schema.org/ShippingDeliveryTime'>;
5130
5544
  /** indicates (possibly multiple) shipping destinations. These can be defined in several ways, e.g. postalCode ranges. */
5131
5545
  "shippingDestination": NamedNode<'http://schema.org/shippingDestination'>;
5132
5546
  /** Indicates information about the shipping policies and options associated with an [[Offer]]. */
5133
5547
  "shippingDetails": NamedNode<'http://schema.org/shippingDetails'>;
5134
- /** Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference). */
5135
- "shippingLabel": NamedNode<'http://schema.org/shippingLabel'>;
5136
5548
  /** Indicates the origin of a shipment, i.e. where it should be coming from. */
5137
5549
  "shippingOrigin": NamedNode<'http://schema.org/shippingOrigin'>;
5138
5550
  /** The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate. */
5139
5551
  "shippingRate": NamedNode<'http://schema.org/shippingRate'>;
5140
5552
  /** A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]]. */
5141
5553
  "ShippingRateSettings": NamedNode<'http://schema.org/ShippingRateSettings'>;
5142
- /** Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details. */
5143
- "shippingSettingsLink": NamedNode<'http://schema.org/shippingSettingsLink'>;
5554
+ /** ShippingService represents the criteria used to determine if and how an offer could be shipped to a customer. */
5555
+ "ShippingService": NamedNode<'http://schema.org/ShippingService'>;
5144
5556
  /** A shoe store. */
5145
5557
  "ShoeStore": NamedNode<'http://schema.org/ShoeStore'>;
5146
5558
  /** A shopping center or mall. */
@@ -5177,7 +5589,7 @@ export interface Schema {
5177
5589
  "SiteNavigationElement": NamedNode<'http://schema.org/SiteNavigationElement'>;
5178
5590
  /** A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. */
5179
5591
  "size": NamedNode<'http://schema.org/size'>;
5180
- /** The size group (also known as "size type") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example "men's big and tall", "petite maternity" or "regular" */
5592
+ /** The size group (also known as "size type") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example "men's big and tall", "petite maternity" or "regular". */
5181
5593
  "sizeGroup": NamedNode<'http://schema.org/sizeGroup'>;
5182
5594
  /** Enumerates common size groups for various product categories. */
5183
5595
  "SizeGroupEnumeration": NamedNode<'http://schema.org/SizeGroupEnumeration'>;
@@ -5191,7 +5603,7 @@ export interface Schema {
5191
5603
  "SizeSystemImperial": NamedNode<'http://schema.org/SizeSystemImperial'>;
5192
5604
  /** Metric size system. */
5193
5605
  "SizeSystemMetric": NamedNode<'http://schema.org/SizeSystemMetric'>;
5194
- /** A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation. */
5606
+ /** A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is either claimed by a person, an organization or desired or required to fulfill a role or to work in an occupation. */
5195
5607
  "skills": NamedNode<'http://schema.org/skills'>;
5196
5608
  /** Skin assessment with clinical examination. */
5197
5609
  "Skin": NamedNode<'http://schema.org/Skin'>;
@@ -5231,6 +5643,8 @@ export interface Schema {
5231
5643
  "SomeProducts": NamedNode<'http://schema.org/SomeProducts'>;
5232
5644
  /** SoundtrackAlbum. */
5233
5645
  "SoundtrackAlbum": NamedNode<'http://schema.org/SoundtrackAlbum'>;
5646
+ /** The source or cause of the event. */
5647
+ "source": NamedNode<'http://schema.org/source'>;
5234
5648
  /** The neurological pathway that originates the neurons. */
5235
5649
  "sourcedFrom": NamedNode<'http://schema.org/sourcedFrom'>;
5236
5650
  /** The Organization on whose behalf the creator was working. */
@@ -5388,11 +5802,14 @@ export interface Schema {
5388
5802
  "Statement": NamedNode<'http://schema.org/Statement'>;
5389
5803
  /**
5390
5804
  * A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.
5391
- * The properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of "population" used here is the general sense of a statistical
5392
- * population, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.
5393
- *
5805
+ * The properties [[numConstraints]] and [[constraintProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of "population" used here is the general sense of a statistical
5806
+ * population, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], where a [[populationType]] such as [[Person]] or [[Event]] can be indicated directly. In most cases it may be better to use [[StatisticalVariable]] instead of [[StatisticalPopulation]].
5394
5807
  */
5395
5808
  "StatisticalPopulation": NamedNode<'http://schema.org/StatisticalPopulation'>;
5809
+ /** [[StatisticalVariable]] represents any type of statistical metric that can be measured at a place and time. The usage pattern for [[StatisticalVariable]] is typically expressed using [[Observation]] with an explicit [[populationType]], which is a type, typically drawn from Schema.org. Each [[StatisticalVariable]] is marked as a [[ConstraintNode]], meaning that some properties (those listed using [[constraintProperty]]) serve in this setting solely to define the statistical variable rather than literally describe a specific person, place or thing. For example, a [[StatisticalVariable]] Median_Height_Person_Female representing the median height of women, could be written as follows: the population type is [[Person]]; the measuredProperty [[height]]; the [[statType]] [[median]]; the [[gender]] [[Female]]. It is important to note that there are many kinds of scientific quantitative observation which are not fully, perfectly or unambiguously described following this pattern, or with solely Schema.org terminology. The approach taken here is designed to allow partial, incremental or minimal description of [[StatisticalVariable]]s, and the use of detailed sets of entity and property IDs from external repositories. The [[measurementMethod]], [[unitCode]] and [[unitText]] properties can also be used to clarify the specific nature and notation of an observed measurement. */
5810
+ "StatisticalVariable": NamedNode<'http://schema.org/StatisticalVariable'>;
5811
+ /** Indicates the kind of statistic represented by a [[StatisticalVariable]], e.g. mean, count etc. The value of statType is a property, either from within Schema.org (e.g. [[median]], [[marginOfError]], [[maxValue]], [[minValue]]) or from other compatible (e.g. RDF) systems such as DataCommons.org or Wikidata.org. */
5812
+ "statType": NamedNode<'http://schema.org/statType'>;
5396
5813
  /** The status of the study (enumerated). */
5397
5814
  "status": NamedNode<'http://schema.org/status'>;
5398
5815
  /** Lists or enumerations dealing with status types. */
@@ -5421,6 +5838,8 @@ export interface Schema {
5421
5838
  "strengthUnit": NamedNode<'http://schema.org/strengthUnit'>;
5422
5839
  /** The value of an active ingredient's strength, e.g. 325. */
5423
5840
  "strengthValue": NamedNode<'http://schema.org/strengthValue'>;
5841
+ /** Represents the strikethrough price (the previous advertised price) of an offered product. */
5842
+ "StrikethroughPrice": NamedNode<'http://schema.org/StrikethroughPrice'>;
5424
5843
  /** The name given to how bone physically connects to each other. */
5425
5844
  "structuralClass": NamedNode<'http://schema.org/structuralClass'>;
5426
5845
  /** Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing. */
@@ -5512,6 +5931,10 @@ export interface Schema {
5512
5931
  "SuspendAction": NamedNode<'http://schema.org/SuspendAction'>;
5513
5932
  /** Suspended. */
5514
5933
  "Suspended": NamedNode<'http://schema.org/Suspended'>;
5934
+ /** A syllabus that describes the material covered in a course, often with several such sections per [[Course]] so that a distinct [[timeRequired]] can be provided for that section of the [[Course]]. */
5935
+ "Syllabus": NamedNode<'http://schema.org/Syllabus'>;
5936
+ /** Indicates (typically several) Syllabus entities that lay out what each section of the overall course will cover. */
5937
+ "syllabusSections": NamedNode<'http://schema.org/syllabusSections'>;
5515
5938
  /** Symptoms or related symptoms of a Topic. */
5516
5939
  "SymptomsHealthAspect": NamedNode<'http://schema.org/SymptomsHealthAspect'>;
5517
5940
  /** A synagogue. */
@@ -5581,7 +6004,7 @@ export interface Schema {
5581
6004
  "temporalCoverage": NamedNode<'http://schema.org/temporalCoverage'>;
5582
6005
  /** A tennis complex. */
5583
6006
  "TennisComplex": NamedNode<'http://schema.org/TennisComplex'>;
5584
- /** A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]] */
6007
+ /** A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]. */
5585
6008
  "termCode": NamedNode<'http://schema.org/termCode'>;
5586
6009
  /** The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term. */
5587
6010
  "termDuration": NamedNode<'http://schema.org/termDuration'>;
@@ -5597,6 +6020,8 @@ export interface Schema {
5597
6020
  "Text": NamedNode<'http://schema.org/Text'>;
5598
6021
  /** A file composed primarily of text. */
5599
6022
  "TextDigitalDocument": NamedNode<'http://schema.org/TextDigitalDocument'>;
6023
+ /** A text file. The text can be unformatted or contain markup, html, etc. */
6024
+ "TextObject": NamedNode<'http://schema.org/TextObject'>;
5600
6025
  /** Text value being annotated. */
5601
6026
  "textValue": NamedNode<'http://schema.org/textValue'>;
5602
6027
  /** Event type: Theater performance. */
@@ -5631,12 +6056,24 @@ export interface Schema {
5631
6056
  "ticketToken": NamedNode<'http://schema.org/ticketToken'>;
5632
6057
  /** The act of reaching a draw in a competitive activity. */
5633
6058
  "TieAction": NamedNode<'http://schema.org/TieAction'>;
6059
+ /** An enumeration of possible benefits as part of a loyalty (members) program. */
6060
+ "TierBenefitEnumeration": NamedNode<'http://schema.org/TierBenefitEnumeration'>;
6061
+ /** Benefit of the tier is earning of loyalty points. */
6062
+ "TierBenefitLoyaltyPoints": NamedNode<'http://schema.org/TierBenefitLoyaltyPoints'>;
6063
+ /** Benefit of the tier is a members-only price. */
6064
+ "TierBenefitLoyaltyPrice": NamedNode<'http://schema.org/TierBenefitLoyaltyPrice'>;
6065
+ /** Benefit of the tier is members-only returns, for example free unlimited returns. */
6066
+ "TierBenefitLoyaltyReturns": NamedNode<'http://schema.org/TierBenefitLoyaltyReturns'>;
6067
+ /** Benefit of the tier is a members-only shipping price or speed (for example free shipping or 1-day shipping). */
6068
+ "TierBenefitLoyaltyShipping": NamedNode<'http://schema.org/TierBenefitLoyaltyShipping'>;
5634
6069
  /** A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)). */
5635
6070
  "Time": NamedNode<'http://schema.org/Time'>;
5636
6071
  /** The time of day the program normally runs. For example, "evenings". */
5637
6072
  "timeOfDay": NamedNode<'http://schema.org/timeOfDay'>;
5638
- /** Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. */
6073
+ /** Approximate or typical time it usually takes to work with or through the content of this work for the typical or target audience. */
5639
6074
  "timeRequired": NamedNode<'http://schema.org/timeRequired'>;
6075
+ /** The instant the event occured. */
6076
+ "timestamp": NamedNode<'http://schema.org/timestamp'>;
5640
6077
  /** The expected length of time to complete the program if attending full-time. */
5641
6078
  "timeToComplete": NamedNode<'http://schema.org/timeToComplete'>;
5642
6079
  /** The act of giving money voluntarily to a beneficiary in recognition of services rendered. */
@@ -5652,7 +6089,7 @@ export interface Schema {
5652
6089
  *
5653
6090
  * For example, the motion picture known as "Ghostbusters" has a titleEIDR of "10.5240/7EC7-228A-510A-053E-CBB8-J". This title (or work) may have several variants, which EIDR calls "edits". See [[editEIDR]].
5654
6091
  *
5655
- * Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.
6092
+ * Since schema.org types like [[Movie]], [[TVEpisode]], [[TVSeason]], and [[TVSeries]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.
5656
6093
  *
5657
6094
  */
5658
6095
  "titleEIDR": NamedNode<'http://schema.org/titleEIDR'>;
@@ -5674,6 +6111,8 @@ export interface Schema {
5674
6111
  "toRecipient": NamedNode<'http://schema.org/toRecipient'>;
5675
6112
  /** The torque (turning force) of the vehicle's engine.\n\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\n\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges. */
5676
6113
  "torque": NamedNode<'http://schema.org/torque'>;
6114
+ /** The total number of students that have enrolled in the history of the course. */
6115
+ "totalHistoricalEnrollment": NamedNode<'http://schema.org/totalHistoricalEnrollment'>;
5677
6116
  /** The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known. */
5678
6117
  "totalJobOpenings": NamedNode<'http://schema.org/totalJobOpenings'>;
5679
6118
  /** The total amount due. */
@@ -5722,6 +6161,8 @@ export interface Schema {
5722
6161
  "trailer": NamedNode<'http://schema.org/trailer'>;
5723
6162
  /** The permitted weight of a trailer attached to the vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. */
5724
6163
  "trailerWeight": NamedNode<'http://schema.org/trailerWeight'>;
6164
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia">trained algorithmic media</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
6165
+ "TrainedAlgorithmicMediaDigitalSource": NamedNode<'http://schema.org/TrainedAlgorithmicMediaDigitalSource'>;
5725
6166
  /** The estimated salary earned while in the program. */
5726
6167
  "trainingSalary": NamedNode<'http://schema.org/trainingSalary'>;
5727
6168
  /** The name of the train (e.g. The Orient Express). */
@@ -5755,10 +6196,15 @@ export interface Schema {
5755
6196
  "TransformedContent": NamedNode<'http://schema.org/TransformedContent'>;
5756
6197
  /** A transit map. */
5757
6198
  "TransitMap": NamedNode<'http://schema.org/TransitMap'>;
5758
- /** The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY). */
6199
+ /**
6200
+ * The typical delay the order has been sent for delivery and the goods reach the final customer.
6201
+ *
6202
+ * In the context of [[ShippingDeliveryTime]], use the [[QuantitativeValue]]. Typical properties: minValue, maxValue, unitCode (d for DAY).
6203
+ *
6204
+ * In the context of [[ShippingConditions]], use the [[ServicePeriod]]. It has a duration (as a [[QuantitativeValue]]) and also business days and a cut-off time.
6205
+ *
6206
+ */
5759
6207
  "transitTime": NamedNode<'http://schema.org/transitTime'>;
5760
- /** Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference). */
5761
- "transitTimeLabel": NamedNode<'http://schema.org/transitTimeLabel'>;
5762
6208
  /** The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. */
5763
6209
  "translationOfWork": NamedNode<'http://schema.org/translationOfWork'>;
5764
6210
  /** Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event. */
@@ -5783,6 +6229,8 @@ export interface Schema {
5783
6229
  "Trip": NamedNode<'http://schema.org/Trip'>;
5784
6230
  /** A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to. */
5785
6231
  "TripleBlindedTrial": NamedNode<'http://schema.org/TripleBlindedTrial'>;
6232
+ /** The location of origin of the trip, prior to any destination(s). */
6233
+ "tripOrigin": NamedNode<'http://schema.org/tripOrigin'>;
5786
6234
  /** The boolean value true. */
5787
6235
  "True": NamedNode<'http://schema.org/True'>;
5788
6236
  /** The day of the week between Monday and Wednesday. */
@@ -5842,7 +6290,7 @@ export interface Schema {
5842
6290
  "unsaturatedFatContent": NamedNode<'http://schema.org/unsaturatedFatContent'>;
5843
6291
  /** The act of managing by changing/editing the state of the object. */
5844
6292
  "UpdateAction": NamedNode<'http://schema.org/UpdateAction'>;
5845
- /** Date when this media object was uploaded to this site. */
6293
+ /** Date (including time if available) when this media object was uploaded to this site. */
5846
6294
  "uploadDate": NamedNode<'http://schema.org/uploadDate'>;
5847
6295
  /** The number of upvotes this question, answer or comment has received from the community. */
5848
6296
  "upvoteCount": NamedNode<'http://schema.org/upvoteCount'>;
@@ -5898,19 +6346,28 @@ export interface Schema {
5898
6346
  "usesHealthPlanIdStandard": NamedNode<'http://schema.org/usesHealthPlanIdStandard'>;
5899
6347
  /** USNonprofitType: Non-profit organization type originating from the United States. */
5900
6348
  "USNonprofitType": NamedNode<'http://schema.org/USNonprofitType'>;
6349
+ /**
6350
+ * A <a href="https://en.wikipedia.org/wiki/National_Provider_Identifier">National Provider Identifier</a> (NPI)
6351
+ * is a unique 10-digit identification number issued to health care providers in the United States by the Centers for Medicare and Medicaid Services.
6352
+ */
6353
+ "usNPI": NamedNode<'http://schema.org/usNPI'>;
5901
6354
  /** Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]]. */
5902
6355
  "utterances": NamedNode<'http://schema.org/utterances'>;
6356
+ /** A kind of lodging business that focuses on renting single properties for limited time. */
6357
+ "VacationRental": NamedNode<'http://schema.org/VacationRental'>;
5903
6358
  /** The duration of validity of a permit or similar thing. */
5904
6359
  "validFor": NamedNode<'http://schema.org/validFor'>;
6360
+ /** The membership program tier an Offer (or a PriceSpecification, OfferShippingDetails, or MerchantReturnPolicy under an Offer) is valid for. */
6361
+ "validForMemberTier": NamedNode<'http://schema.org/validForMemberTier'>;
5905
6362
  /** The date when the item becomes valid. */
5906
6363
  "validFrom": NamedNode<'http://schema.org/validFrom'>;
5907
- /** The geographic area where a permit or similar thing is valid. */
6364
+ /** The geographic area where the item is valid. Applies for example to a [[Permit]], a [[Certification]], or an [[EducationalOccupationalCredential]]. */
5908
6365
  "validIn": NamedNode<'http://schema.org/validIn'>;
5909
6366
  /** The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours. */
5910
6367
  "validThrough": NamedNode<'http://schema.org/validThrough'>;
5911
6368
  /** The date when the item is no longer valid. */
5912
6369
  "validUntil": NamedNode<'http://schema.org/validUntil'>;
5913
- /** The value of the quantitative value or property value node.\n\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\n* For [[PropertyValue]], it can be 'Text', 'Number', 'Boolean', or 'StructuredValue'.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. */
6370
+ /** The value of a [[QuantitativeValue]] (including [[Observation]]) or property value node.\n\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\n* For [[PropertyValue]], it can be 'Text', 'Number', 'Boolean', or 'StructuredValue'.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. */
5914
6371
  "value": NamedNode<'http://schema.org/value'>;
5915
6372
  /** Specifies whether the applicable value-added tax (VAT) is included in the price specification or not. */
5916
6373
  "valueAddedTaxIncluded": NamedNode<'http://schema.org/valueAddedTaxIncluded'>;
@@ -5926,7 +6383,7 @@ export interface Schema {
5926
6383
  "valueReference": NamedNode<'http://schema.org/valueReference'>;
5927
6384
  /** Whether the property must be filled in to complete the action. Default is false. */
5928
6385
  "valueRequired": NamedNode<'http://schema.org/valueRequired'>;
5929
- /** The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue. */
6386
+ /** The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue, or more explicitly as a [[StatisticalVariable]]. */
5930
6387
  "variableMeasured": NamedNode<'http://schema.org/variableMeasured'>;
5931
6388
  /**
5932
6389
  * A description of the variant cover
@@ -6004,6 +6461,8 @@ export interface Schema {
6004
6461
  "ViolenceConsideration": NamedNode<'http://schema.org/ViolenceConsideration'>;
6005
6462
  /** An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world. */
6006
6463
  "VirtualLocation": NamedNode<'http://schema.org/VirtualLocation'>;
6464
+ /** Content coded as '<a href="https://cv.iptc.org/newscodes/digitalsourcetype/virtualRecording">virtual recording</a>' using the IPTC <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">digital source type</a> vocabulary. */
6465
+ "VirtualRecordingDigitalSource": NamedNode<'http://schema.org/VirtualRecordingDigitalSource'>;
6007
6466
  /** Pathogenic virus that causes viral infection. */
6008
6467
  "Virus": NamedNode<'http://schema.org/Virus'>;
6009
6468
  /** Event type: Visual arts event. */
@@ -6041,31 +6500,31 @@ export interface Schema {
6041
6500
  "Waterfall": NamedNode<'http://schema.org/Waterfall'>;
6042
6501
  /** The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears. */
6043
6502
  "WeaponConsideration": NamedNode<'http://schema.org/WeaponConsideration'>;
6044
- /** Measurement of the back section, for example of a jacket */
6503
+ /** Measurement of the back section, for example of a jacket. */
6045
6504
  "WearableMeasurementBack": NamedNode<'http://schema.org/WearableMeasurementBack'>;
6046
- /** Measurement of the chest/bust section, for example of a suit */
6505
+ /** Measurement of the chest/bust section, for example of a suit. */
6047
6506
  "WearableMeasurementChestOrBust": NamedNode<'http://schema.org/WearableMeasurementChestOrBust'>;
6048
- /** Measurement of the collar, for example of a shirt */
6507
+ /** Measurement of the collar, for example of a shirt. */
6049
6508
  "WearableMeasurementCollar": NamedNode<'http://schema.org/WearableMeasurementCollar'>;
6050
- /** Measurement of the cup, for example of a bra */
6509
+ /** Measurement of the cup, for example of a bra. */
6051
6510
  "WearableMeasurementCup": NamedNode<'http://schema.org/WearableMeasurementCup'>;
6052
- /** Measurement of the height, for example the heel height of a shoe */
6511
+ /** Measurement of the height, for example the heel height of a shoe. */
6053
6512
  "WearableMeasurementHeight": NamedNode<'http://schema.org/WearableMeasurementHeight'>;
6054
- /** Measurement of the hip section, for example of a skirt */
6513
+ /** Measurement of the hip section, for example of a skirt. */
6055
6514
  "WearableMeasurementHips": NamedNode<'http://schema.org/WearableMeasurementHips'>;
6056
- /** Measurement of the inseam, for example of pants */
6515
+ /** Measurement of the inseam, for example of pants. */
6057
6516
  "WearableMeasurementInseam": NamedNode<'http://schema.org/WearableMeasurementInseam'>;
6058
- /** Represents the length, for example of a dress */
6517
+ /** Represents the length, for example of a dress. */
6059
6518
  "WearableMeasurementLength": NamedNode<'http://schema.org/WearableMeasurementLength'>;
6060
- /** Measurement of the outside leg, for example of pants */
6519
+ /** Measurement of the outside leg, for example of pants. */
6061
6520
  "WearableMeasurementOutsideLeg": NamedNode<'http://schema.org/WearableMeasurementOutsideLeg'>;
6062
- /** Measurement of the sleeve length, for example of a shirt */
6521
+ /** Measurement of the sleeve length, for example of a shirt. */
6063
6522
  "WearableMeasurementSleeve": NamedNode<'http://schema.org/WearableMeasurementSleeve'>;
6064
6523
  /** Enumerates common types of measurement for wearables products. */
6065
6524
  "WearableMeasurementTypeEnumeration": NamedNode<'http://schema.org/WearableMeasurementTypeEnumeration'>;
6066
- /** Measurement of the waist section, for example of pants */
6525
+ /** Measurement of the waist section, for example of pants. */
6067
6526
  "WearableMeasurementWaist": NamedNode<'http://schema.org/WearableMeasurementWaist'>;
6068
- /** Measurement of the width, for example of shoes */
6527
+ /** Measurement of the width, for example of shoes. */
6069
6528
  "WearableMeasurementWidth": NamedNode<'http://schema.org/WearableMeasurementWidth'>;
6070
6529
  /** Size group "Big" for wearables. */
6071
6530
  "WearableSizeGroupBig": NamedNode<'http://schema.org/WearableSizeGroupBig'>;
@@ -6115,7 +6574,7 @@ export interface Schema {
6115
6574
  "WearableSizeSystemDE": NamedNode<'http://schema.org/WearableSizeSystemDE'>;
6116
6575
  /** EN 13402 (joint European standard for size labelling of clothes). */
6117
6576
  "WearableSizeSystemEN13402": NamedNode<'http://schema.org/WearableSizeSystemEN13402'>;
6118
- /** Enumerates common size systems specific for wearable products */
6577
+ /** Enumerates common size systems specific for wearable products. */
6119
6578
  "WearableSizeSystemEnumeration": NamedNode<'http://schema.org/WearableSizeSystemEnumeration'>;
6120
6579
  /** European size system for wearables. */
6121
6580
  "WearableSizeSystemEurope": NamedNode<'http://schema.org/WearableSizeSystemEurope'>;
@@ -6155,11 +6614,13 @@ export interface Schema {
6155
6614
  "Wednesday": NamedNode<'http://schema.org/Wednesday'>;
6156
6615
  /** The weight of the product or person. */
6157
6616
  "weight": NamedNode<'http://schema.org/weight'>;
6617
+ /** Value in the range [0.0 ; 1.0] representing the fraction of the weight that is used to compute the shipping price. */
6618
+ "weightPercentage": NamedNode<'http://schema.org/weightPercentage'>;
6158
6619
  /** The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. */
6159
6620
  "weightTotal": NamedNode<'http://schema.org/weightTotal'>;
6160
6621
  /** The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine. */
6161
6622
  "WesternConventional": NamedNode<'http://schema.org/WesternConventional'>;
6162
- /** The distance between the centers of the front and rear wheels.\n\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet */
6623
+ /** The distance between the centers of the front and rear wheels.\n\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet. */
6163
6624
  "wheelbase": NamedNode<'http://schema.org/wheelbase'>;
6164
6625
  /** The drug's cost represents the wholesale acquisition cost of the drug. */
6165
6626
  "Wholesale": NamedNode<'http://schema.org/Wholesale'>;
@@ -6175,7 +6636,7 @@ export interface Schema {
6175
6636
  "winner": NamedNode<'http://schema.org/winner'>;
6176
6637
  /** Withdrawn. */
6177
6638
  "Withdrawn": NamedNode<'http://schema.org/Withdrawn'>;
6178
- /** The number of words in the text of the Article. */
6639
+ /** The number of words in the text of the CreativeWork such as an Article, Book, etc. */
6179
6640
  "wordCount": NamedNode<'http://schema.org/wordCount'>;
6180
6641
  /** A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs. */
6181
6642
  "WorkBasedProgram": NamedNode<'http://schema.org/WorkBasedProgram'>;
@@ -6202,7 +6663,7 @@ export interface Schema {
6202
6663
  "worksFor": NamedNode<'http://schema.org/worksFor'>;
6203
6664
  /** A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo. */
6204
6665
  "workTranslation": NamedNode<'http://schema.org/workTranslation'>;
6205
- /** The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed. */
6666
+ /** The lowest value allowed in this rating system. */
6206
6667
  "worstRating": NamedNode<'http://schema.org/worstRating'>;
6207
6668
  /** An advertising section of the page. */
6208
6669
  "WPAdBlock": NamedNode<'http://schema.org/WPAdBlock'>;