ldkit 0.8.0 → 2.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 (157) hide show
  1. package/README.md +5 -5
  2. package/esm/library/decoder.js +20 -30
  3. package/esm/library/encoder.js +33 -17
  4. package/esm/library/engine/mod.js +2 -2
  5. package/esm/library/engine/query_engine.js +57 -29
  6. package/esm/library/engine/query_engine_proxy.js +8 -8
  7. package/esm/library/engine/query_resolvers.js +72 -0
  8. package/esm/library/engine/types.js +1 -0
  9. package/esm/library/lens/lens.js +414 -25
  10. package/esm/library/lens/mod.js +1 -1
  11. package/esm/library/lens/query_builder.js +81 -50
  12. package/esm/library/lens/search_helper.js +142 -0
  13. package/esm/library/lens/update_helper.js +157 -0
  14. package/esm/library/namespace.js +36 -0
  15. package/esm/library/options.js +50 -0
  16. package/esm/library/rdf.js +3 -2
  17. package/esm/library/schema/data_types.js +3 -38
  18. package/esm/library/schema/search.js +1 -0
  19. package/esm/library/schema/utils.js +31 -6
  20. package/esm/library/sparql/mod.js +2 -1
  21. package/esm/library/sparql/sparql_expression_builders.js +18 -0
  22. package/esm/library/sparql/sparql_query_builders.js +65 -0
  23. package/esm/library/sparql/sparql_shared_builders.js +1 -0
  24. package/esm/library/sparql/sparql_tag.js +27 -1
  25. package/esm/library/sparql/sparql_update_builders.js +70 -0
  26. package/esm/library/sparql/stringify.js +3 -4
  27. package/esm/mod.js +4 -3
  28. package/esm/{library/namespaces → namespaces}/dbo.js +7 -2
  29. package/esm/{library/namespaces → namespaces}/dc.js +7 -2
  30. package/esm/{library/namespaces → namespaces}/dcterms.js +7 -2
  31. package/esm/{library/namespaces → namespaces}/foaf.js +7 -2
  32. package/esm/{library/namespaces → namespaces}/gr.js +7 -2
  33. package/esm/namespaces/ldkit.js +11 -0
  34. package/esm/namespaces/owl.js +91 -0
  35. package/{script/library → esm}/namespaces/rdf.js +7 -4
  36. package/{script/library → esm}/namespaces/rdfs.js +7 -4
  37. package/esm/{library/namespaces → namespaces}/schema.js +7 -2
  38. package/esm/{library/namespaces → namespaces}/sioc.js +7 -2
  39. package/{script/library → esm}/namespaces/skos.js +7 -4
  40. package/{script/library → esm}/namespaces/xsd.js +7 -4
  41. package/esm/namespaces.js +30 -1
  42. package/esm/rdf.js +14 -1
  43. package/esm/sparql.js +13 -0
  44. package/package.json +4 -2
  45. package/script/library/decoder.js +25 -38
  46. package/script/library/encoder.js +38 -24
  47. package/script/library/engine/mod.js +16 -5
  48. package/script/library/engine/query_engine.js +57 -29
  49. package/script/library/engine/query_engine_proxy.js +7 -7
  50. package/script/library/engine/query_resolvers.js +77 -0
  51. package/script/library/engine/types.js +2 -0
  52. package/script/library/lens/lens.js +415 -27
  53. package/script/library/lens/mod.js +15 -4
  54. package/script/library/lens/query_builder.js +82 -54
  55. package/script/library/lens/search_helper.js +146 -0
  56. package/script/library/lens/update_helper.js +161 -0
  57. package/script/library/namespace.js +40 -0
  58. package/script/library/options.js +56 -0
  59. package/script/library/rdf.js +27 -3
  60. package/script/library/schema/data_types.js +3 -41
  61. package/script/library/schema/search.js +2 -0
  62. package/script/library/schema/utils.js +33 -11
  63. package/script/library/sparql/mod.js +17 -3
  64. package/script/library/sparql/sparql_expression_builders.js +22 -0
  65. package/script/library/sparql/sparql_query_builders.js +65 -0
  66. package/script/library/sparql/sparql_shared_builders.js +3 -1
  67. package/script/library/sparql/sparql_tag.js +30 -7
  68. package/script/library/sparql/sparql_update_builders.js +70 -0
  69. package/script/library/sparql/stringify.js +4 -8
  70. package/script/mod.js +20 -9
  71. package/script/{library/namespaces → namespaces}/dbo.js +8 -2
  72. package/script/{library/namespaces → namespaces}/dc.js +8 -2
  73. package/script/{library/namespaces → namespaces}/dcterms.js +8 -2
  74. package/script/{library/namespaces → namespaces}/foaf.js +8 -2
  75. package/script/{library/namespaces → namespaces}/gr.js +8 -2
  76. package/script/namespaces/ldkit.js +14 -0
  77. package/script/namespaces/owl.js +94 -0
  78. package/{esm/library → script}/namespaces/rdf.js +10 -2
  79. package/{esm/library → script}/namespaces/rdfs.js +10 -2
  80. package/script/{library/namespaces → namespaces}/schema.js +8 -2
  81. package/script/{library/namespaces → namespaces}/sioc.js +8 -2
  82. package/{esm/library → script}/namespaces/skos.js +10 -2
  83. package/{esm/library → script}/namespaces/xsd.js +10 -2
  84. package/script/namespaces.js +44 -1
  85. package/script/rdf.js +20 -15
  86. package/script/sparql.js +13 -0
  87. package/types/library/decoder.d.ts +4 -3
  88. package/types/library/encoder.d.ts +5 -3
  89. package/types/library/engine/mod.d.ts +2 -2
  90. package/types/library/engine/query_engine.d.ts +55 -13
  91. package/types/library/engine/query_engine_proxy.d.ts +4 -3
  92. package/types/library/engine/query_resolvers.d.ts +10 -0
  93. package/types/library/engine/types.d.ts +23 -0
  94. package/types/library/lens/lens.d.ts +400 -23
  95. package/types/library/lens/mod.d.ts +1 -1
  96. package/types/library/lens/query_builder.d.ts +10 -10
  97. package/types/library/lens/search_helper.d.ts +21 -0
  98. package/types/library/lens/types.d.ts +5 -2
  99. package/types/library/lens/update_helper.d.ts +23 -0
  100. package/types/library/namespace.d.ts +41 -0
  101. package/types/library/options.d.ts +72 -0
  102. package/types/library/rdf.d.ts +10 -16
  103. package/types/library/schema/data_types.d.ts +44 -37
  104. package/types/library/schema/interface.d.ts +75 -20
  105. package/types/library/schema/mod.d.ts +4 -2
  106. package/types/library/schema/schema.d.ts +23 -16
  107. package/types/library/schema/search.d.ts +20 -0
  108. package/types/library/schema/utils.d.ts +3 -3
  109. package/types/library/sparql/mod.d.ts +2 -1
  110. package/types/library/sparql/sparql_expression_builders.d.ts +19 -0
  111. package/types/library/sparql/sparql_query_builders.d.ts +68 -3
  112. package/types/library/sparql/sparql_shared_builders.d.ts +1 -0
  113. package/types/library/sparql/sparql_tag.d.ts +29 -1
  114. package/types/library/sparql/sparql_update_builders.d.ts +68 -0
  115. package/types/mod.d.ts +5 -5
  116. package/types/namespaces/dbo.d.ts +10 -0
  117. package/types/namespaces/dc.d.ts +10 -0
  118. package/types/namespaces/dcterms.d.ts +10 -0
  119. package/types/namespaces/foaf.d.ts +10 -0
  120. package/types/namespaces/gr.d.ts +10 -0
  121. package/types/namespaces/ldkit.d.ts +10 -0
  122. package/types/namespaces/owl.d.ts +10 -0
  123. package/types/namespaces/rdf.d.ts +10 -0
  124. package/types/namespaces/rdfs.d.ts +10 -0
  125. package/types/namespaces/schema.d.ts +10 -0
  126. package/types/namespaces/sioc.d.ts +10 -0
  127. package/types/namespaces/skos.d.ts +10 -0
  128. package/types/namespaces/xsd.d.ts +10 -0
  129. package/types/namespaces.d.ts +30 -1
  130. package/types/rdf.d.ts +14 -1
  131. package/types/sparql.d.ts +13 -0
  132. package/esm/library/global.js +0 -25
  133. package/esm/library/lens/query_helper.js +0 -102
  134. package/esm/library/namespaces/ldkit.js +0 -6
  135. package/esm/library/namespaces/mod.js +0 -13
  136. package/esm/library/namespaces/namespace.js +0 -11
  137. package/script/library/global.js +0 -32
  138. package/script/library/lens/query_helper.js +0 -106
  139. package/script/library/namespaces/ldkit.js +0 -8
  140. package/script/library/namespaces/mod.js +0 -32
  141. package/script/library/namespaces/namespace.js +0 -15
  142. package/types/library/global.d.ts +0 -5
  143. package/types/library/lens/query_helper.d.ts +0 -19
  144. package/types/library/namespaces/dbo.d.ts +0 -3649
  145. package/types/library/namespaces/dc.d.ts +0 -21
  146. package/types/library/namespaces/dcterms.d.ts +0 -104
  147. package/types/library/namespaces/foaf.d.ts +0 -69
  148. package/types/library/namespaces/gr.d.ts +0 -175
  149. package/types/library/namespaces/ldkit.d.ts +0 -7
  150. package/types/library/namespaces/mod.d.ts +0 -13
  151. package/types/library/namespaces/namespace.d.ts +0 -15
  152. package/types/library/namespaces/rdf.d.ts +0 -28
  153. package/types/library/namespaces/rdfs.d.ts +0 -21
  154. package/types/library/namespaces/schema.d.ts +0 -2697
  155. package/types/library/namespaces/sioc.d.ts +0 -105
  156. package/types/library/namespaces/skos.d.ts +0 -38
  157. package/types/library/namespaces/xsd.d.ts +0 -56
@@ -1,2697 +0,0 @@
1
- declare const _default: {
2
- object: "schema:object";
3
- value: "schema:value";
4
- query: "schema:query";
5
- map: "schema:map";
6
- duration: "schema:duration";
7
- language: "schema:language";
8
- Property: "schema:Property";
9
- description: "schema:description";
10
- Airline: "schema:Airline";
11
- Airport: "schema:Airport";
12
- AnatomicalStructure: "schema:AnatomicalStructure";
13
- Artery: "schema:Artery";
14
- Article: "schema:Article";
15
- Bacteria: "schema:Bacteria";
16
- Beach: "schema:Beach";
17
- BodyOfWater: "schema:BodyOfWater";
18
- Bone: "schema:Bone";
19
- Book: "schema:Book";
20
- Brewery: "schema:Brewery";
21
- Bridge: "schema:Bridge";
22
- Canal: "schema:Canal";
23
- Casino: "schema:Casino";
24
- Cemetery: "schema:Cemetery";
25
- Church: "schema:Church";
26
- City: "schema:City";
27
- Continent: "schema:Continent";
28
- Country: "schema:Country";
29
- Drug: "schema:Drug";
30
- Event: "schema:Event";
31
- Fungus: "schema:Fungus";
32
- Game: "schema:Game";
33
- GolfCourse: "schema:GolfCourse";
34
- Hospital: "schema:Hospital";
35
- Hotel: "schema:Hotel";
36
- Language: "schema:Language";
37
- Library: "schema:Library";
38
- Ligament: "schema:Ligament";
39
- MedicalSpecialty: "schema:MedicalSpecialty";
40
- Mosque: "schema:Mosque";
41
- Motorcycle: "schema:Motorcycle";
42
- Mountain: "schema:Mountain";
43
- Muscle: "schema:Muscle";
44
- Museum: "schema:Museum";
45
- Nerve: "schema:Nerve";
46
- Newspaper: "schema:Newspaper";
47
- Painting: "schema:Painting";
48
- Park: "schema:Park";
49
- Person: "schema:Person";
50
- Place: "schema:Place";
51
- Play: "schema:Play";
52
- Project: "schema:Project";
53
- RadioStation: "schema:RadioStation";
54
- ResearchProject: "schema:ResearchProject";
55
- Restaurant: "schema:Restaurant";
56
- School: "schema:School";
57
- Sculpture: "schema:Sculpture";
58
- SkiResort: "schema:SkiResort";
59
- SportsClub: "schema:SportsClub";
60
- SportsEvent: "schema:SportsEvent";
61
- SportsTeam: "schema:SportsTeam";
62
- State: "schema:State";
63
- Synagogue: "schema:Synagogue";
64
- TelevisionStation: "schema:TelevisionStation";
65
- Vein: "schema:Vein";
66
- VideoGame: "schema:VideoGame";
67
- Volcano: "schema:Volcano";
68
- Winery: "schema:Winery";
69
- Zoo: "schema:Zoo";
70
- abstract: "schema:abstract";
71
- address: "schema:address";
72
- affiliation: "schema:affiliation";
73
- album: "schema:album";
74
- alumni: "schema:alumni";
75
- appearance: "schema:appearance";
76
- area: "schema:area";
77
- artist: "schema:artist";
78
- assembly: "schema:assembly";
79
- author: "schema:author";
80
- award: "schema:award";
81
- birthDate: "schema:birthDate";
82
- birthPlace: "schema:birthPlace";
83
- brand: "schema:brand";
84
- callSign: "schema:callSign";
85
- category: "schema:category";
86
- circle: "schema:circle";
87
- coach: "schema:coach";
88
- code: "schema:code";
89
- colleague: "schema:colleague";
90
- collection: "schema:collection";
91
- collectionSize: "schema:collectionSize";
92
- comment: "schema:comment";
93
- composer: "schema:composer";
94
- course: "schema:course";
95
- creator: "schema:creator";
96
- currency: "schema:currency";
97
- deathDate: "schema:deathDate";
98
- deathPlace: "schema:deathPlace";
99
- department: "schema:department";
100
- depth: "schema:depth";
101
- differentialDiagnosis: "schema:differentialDiagnosis";
102
- director: "schema:director";
103
- dissolutionDate: "schema:dissolutionDate";
104
- distance: "schema:distance";
105
- drainsTo: "schema:drainsTo";
106
- drug: "schema:drug";
107
- editor: "schema:editor";
108
- elevation: "schema:elevation";
109
- endDate: "schema:endDate";
110
- enginePower: "schema:enginePower";
111
- engineType: "schema:engineType";
112
- episode: "schema:episode";
113
- episodeNumber: "schema:episodeNumber";
114
- event: "schema:event";
115
- fileSize: "schema:fileSize";
116
- firstAppearance: "schema:firstAppearance";
117
- follows: "schema:follows";
118
- founder: "schema:founder";
119
- foundingDate: "schema:foundingDate";
120
- free: "schema:free";
121
- frequency: "schema:frequency";
122
- fuelCapacity: "schema:fuelCapacity";
123
- fuelConsumption: "schema:fuelConsumption";
124
- fuelType: "schema:fuelType";
125
- gender: "schema:gender";
126
- genre: "schema:genre";
127
- hasVariant: "schema:hasVariant";
128
- height: "schema:height";
129
- illustrator: "schema:illustrator";
130
- industry: "schema:industry";
131
- instrument: "schema:instrument";
132
- isPartOf: "schema:isPartOf";
133
- isbn: "schema:isbn";
134
- issn: "schema:issn";
135
- jurisdiction: "schema:jurisdiction";
136
- license: "schema:license";
137
- location: "schema:location";
138
- logo: "schema:logo";
139
- lyrics: "schema:lyrics";
140
- manufacturer: "schema:manufacturer";
141
- material: "schema:material";
142
- medicalSpecialty: "schema:medicalSpecialty";
143
- member: "schema:member";
144
- model: "schema:model";
145
- musicBy: "schema:musicBy";
146
- musicalKey: "schema:musicalKey";
147
- name: "schema:name";
148
- nationality: "schema:nationality";
149
- nerve: "schema:nerve";
150
- numberOfDoors: "schema:numberOfDoors";
151
- numberOfEmployees: "schema:numberOfEmployees";
152
- numberOfEpisodes: "schema:numberOfEpisodes";
153
- numberOfPages: "schema:numberOfPages";
154
- numberOfPlayers: "schema:numberOfPlayers";
155
- numberOfRooms: "schema:numberOfRooms";
156
- numberOfSeasons: "schema:numberOfSeasons";
157
- operatingSystem: "schema:operatingSystem";
158
- opponent: "schema:opponent";
159
- orderDate: "schema:orderDate";
160
- owns: "schema:owns";
161
- parent: "schema:parent";
162
- participant: "schema:participant";
163
- performer: "schema:performer";
164
- position: "schema:position";
165
- postalCode: "schema:postalCode";
166
- price: "schema:price";
167
- procedure: "schema:procedure";
168
- producer: "schema:producer";
169
- produces: "schema:produces";
170
- productionCompany: "schema:productionCompany";
171
- programmingLanguage: "schema:programmingLanguage";
172
- publication: "schema:publication";
173
- publisher: "schema:publisher";
174
- recordLabel: "schema:recordLabel";
175
- recordedIn: "schema:recordedIn";
176
- releaseDate: "schema:releaseDate";
177
- result: "schema:result";
178
- review: "schema:review";
179
- runtime: "schema:runtime";
180
- season: "schema:season";
181
- seasonNumber: "schema:seasonNumber";
182
- seatNumber: "schema:seatNumber";
183
- seatingCapacity: "schema:seatingCapacity";
184
- servingSize: "schema:servingSize";
185
- sibling: "schema:sibling";
186
- skills: "schema:skills";
187
- slogan: "schema:slogan";
188
- sport: "schema:sport";
189
- spouse: "schema:spouse";
190
- starRating: "schema:starRating";
191
- startDate: "schema:startDate";
192
- status: "schema:status";
193
- supply: "schema:supply";
194
- thumbnail: "schema:thumbnail";
195
- title: "schema:title";
196
- translator: "schema:translator";
197
- version: "schema:version";
198
- weight: "schema:weight";
199
- wheelbase: "schema:wheelbase";
200
- width: "schema:width";
201
- contributor: "schema:contributor";
202
- identifier: "schema:identifier";
203
- audience: "schema:audience";
204
- hasPart: "schema:hasPart";
205
- spatial: "schema:spatial";
206
- temporal: "schema:temporal";
207
- Organization: "schema:Organization";
208
- knows: "schema:knows";
209
- Brand: "schema:Brand";
210
- BusinessEntityType: "schema:BusinessEntityType";
211
- BusinessFunction: "schema:BusinessFunction";
212
- DayOfWeek: "schema:DayOfWeek";
213
- DeliveryChargeSpecification: "schema:DeliveryChargeSpecification";
214
- DeliveryMethod: "schema:DeliveryMethod";
215
- Friday: "schema:Friday";
216
- Monday: "schema:Monday";
217
- OpeningHoursSpecification: "schema:OpeningHoursSpecification";
218
- PaymentChargeSpecification: "schema:PaymentChargeSpecification";
219
- PaymentMethod: "schema:PaymentMethod";
220
- PriceSpecification: "schema:PriceSpecification";
221
- PublicHolidays: "schema:PublicHolidays";
222
- QualitativeValue: "schema:QualitativeValue";
223
- QuantitativeValue: "schema:QuantitativeValue";
224
- Saturday: "schema:Saturday";
225
- Sunday: "schema:Sunday";
226
- Thursday: "schema:Thursday";
227
- Tuesday: "schema:Tuesday";
228
- TypeAndQuantityNode: "schema:TypeAndQuantityNode";
229
- UnitPriceSpecification: "schema:UnitPriceSpecification";
230
- WarrantyPromise: "schema:WarrantyPromise";
231
- WarrantyScope: "schema:WarrantyScope";
232
- Wednesday: "schema:Wednesday";
233
- addOn: "schema:addOn";
234
- advanceBookingRequirement: "schema:advanceBookingRequirement";
235
- amountOfThisGood: "schema:amountOfThisGood";
236
- appliesToDeliveryMethod: "schema:appliesToDeliveryMethod";
237
- appliesToPaymentMethod: "schema:appliesToPaymentMethod";
238
- availabilityEnds: "schema:availabilityEnds";
239
- availabilityStarts: "schema:availabilityStarts";
240
- availableAtOrFrom: "schema:availableAtOrFrom";
241
- billingIncrement: "schema:billingIncrement";
242
- closes: "schema:closes";
243
- color: "schema:color";
244
- deliveryLeadTime: "schema:deliveryLeadTime";
245
- eligibleDuration: "schema:eligibleDuration";
246
- eligibleTransactionVolume: "schema:eligibleTransactionVolume";
247
- equal: "schema:equal";
248
- greater: "schema:greater";
249
- greaterOrEqual: "schema:greaterOrEqual";
250
- hasPOS: "schema:hasPOS";
251
- includesObject: "schema:includesObject";
252
- isAccessoryOrSparePartFor: "schema:isAccessoryOrSparePartFor";
253
- isConsumableFor: "schema:isConsumableFor";
254
- isSimilarTo: "schema:isSimilarTo";
255
- isVariantOf: "schema:isVariantOf";
256
- legalName: "schema:legalName";
257
- lesser: "schema:lesser";
258
- lesserOrEqual: "schema:lesserOrEqual";
259
- nonEqual: "schema:nonEqual";
260
- offers: "schema:offers";
261
- opens: "schema:opens";
262
- predecessorOf: "schema:predecessorOf";
263
- priceType: "schema:priceType";
264
- seeks: "schema:seeks";
265
- serialNumber: "schema:serialNumber";
266
- successorOf: "schema:successorOf";
267
- taxID: "schema:taxID";
268
- typeOfGood: "schema:typeOfGood";
269
- validFrom: "schema:validFrom";
270
- validThrough: "schema:validThrough";
271
- valueAddedTaxIncluded: "schema:valueAddedTaxIncluded";
272
- valueReference: "schema:valueReference";
273
- vatID: "schema:vatID";
274
- Class: "schema:Class";
275
- "3DModel": "schema:3DModel";
276
- AMRadioChannel: "schema:AMRadioChannel";
277
- APIReference: "schema:APIReference";
278
- Abdomen: "schema:Abdomen";
279
- AboutPage: "schema:AboutPage";
280
- AcceptAction: "schema:AcceptAction";
281
- Accommodation: "schema:Accommodation";
282
- AccountingService: "schema:AccountingService";
283
- AchieveAction: "schema:AchieveAction";
284
- Action: "schema:Action";
285
- ActionAccessSpecification: "schema:ActionAccessSpecification";
286
- ActionStatusType: "schema:ActionStatusType";
287
- ActivateAction: "schema:ActivateAction";
288
- ActivationFee: "schema:ActivationFee";
289
- ActiveActionStatus: "schema:ActiveActionStatus";
290
- ActiveNotRecruiting: "schema:ActiveNotRecruiting";
291
- AddAction: "schema:AddAction";
292
- AdministrativeArea: "schema:AdministrativeArea";
293
- AdultEntertainment: "schema:AdultEntertainment";
294
- AdvertiserContentArticle: "schema:AdvertiserContentArticle";
295
- AerobicActivity: "schema:AerobicActivity";
296
- AggregateOffer: "schema:AggregateOffer";
297
- AggregateRating: "schema:AggregateRating";
298
- AgreeAction: "schema:AgreeAction";
299
- AlbumRelease: "schema:AlbumRelease";
300
- AlignmentObject: "schema:AlignmentObject";
301
- AllWheelDriveConfiguration: "schema:AllWheelDriveConfiguration";
302
- AllergiesHealthAspect: "schema:AllergiesHealthAspect";
303
- AllocateAction: "schema:AllocateAction";
304
- AmpStory: "schema:AmpStory";
305
- AmusementPark: "schema:AmusementPark";
306
- AnaerobicActivity: "schema:AnaerobicActivity";
307
- AnalysisNewsArticle: "schema:AnalysisNewsArticle";
308
- AnatomicalSystem: "schema:AnatomicalSystem";
309
- Anesthesia: "schema:Anesthesia";
310
- AnimalShelter: "schema:AnimalShelter";
311
- Answer: "schema:Answer";
312
- Apartment: "schema:Apartment";
313
- ApartmentComplex: "schema:ApartmentComplex";
314
- Appearance: "schema:Appearance";
315
- AppendAction: "schema:AppendAction";
316
- ApplyAction: "schema:ApplyAction";
317
- ApprovedIndication: "schema:ApprovedIndication";
318
- Aquarium: "schema:Aquarium";
319
- ArchiveComponent: "schema:ArchiveComponent";
320
- ArchiveOrganization: "schema:ArchiveOrganization";
321
- ArriveAction: "schema:ArriveAction";
322
- ArtGallery: "schema:ArtGallery";
323
- AskAction: "schema:AskAction";
324
- AskPublicNewsArticle: "schema:AskPublicNewsArticle";
325
- AssessAction: "schema:AssessAction";
326
- AssignAction: "schema:AssignAction";
327
- Atlas: "schema:Atlas";
328
- Attorney: "schema:Attorney";
329
- Audience: "schema:Audience";
330
- AudioObject: "schema:AudioObject";
331
- Audiobook: "schema:Audiobook";
332
- AudiobookFormat: "schema:AudiobookFormat";
333
- AuthoritativeLegalValue: "schema:AuthoritativeLegalValue";
334
- AuthorizeAction: "schema:AuthorizeAction";
335
- AutoBodyShop: "schema:AutoBodyShop";
336
- AutoDealer: "schema:AutoDealer";
337
- AutoPartsStore: "schema:AutoPartsStore";
338
- AutoRental: "schema:AutoRental";
339
- AutoRepair: "schema:AutoRepair";
340
- AutoWash: "schema:AutoWash";
341
- AutomatedTeller: "schema:AutomatedTeller";
342
- AutomotiveBusiness: "schema:AutomotiveBusiness";
343
- Ayurvedic: "schema:Ayurvedic";
344
- BackOrder: "schema:BackOrder";
345
- BackgroundNewsArticle: "schema:BackgroundNewsArticle";
346
- Bakery: "schema:Bakery";
347
- Balance: "schema:Balance";
348
- BankAccount: "schema:BankAccount";
349
- BankOrCreditUnion: "schema:BankOrCreditUnion";
350
- BarOrPub: "schema:BarOrPub";
351
- Barcode: "schema:Barcode";
352
- BasicIncome: "schema:BasicIncome";
353
- BeautySalon: "schema:BeautySalon";
354
- BedAndBreakfast: "schema:BedAndBreakfast";
355
- BedDetails: "schema:BedDetails";
356
- BedType: "schema:BedType";
357
- BefriendAction: "schema:BefriendAction";
358
- BenefitsHealthAspect: "schema:BenefitsHealthAspect";
359
- BikeStore: "schema:BikeStore";
360
- Blog: "schema:Blog";
361
- BlogPosting: "schema:BlogPosting";
362
- BloodTest: "schema:BloodTest";
363
- BoardingPolicyType: "schema:BoardingPolicyType";
364
- BoatReservation: "schema:BoatReservation";
365
- BoatTerminal: "schema:BoatTerminal";
366
- BoatTrip: "schema:BoatTrip";
367
- BodyMeasurementArm: "schema:BodyMeasurementArm";
368
- BodyMeasurementBust: "schema:BodyMeasurementBust";
369
- BodyMeasurementChest: "schema:BodyMeasurementChest";
370
- BodyMeasurementFoot: "schema:BodyMeasurementFoot";
371
- BodyMeasurementHand: "schema:BodyMeasurementHand";
372
- BodyMeasurementHead: "schema:BodyMeasurementHead";
373
- BodyMeasurementHeight: "schema:BodyMeasurementHeight";
374
- BodyMeasurementHips: "schema:BodyMeasurementHips";
375
- BodyMeasurementInsideLeg: "schema:BodyMeasurementInsideLeg";
376
- BodyMeasurementNeck: "schema:BodyMeasurementNeck";
377
- BodyMeasurementTypeEnumeration: "schema:BodyMeasurementTypeEnumeration";
378
- BodyMeasurementUnderbust: "schema:BodyMeasurementUnderbust";
379
- BodyMeasurementWaist: "schema:BodyMeasurementWaist";
380
- BodyMeasurementWeight: "schema:BodyMeasurementWeight";
381
- BookFormatType: "schema:BookFormatType";
382
- BookSeries: "schema:BookSeries";
383
- BookStore: "schema:BookStore";
384
- BookmarkAction: "schema:BookmarkAction";
385
- Boolean: "schema:Boolean";
386
- BorrowAction: "schema:BorrowAction";
387
- BowlingAlley: "schema:BowlingAlley";
388
- BrainStructure: "schema:BrainStructure";
389
- BreadcrumbList: "schema:BreadcrumbList";
390
- BroadcastChannel: "schema:BroadcastChannel";
391
- BroadcastEvent: "schema:BroadcastEvent";
392
- BroadcastFrequencySpecification: "schema:BroadcastFrequencySpecification";
393
- BroadcastRelease: "schema:BroadcastRelease";
394
- BroadcastService: "schema:BroadcastService";
395
- BrokerageAccount: "schema:BrokerageAccount";
396
- BuddhistTemple: "schema:BuddhistTemple";
397
- BusOrCoach: "schema:BusOrCoach";
398
- BusReservation: "schema:BusReservation";
399
- BusStation: "schema:BusStation";
400
- BusStop: "schema:BusStop";
401
- BusTrip: "schema:BusTrip";
402
- BusinessAudience: "schema:BusinessAudience";
403
- BusinessEvent: "schema:BusinessEvent";
404
- BusinessSupport: "schema:BusinessSupport";
405
- BuyAction: "schema:BuyAction";
406
- CDCPMDRecord: "schema:CDCPMDRecord";
407
- CDFormat: "schema:CDFormat";
408
- CT: "schema:CT";
409
- CableOrSatelliteService: "schema:CableOrSatelliteService";
410
- CafeOrCoffeeShop: "schema:CafeOrCoffeeShop";
411
- Campground: "schema:Campground";
412
- CampingPitch: "schema:CampingPitch";
413
- CancelAction: "schema:CancelAction";
414
- Car: "schema:Car";
415
- CarUsageType: "schema:CarUsageType";
416
- Cardiovascular: "schema:Cardiovascular";
417
- CardiovascularExam: "schema:CardiovascularExam";
418
- CaseSeries: "schema:CaseSeries";
419
- CassetteFormat: "schema:CassetteFormat";
420
- CategoryCode: "schema:CategoryCode";
421
- CategoryCodeSet: "schema:CategoryCodeSet";
422
- CatholicChurch: "schema:CatholicChurch";
423
- CausesHealthAspect: "schema:CausesHealthAspect";
424
- Chapter: "schema:Chapter";
425
- CharitableIncorporatedOrganization: "schema:CharitableIncorporatedOrganization";
426
- CheckAction: "schema:CheckAction";
427
- CheckInAction: "schema:CheckInAction";
428
- CheckOutAction: "schema:CheckOutAction";
429
- CheckoutPage: "schema:CheckoutPage";
430
- ChildCare: "schema:ChildCare";
431
- ChildrensEvent: "schema:ChildrensEvent";
432
- Chiropractic: "schema:Chiropractic";
433
- ChooseAction: "schema:ChooseAction";
434
- CityHall: "schema:CityHall";
435
- CivicStructure: "schema:CivicStructure";
436
- Claim: "schema:Claim";
437
- ClaimReview: "schema:ClaimReview";
438
- CleaningFee: "schema:CleaningFee";
439
- Clinician: "schema:Clinician";
440
- Clip: "schema:Clip";
441
- ClothingStore: "schema:ClothingStore";
442
- CoOp: "schema:CoOp";
443
- Code: "schema:Code";
444
- CohortStudy: "schema:CohortStudy";
445
- Collection: "schema:Collection";
446
- CollectionPage: "schema:CollectionPage";
447
- CollegeOrUniversity: "schema:CollegeOrUniversity";
448
- ComedyClub: "schema:ComedyClub";
449
- ComedyEvent: "schema:ComedyEvent";
450
- ComicCoverArt: "schema:ComicCoverArt";
451
- ComicIssue: "schema:ComicIssue";
452
- ComicSeries: "schema:ComicSeries";
453
- ComicStory: "schema:ComicStory";
454
- Comment: "schema:Comment";
455
- CommentAction: "schema:CommentAction";
456
- CommentPermission: "schema:CommentPermission";
457
- CommunicateAction: "schema:CommunicateAction";
458
- CommunityHealth: "schema:CommunityHealth";
459
- CompilationAlbum: "schema:CompilationAlbum";
460
- CompleteDataFeed: "schema:CompleteDataFeed";
461
- Completed: "schema:Completed";
462
- CompletedActionStatus: "schema:CompletedActionStatus";
463
- CompoundPriceSpecification: "schema:CompoundPriceSpecification";
464
- ComputerLanguage: "schema:ComputerLanguage";
465
- ComputerStore: "schema:ComputerStore";
466
- ConfirmAction: "schema:ConfirmAction";
467
- Consortium: "schema:Consortium";
468
- ConsumeAction: "schema:ConsumeAction";
469
- ContactPage: "schema:ContactPage";
470
- ContactPoint: "schema:ContactPoint";
471
- ContactPointOption: "schema:ContactPointOption";
472
- ContagiousnessHealthAspect: "schema:ContagiousnessHealthAspect";
473
- ControlAction: "schema:ControlAction";
474
- ConvenienceStore: "schema:ConvenienceStore";
475
- Conversation: "schema:Conversation";
476
- CookAction: "schema:CookAction";
477
- Corporation: "schema:Corporation";
478
- CorrectionComment: "schema:CorrectionComment";
479
- Course: "schema:Course";
480
- CourseInstance: "schema:CourseInstance";
481
- Courthouse: "schema:Courthouse";
482
- CoverArt: "schema:CoverArt";
483
- CovidTestingFacility: "schema:CovidTestingFacility";
484
- CreateAction: "schema:CreateAction";
485
- CreativeWork: "schema:CreativeWork";
486
- CreativeWorkSeason: "schema:CreativeWorkSeason";
487
- CreativeWorkSeries: "schema:CreativeWorkSeries";
488
- CreditCard: "schema:CreditCard";
489
- Crematorium: "schema:Crematorium";
490
- CriticReview: "schema:CriticReview";
491
- CrossSectional: "schema:CrossSectional";
492
- CssSelectorType: "schema:CssSelectorType";
493
- CurrencyConversionService: "schema:CurrencyConversionService";
494
- DDxElement: "schema:DDxElement";
495
- DJMixAlbum: "schema:DJMixAlbum";
496
- DVDFormat: "schema:DVDFormat";
497
- DamagedCondition: "schema:DamagedCondition";
498
- DanceEvent: "schema:DanceEvent";
499
- DanceGroup: "schema:DanceGroup";
500
- DataCatalog: "schema:DataCatalog";
501
- DataDownload: "schema:DataDownload";
502
- DataFeed: "schema:DataFeed";
503
- DataFeedItem: "schema:DataFeedItem";
504
- DataType: "schema:DataType";
505
- Dataset: "schema:Dataset";
506
- Date: "schema:Date";
507
- DateTime: "schema:DateTime";
508
- DatedMoneySpecification: "schema:DatedMoneySpecification";
509
- DaySpa: "schema:DaySpa";
510
- DeactivateAction: "schema:DeactivateAction";
511
- DecontextualizedContent: "schema:DecontextualizedContent";
512
- DefenceEstablishment: "schema:DefenceEstablishment";
513
- DefinedRegion: "schema:DefinedRegion";
514
- DefinedTerm: "schema:DefinedTerm";
515
- DefinedTermSet: "schema:DefinedTermSet";
516
- DefinitiveLegalValue: "schema:DefinitiveLegalValue";
517
- DeleteAction: "schema:DeleteAction";
518
- DeliveryEvent: "schema:DeliveryEvent";
519
- DeliveryTimeSettings: "schema:DeliveryTimeSettings";
520
- Demand: "schema:Demand";
521
- DemoAlbum: "schema:DemoAlbum";
522
- Dentist: "schema:Dentist";
523
- Dentistry: "schema:Dentistry";
524
- DepartAction: "schema:DepartAction";
525
- DepartmentStore: "schema:DepartmentStore";
526
- DepositAccount: "schema:DepositAccount";
527
- Dermatologic: "schema:Dermatologic";
528
- Dermatology: "schema:Dermatology";
529
- DiabeticDiet: "schema:DiabeticDiet";
530
- Diagnostic: "schema:Diagnostic";
531
- DiagnosticLab: "schema:DiagnosticLab";
532
- DiagnosticProcedure: "schema:DiagnosticProcedure";
533
- Diet: "schema:Diet";
534
- DietNutrition: "schema:DietNutrition";
535
- DietarySupplement: "schema:DietarySupplement";
536
- DigitalAudioTapeFormat: "schema:DigitalAudioTapeFormat";
537
- DigitalDocument: "schema:DigitalDocument";
538
- DigitalDocumentPermission: "schema:DigitalDocumentPermission";
539
- DigitalDocumentPermissionType: "schema:DigitalDocumentPermissionType";
540
- DigitalFormat: "schema:DigitalFormat";
541
- DisabilitySupport: "schema:DisabilitySupport";
542
- DisagreeAction: "schema:DisagreeAction";
543
- Discontinued: "schema:Discontinued";
544
- DiscoverAction: "schema:DiscoverAction";
545
- DiscussionForumPosting: "schema:DiscussionForumPosting";
546
- DislikeAction: "schema:DislikeAction";
547
- Distance: "schema:Distance";
548
- DistanceFee: "schema:DistanceFee";
549
- Distillery: "schema:Distillery";
550
- DonateAction: "schema:DonateAction";
551
- DoseSchedule: "schema:DoseSchedule";
552
- DoubleBlindedTrial: "schema:DoubleBlindedTrial";
553
- DownloadAction: "schema:DownloadAction";
554
- Downpayment: "schema:Downpayment";
555
- DrawAction: "schema:DrawAction";
556
- Drawing: "schema:Drawing";
557
- DrinkAction: "schema:DrinkAction";
558
- DriveWheelConfigurationValue: "schema:DriveWheelConfigurationValue";
559
- DrivingSchoolVehicleUsage: "schema:DrivingSchoolVehicleUsage";
560
- DrugClass: "schema:DrugClass";
561
- DrugCost: "schema:DrugCost";
562
- DrugCostCategory: "schema:DrugCostCategory";
563
- DrugLegalStatus: "schema:DrugLegalStatus";
564
- DrugPregnancyCategory: "schema:DrugPregnancyCategory";
565
- DrugPrescriptionStatus: "schema:DrugPrescriptionStatus";
566
- DrugStrength: "schema:DrugStrength";
567
- DryCleaningOrLaundry: "schema:DryCleaningOrLaundry";
568
- Duration: "schema:Duration";
569
- EBook: "schema:EBook";
570
- EPRelease: "schema:EPRelease";
571
- EUEnergyEfficiencyCategoryA1Plus: "schema:EUEnergyEfficiencyCategoryA1Plus";
572
- EUEnergyEfficiencyCategoryA2Plus: "schema:EUEnergyEfficiencyCategoryA2Plus";
573
- EUEnergyEfficiencyCategoryA3Plus: "schema:EUEnergyEfficiencyCategoryA3Plus";
574
- EUEnergyEfficiencyCategoryA: "schema:EUEnergyEfficiencyCategoryA";
575
- EUEnergyEfficiencyCategoryB: "schema:EUEnergyEfficiencyCategoryB";
576
- EUEnergyEfficiencyCategoryC: "schema:EUEnergyEfficiencyCategoryC";
577
- EUEnergyEfficiencyCategoryD: "schema:EUEnergyEfficiencyCategoryD";
578
- EUEnergyEfficiencyCategoryE: "schema:EUEnergyEfficiencyCategoryE";
579
- EUEnergyEfficiencyCategoryF: "schema:EUEnergyEfficiencyCategoryF";
580
- EUEnergyEfficiencyCategoryG: "schema:EUEnergyEfficiencyCategoryG";
581
- EUEnergyEfficiencyEnumeration: "schema:EUEnergyEfficiencyEnumeration";
582
- Ear: "schema:Ear";
583
- EatAction: "schema:EatAction";
584
- EditedOrCroppedContent: "schema:EditedOrCroppedContent";
585
- EducationEvent: "schema:EducationEvent";
586
- EducationalAudience: "schema:EducationalAudience";
587
- EducationalOccupationalCredential: "schema:EducationalOccupationalCredential";
588
- EducationalOccupationalProgram: "schema:EducationalOccupationalProgram";
589
- EducationalOrganization: "schema:EducationalOrganization";
590
- EffectivenessHealthAspect: "schema:EffectivenessHealthAspect";
591
- Electrician: "schema:Electrician";
592
- ElectronicsStore: "schema:ElectronicsStore";
593
- ElementarySchool: "schema:ElementarySchool";
594
- EmailMessage: "schema:EmailMessage";
595
- Embassy: "schema:Embassy";
596
- Emergency: "schema:Emergency";
597
- EmergencyService: "schema:EmergencyService";
598
- EmployeeRole: "schema:EmployeeRole";
599
- EmployerAggregateRating: "schema:EmployerAggregateRating";
600
- EmployerReview: "schema:EmployerReview";
601
- EmploymentAgency: "schema:EmploymentAgency";
602
- Endocrine: "schema:Endocrine";
603
- EndorseAction: "schema:EndorseAction";
604
- EndorsementRating: "schema:EndorsementRating";
605
- Energy: "schema:Energy";
606
- EnergyConsumptionDetails: "schema:EnergyConsumptionDetails";
607
- EnergyEfficiencyEnumeration: "schema:EnergyEfficiencyEnumeration";
608
- EnergyStarCertified: "schema:EnergyStarCertified";
609
- EnergyStarEnergyEfficiencyEnumeration: "schema:EnergyStarEnergyEfficiencyEnumeration";
610
- EngineSpecification: "schema:EngineSpecification";
611
- EnrollingByInvitation: "schema:EnrollingByInvitation";
612
- EntertainmentBusiness: "schema:EntertainmentBusiness";
613
- EntryPoint: "schema:EntryPoint";
614
- Enumeration: "schema:Enumeration";
615
- Episode: "schema:Episode";
616
- EventAttendanceModeEnumeration: "schema:EventAttendanceModeEnumeration";
617
- EventCancelled: "schema:EventCancelled";
618
- EventMovedOnline: "schema:EventMovedOnline";
619
- EventPostponed: "schema:EventPostponed";
620
- EventRescheduled: "schema:EventRescheduled";
621
- EventReservation: "schema:EventReservation";
622
- EventScheduled: "schema:EventScheduled";
623
- EventSeries: "schema:EventSeries";
624
- EventStatusType: "schema:EventStatusType";
625
- EventVenue: "schema:EventVenue";
626
- EvidenceLevelA: "schema:EvidenceLevelA";
627
- EvidenceLevelB: "schema:EvidenceLevelB";
628
- EvidenceLevelC: "schema:EvidenceLevelC";
629
- ExchangeRateSpecification: "schema:ExchangeRateSpecification";
630
- ExchangeRefund: "schema:ExchangeRefund";
631
- ExerciseAction: "schema:ExerciseAction";
632
- ExerciseGym: "schema:ExerciseGym";
633
- ExercisePlan: "schema:ExercisePlan";
634
- ExhibitionEvent: "schema:ExhibitionEvent";
635
- Eye: "schema:Eye";
636
- FAQPage: "schema:FAQPage";
637
- FDAcategoryA: "schema:FDAcategoryA";
638
- FDAcategoryB: "schema:FDAcategoryB";
639
- FDAcategoryC: "schema:FDAcategoryC";
640
- FDAcategoryD: "schema:FDAcategoryD";
641
- FDAcategoryX: "schema:FDAcategoryX";
642
- FDAnotEvaluated: "schema:FDAnotEvaluated";
643
- FMRadioChannel: "schema:FMRadioChannel";
644
- FailedActionStatus: "schema:FailedActionStatus";
645
- False: "schema:False";
646
- FastFoodRestaurant: "schema:FastFoodRestaurant";
647
- Female: "schema:Female";
648
- Festival: "schema:Festival";
649
- FilmAction: "schema:FilmAction";
650
- FinancialProduct: "schema:FinancialProduct";
651
- FinancialService: "schema:FinancialService";
652
- FindAction: "schema:FindAction";
653
- FireStation: "schema:FireStation";
654
- Flexibility: "schema:Flexibility";
655
- Flight: "schema:Flight";
656
- FlightReservation: "schema:FlightReservation";
657
- Float: "schema:Float";
658
- FloorPlan: "schema:FloorPlan";
659
- Florist: "schema:Florist";
660
- FollowAction: "schema:FollowAction";
661
- FoodEstablishment: "schema:FoodEstablishment";
662
- FoodEstablishmentReservation: "schema:FoodEstablishmentReservation";
663
- FoodEvent: "schema:FoodEvent";
664
- FoodService: "schema:FoodService";
665
- FourWheelDriveConfiguration: "schema:FourWheelDriveConfiguration";
666
- FrontWheelDriveConfiguration: "schema:FrontWheelDriveConfiguration";
667
- FullRefund: "schema:FullRefund";
668
- FundingAgency: "schema:FundingAgency";
669
- FundingScheme: "schema:FundingScheme";
670
- FurnitureStore: "schema:FurnitureStore";
671
- GamePlayMode: "schema:GamePlayMode";
672
- GameServer: "schema:GameServer";
673
- GameServerStatus: "schema:GameServerStatus";
674
- GardenStore: "schema:GardenStore";
675
- GasStation: "schema:GasStation";
676
- Gastroenterologic: "schema:Gastroenterologic";
677
- GatedResidenceCommunity: "schema:GatedResidenceCommunity";
678
- GenderType: "schema:GenderType";
679
- GeneralContractor: "schema:GeneralContractor";
680
- Genetic: "schema:Genetic";
681
- Genitourinary: "schema:Genitourinary";
682
- GeoCircle: "schema:GeoCircle";
683
- GeoCoordinates: "schema:GeoCoordinates";
684
- GeoShape: "schema:GeoShape";
685
- GeospatialGeometry: "schema:GeospatialGeometry";
686
- Geriatric: "schema:Geriatric";
687
- GettingAccessHealthAspect: "schema:GettingAccessHealthAspect";
688
- GiveAction: "schema:GiveAction";
689
- GlutenFreeDiet: "schema:GlutenFreeDiet";
690
- GovernmentBenefitsType: "schema:GovernmentBenefitsType";
691
- GovernmentBuilding: "schema:GovernmentBuilding";
692
- GovernmentOffice: "schema:GovernmentOffice";
693
- GovernmentOrganization: "schema:GovernmentOrganization";
694
- GovernmentPermit: "schema:GovernmentPermit";
695
- GovernmentService: "schema:GovernmentService";
696
- Grant: "schema:Grant";
697
- GraphicNovel: "schema:GraphicNovel";
698
- GroceryStore: "schema:GroceryStore";
699
- GroupBoardingPolicy: "schema:GroupBoardingPolicy";
700
- Guide: "schema:Guide";
701
- Gynecologic: "schema:Gynecologic";
702
- HVACBusiness: "schema:HVACBusiness";
703
- Hackathon: "schema:Hackathon";
704
- HairSalon: "schema:HairSalon";
705
- HalalDiet: "schema:HalalDiet";
706
- Hardcover: "schema:Hardcover";
707
- HardwareStore: "schema:HardwareStore";
708
- Head: "schema:Head";
709
- HealthAndBeautyBusiness: "schema:HealthAndBeautyBusiness";
710
- HealthAspectEnumeration: "schema:HealthAspectEnumeration";
711
- HealthCare: "schema:HealthCare";
712
- HealthClub: "schema:HealthClub";
713
- HealthInsurancePlan: "schema:HealthInsurancePlan";
714
- HealthPlanCostSharingSpecification: "schema:HealthPlanCostSharingSpecification";
715
- HealthPlanFormulary: "schema:HealthPlanFormulary";
716
- HealthPlanNetwork: "schema:HealthPlanNetwork";
717
- HealthTopicContent: "schema:HealthTopicContent";
718
- HearingImpairedSupported: "schema:HearingImpairedSupported";
719
- Hematologic: "schema:Hematologic";
720
- HighSchool: "schema:HighSchool";
721
- HinduDiet: "schema:HinduDiet";
722
- HinduTemple: "schema:HinduTemple";
723
- HobbyShop: "schema:HobbyShop";
724
- HomeAndConstructionBusiness: "schema:HomeAndConstructionBusiness";
725
- HomeGoodsStore: "schema:HomeGoodsStore";
726
- Homeopathic: "schema:Homeopathic";
727
- Hostel: "schema:Hostel";
728
- HotelRoom: "schema:HotelRoom";
729
- House: "schema:House";
730
- HousePainter: "schema:HousePainter";
731
- HowItWorksHealthAspect: "schema:HowItWorksHealthAspect";
732
- HowOrWhereHealthAspect: "schema:HowOrWhereHealthAspect";
733
- HowTo: "schema:HowTo";
734
- HowToDirection: "schema:HowToDirection";
735
- HowToItem: "schema:HowToItem";
736
- HowToSection: "schema:HowToSection";
737
- HowToStep: "schema:HowToStep";
738
- HowToSupply: "schema:HowToSupply";
739
- HowToTip: "schema:HowToTip";
740
- HowToTool: "schema:HowToTool";
741
- HyperToc: "schema:HyperToc";
742
- HyperTocEntry: "schema:HyperTocEntry";
743
- IceCreamShop: "schema:IceCreamShop";
744
- IgnoreAction: "schema:IgnoreAction";
745
- ImageGallery: "schema:ImageGallery";
746
- ImageObject: "schema:ImageObject";
747
- ImagingTest: "schema:ImagingTest";
748
- InForce: "schema:InForce";
749
- InStock: "schema:InStock";
750
- InStoreOnly: "schema:InStoreOnly";
751
- IndividualProduct: "schema:IndividualProduct";
752
- Infectious: "schema:Infectious";
753
- InfectiousAgentClass: "schema:InfectiousAgentClass";
754
- InfectiousDisease: "schema:InfectiousDisease";
755
- InformAction: "schema:InformAction";
756
- IngredientsHealthAspect: "schema:IngredientsHealthAspect";
757
- InsertAction: "schema:InsertAction";
758
- InstallAction: "schema:InstallAction";
759
- Installment: "schema:Installment";
760
- InsuranceAgency: "schema:InsuranceAgency";
761
- Intangible: "schema:Intangible";
762
- Integer: "schema:Integer";
763
- InteractAction: "schema:InteractAction";
764
- InteractionCounter: "schema:InteractionCounter";
765
- InternationalTrial: "schema:InternationalTrial";
766
- InternetCafe: "schema:InternetCafe";
767
- InvestmentFund: "schema:InvestmentFund";
768
- InvestmentOrDeposit: "schema:InvestmentOrDeposit";
769
- InviteAction: "schema:InviteAction";
770
- Invoice: "schema:Invoice";
771
- InvoicePrice: "schema:InvoicePrice";
772
- ItemAvailability: "schema:ItemAvailability";
773
- ItemList: "schema:ItemList";
774
- ItemListOrderAscending: "schema:ItemListOrderAscending";
775
- ItemListOrderDescending: "schema:ItemListOrderDescending";
776
- ItemListOrderType: "schema:ItemListOrderType";
777
- ItemListUnordered: "schema:ItemListUnordered";
778
- ItemPage: "schema:ItemPage";
779
- JewelryStore: "schema:JewelryStore";
780
- JobPosting: "schema:JobPosting";
781
- JoinAction: "schema:JoinAction";
782
- Joint: "schema:Joint";
783
- KosherDiet: "schema:KosherDiet";
784
- LaboratoryScience: "schema:LaboratoryScience";
785
- LakeBodyOfWater: "schema:LakeBodyOfWater";
786
- Landform: "schema:Landform";
787
- LandmarksOrHistoricalBuildings: "schema:LandmarksOrHistoricalBuildings";
788
- LaserDiscFormat: "schema:LaserDiscFormat";
789
- LearningResource: "schema:LearningResource";
790
- LeaveAction: "schema:LeaveAction";
791
- LeftHandDriving: "schema:LeftHandDriving";
792
- LegalForceStatus: "schema:LegalForceStatus";
793
- LegalService: "schema:LegalService";
794
- LegalValueLevel: "schema:LegalValueLevel";
795
- Legislation: "schema:Legislation";
796
- LegislationObject: "schema:LegislationObject";
797
- LegislativeBuilding: "schema:LegislativeBuilding";
798
- LeisureTimeActivity: "schema:LeisureTimeActivity";
799
- LendAction: "schema:LendAction";
800
- LibrarySystem: "schema:LibrarySystem";
801
- LifestyleModification: "schema:LifestyleModification";
802
- LikeAction: "schema:LikeAction";
803
- LimitedAvailability: "schema:LimitedAvailability";
804
- LimitedByGuaranteeCharity: "schema:LimitedByGuaranteeCharity";
805
- LinkRole: "schema:LinkRole";
806
- LiquorStore: "schema:LiquorStore";
807
- ListItem: "schema:ListItem";
808
- ListPrice: "schema:ListPrice";
809
- ListenAction: "schema:ListenAction";
810
- LiteraryEvent: "schema:LiteraryEvent";
811
- LiveAlbum: "schema:LiveAlbum";
812
- LiveBlogPosting: "schema:LiveBlogPosting";
813
- LivingWithHealthAspect: "schema:LivingWithHealthAspect";
814
- LoanOrCredit: "schema:LoanOrCredit";
815
- LocalBusiness: "schema:LocalBusiness";
816
- LocationFeatureSpecification: "schema:LocationFeatureSpecification";
817
- LockerDelivery: "schema:LockerDelivery";
818
- Locksmith: "schema:Locksmith";
819
- LodgingBusiness: "schema:LodgingBusiness";
820
- LodgingReservation: "schema:LodgingReservation";
821
- Longitudinal: "schema:Longitudinal";
822
- LoseAction: "schema:LoseAction";
823
- LowCalorieDiet: "schema:LowCalorieDiet";
824
- LowFatDiet: "schema:LowFatDiet";
825
- LowLactoseDiet: "schema:LowLactoseDiet";
826
- LowSaltDiet: "schema:LowSaltDiet";
827
- Lung: "schema:Lung";
828
- LymphaticVessel: "schema:LymphaticVessel";
829
- MRI: "schema:MRI";
830
- MSRP: "schema:MSRP";
831
- Male: "schema:Male";
832
- Manuscript: "schema:Manuscript";
833
- Map: "schema:Map";
834
- MapCategoryType: "schema:MapCategoryType";
835
- MarryAction: "schema:MarryAction";
836
- Mass: "schema:Mass";
837
- MathSolver: "schema:MathSolver";
838
- MaximumDoseSchedule: "schema:MaximumDoseSchedule";
839
- MayTreatHealthAspect: "schema:MayTreatHealthAspect";
840
- MeasurementTypeEnumeration: "schema:MeasurementTypeEnumeration";
841
- MediaGallery: "schema:MediaGallery";
842
- MediaManipulationRatingEnumeration: "schema:MediaManipulationRatingEnumeration";
843
- MediaObject: "schema:MediaObject";
844
- MediaReview: "schema:MediaReview";
845
- MediaSubscription: "schema:MediaSubscription";
846
- MedicalAudience: "schema:MedicalAudience";
847
- MedicalAudienceType: "schema:MedicalAudienceType";
848
- MedicalBusiness: "schema:MedicalBusiness";
849
- MedicalCause: "schema:MedicalCause";
850
- MedicalClinic: "schema:MedicalClinic";
851
- MedicalCode: "schema:MedicalCode";
852
- MedicalCondition: "schema:MedicalCondition";
853
- MedicalConditionStage: "schema:MedicalConditionStage";
854
- MedicalContraindication: "schema:MedicalContraindication";
855
- MedicalDevice: "schema:MedicalDevice";
856
- MedicalDevicePurpose: "schema:MedicalDevicePurpose";
857
- MedicalEntity: "schema:MedicalEntity";
858
- MedicalEnumeration: "schema:MedicalEnumeration";
859
- MedicalEvidenceLevel: "schema:MedicalEvidenceLevel";
860
- MedicalGuideline: "schema:MedicalGuideline";
861
- MedicalGuidelineContraindication: "schema:MedicalGuidelineContraindication";
862
- MedicalGuidelineRecommendation: "schema:MedicalGuidelineRecommendation";
863
- MedicalImagingTechnique: "schema:MedicalImagingTechnique";
864
- MedicalIndication: "schema:MedicalIndication";
865
- MedicalIntangible: "schema:MedicalIntangible";
866
- MedicalObservationalStudy: "schema:MedicalObservationalStudy";
867
- MedicalObservationalStudyDesign: "schema:MedicalObservationalStudyDesign";
868
- MedicalOrganization: "schema:MedicalOrganization";
869
- MedicalProcedure: "schema:MedicalProcedure";
870
- MedicalProcedureType: "schema:MedicalProcedureType";
871
- MedicalResearcher: "schema:MedicalResearcher";
872
- MedicalRiskCalculator: "schema:MedicalRiskCalculator";
873
- MedicalRiskEstimator: "schema:MedicalRiskEstimator";
874
- MedicalRiskFactor: "schema:MedicalRiskFactor";
875
- MedicalRiskScore: "schema:MedicalRiskScore";
876
- MedicalScholarlyArticle: "schema:MedicalScholarlyArticle";
877
- MedicalSign: "schema:MedicalSign";
878
- MedicalSignOrSymptom: "schema:MedicalSignOrSymptom";
879
- MedicalStudy: "schema:MedicalStudy";
880
- MedicalStudyStatus: "schema:MedicalStudyStatus";
881
- MedicalSymptom: "schema:MedicalSymptom";
882
- MedicalTest: "schema:MedicalTest";
883
- MedicalTestPanel: "schema:MedicalTestPanel";
884
- MedicalTherapy: "schema:MedicalTherapy";
885
- MedicalTrial: "schema:MedicalTrial";
886
- MedicalTrialDesign: "schema:MedicalTrialDesign";
887
- MedicalWebPage: "schema:MedicalWebPage";
888
- MedicineSystem: "schema:MedicineSystem";
889
- MeetingRoom: "schema:MeetingRoom";
890
- MensClothingStore: "schema:MensClothingStore";
891
- Menu: "schema:Menu";
892
- MenuItem: "schema:MenuItem";
893
- MenuSection: "schema:MenuSection";
894
- MerchantReturnEnumeration: "schema:MerchantReturnEnumeration";
895
- MerchantReturnFiniteReturnWindow: "schema:MerchantReturnFiniteReturnWindow";
896
- MerchantReturnNotPermitted: "schema:MerchantReturnNotPermitted";
897
- MerchantReturnPolicy: "schema:MerchantReturnPolicy";
898
- MerchantReturnUnlimitedWindow: "schema:MerchantReturnUnlimitedWindow";
899
- MerchantReturnUnspecified: "schema:MerchantReturnUnspecified";
900
- Message: "schema:Message";
901
- MiddleSchool: "schema:MiddleSchool";
902
- Midwifery: "schema:Midwifery";
903
- MinimumAdvertisedPrice: "schema:MinimumAdvertisedPrice";
904
- MisconceptionsHealthAspect: "schema:MisconceptionsHealthAspect";
905
- MixedEventAttendanceMode: "schema:MixedEventAttendanceMode";
906
- MixtapeAlbum: "schema:MixtapeAlbum";
907
- MobileApplication: "schema:MobileApplication";
908
- MobilePhoneStore: "schema:MobilePhoneStore";
909
- MonetaryAmount: "schema:MonetaryAmount";
910
- MonetaryAmountDistribution: "schema:MonetaryAmountDistribution";
911
- MonetaryGrant: "schema:MonetaryGrant";
912
- MoneyTransfer: "schema:MoneyTransfer";
913
- MortgageLoan: "schema:MortgageLoan";
914
- Motel: "schema:Motel";
915
- MotorcycleDealer: "schema:MotorcycleDealer";
916
- MotorcycleRepair: "schema:MotorcycleRepair";
917
- MotorizedBicycle: "schema:MotorizedBicycle";
918
- MoveAction: "schema:MoveAction";
919
- Movie: "schema:Movie";
920
- MovieClip: "schema:MovieClip";
921
- MovieRentalStore: "schema:MovieRentalStore";
922
- MovieSeries: "schema:MovieSeries";
923
- MovieTheater: "schema:MovieTheater";
924
- MovingCompany: "schema:MovingCompany";
925
- MultiCenterTrial: "schema:MultiCenterTrial";
926
- MultiPlayer: "schema:MultiPlayer";
927
- MulticellularParasite: "schema:MulticellularParasite";
928
- Musculoskeletal: "schema:Musculoskeletal";
929
- MusculoskeletalExam: "schema:MusculoskeletalExam";
930
- MusicAlbum: "schema:MusicAlbum";
931
- MusicAlbumProductionType: "schema:MusicAlbumProductionType";
932
- MusicAlbumReleaseType: "schema:MusicAlbumReleaseType";
933
- MusicComposition: "schema:MusicComposition";
934
- MusicEvent: "schema:MusicEvent";
935
- MusicGroup: "schema:MusicGroup";
936
- MusicPlaylist: "schema:MusicPlaylist";
937
- MusicRecording: "schema:MusicRecording";
938
- MusicRelease: "schema:MusicRelease";
939
- MusicReleaseFormatType: "schema:MusicReleaseFormatType";
940
- MusicStore: "schema:MusicStore";
941
- MusicVenue: "schema:MusicVenue";
942
- MusicVideoObject: "schema:MusicVideoObject";
943
- NGO: "schema:NGO";
944
- NLNonprofitType: "schema:NLNonprofitType";
945
- NailSalon: "schema:NailSalon";
946
- Neck: "schema:Neck";
947
- Neuro: "schema:Neuro";
948
- Neurologic: "schema:Neurologic";
949
- NewCondition: "schema:NewCondition";
950
- NewsArticle: "schema:NewsArticle";
951
- NewsMediaOrganization: "schema:NewsMediaOrganization";
952
- NightClub: "schema:NightClub";
953
- NoninvasiveProcedure: "schema:NoninvasiveProcedure";
954
- Nonprofit501a: "schema:Nonprofit501a";
955
- Nonprofit501c10: "schema:Nonprofit501c10";
956
- Nonprofit501c11: "schema:Nonprofit501c11";
957
- Nonprofit501c12: "schema:Nonprofit501c12";
958
- Nonprofit501c13: "schema:Nonprofit501c13";
959
- Nonprofit501c14: "schema:Nonprofit501c14";
960
- Nonprofit501c15: "schema:Nonprofit501c15";
961
- Nonprofit501c16: "schema:Nonprofit501c16";
962
- Nonprofit501c17: "schema:Nonprofit501c17";
963
- Nonprofit501c18: "schema:Nonprofit501c18";
964
- Nonprofit501c19: "schema:Nonprofit501c19";
965
- Nonprofit501c1: "schema:Nonprofit501c1";
966
- Nonprofit501c20: "schema:Nonprofit501c20";
967
- Nonprofit501c21: "schema:Nonprofit501c21";
968
- Nonprofit501c22: "schema:Nonprofit501c22";
969
- Nonprofit501c23: "schema:Nonprofit501c23";
970
- Nonprofit501c24: "schema:Nonprofit501c24";
971
- Nonprofit501c25: "schema:Nonprofit501c25";
972
- Nonprofit501c26: "schema:Nonprofit501c26";
973
- Nonprofit501c27: "schema:Nonprofit501c27";
974
- Nonprofit501c28: "schema:Nonprofit501c28";
975
- Nonprofit501c2: "schema:Nonprofit501c2";
976
- Nonprofit501c3: "schema:Nonprofit501c3";
977
- Nonprofit501c4: "schema:Nonprofit501c4";
978
- Nonprofit501c5: "schema:Nonprofit501c5";
979
- Nonprofit501c6: "schema:Nonprofit501c6";
980
- Nonprofit501c7: "schema:Nonprofit501c7";
981
- Nonprofit501c8: "schema:Nonprofit501c8";
982
- Nonprofit501c9: "schema:Nonprofit501c9";
983
- Nonprofit501d: "schema:Nonprofit501d";
984
- Nonprofit501e: "schema:Nonprofit501e";
985
- Nonprofit501f: "schema:Nonprofit501f";
986
- Nonprofit501k: "schema:Nonprofit501k";
987
- Nonprofit501n: "schema:Nonprofit501n";
988
- Nonprofit501q: "schema:Nonprofit501q";
989
- Nonprofit527: "schema:Nonprofit527";
990
- NonprofitANBI: "schema:NonprofitANBI";
991
- NonprofitSBBI: "schema:NonprofitSBBI";
992
- NonprofitType: "schema:NonprofitType";
993
- Nose: "schema:Nose";
994
- NotInForce: "schema:NotInForce";
995
- NotYetRecruiting: "schema:NotYetRecruiting";
996
- Notary: "schema:Notary";
997
- NoteDigitalDocument: "schema:NoteDigitalDocument";
998
- Number: "schema:Number";
999
- Nursing: "schema:Nursing";
1000
- NutritionInformation: "schema:NutritionInformation";
1001
- OTC: "schema:OTC";
1002
- Observation: "schema:Observation";
1003
- Observational: "schema:Observational";
1004
- Obstetric: "schema:Obstetric";
1005
- Occupation: "schema:Occupation";
1006
- OccupationalActivity: "schema:OccupationalActivity";
1007
- OccupationalExperienceRequirements: "schema:OccupationalExperienceRequirements";
1008
- OccupationalTherapy: "schema:OccupationalTherapy";
1009
- OceanBodyOfWater: "schema:OceanBodyOfWater";
1010
- Offer: "schema:Offer";
1011
- OfferCatalog: "schema:OfferCatalog";
1012
- OfferForLease: "schema:OfferForLease";
1013
- OfferForPurchase: "schema:OfferForPurchase";
1014
- OfferItemCondition: "schema:OfferItemCondition";
1015
- OfferShippingDetails: "schema:OfferShippingDetails";
1016
- OfficeEquipmentStore: "schema:OfficeEquipmentStore";
1017
- OfficialLegalValue: "schema:OfficialLegalValue";
1018
- OfflineEventAttendanceMode: "schema:OfflineEventAttendanceMode";
1019
- OfflinePermanently: "schema:OfflinePermanently";
1020
- OfflineTemporarily: "schema:OfflineTemporarily";
1021
- OnDemandEvent: "schema:OnDemandEvent";
1022
- OnSitePickup: "schema:OnSitePickup";
1023
- Oncologic: "schema:Oncologic";
1024
- OneTimePayments: "schema:OneTimePayments";
1025
- Online: "schema:Online";
1026
- OnlineEventAttendanceMode: "schema:OnlineEventAttendanceMode";
1027
- OnlineFull: "schema:OnlineFull";
1028
- OnlineOnly: "schema:OnlineOnly";
1029
- OpenTrial: "schema:OpenTrial";
1030
- OpinionNewsArticle: "schema:OpinionNewsArticle";
1031
- Optician: "schema:Optician";
1032
- Optometric: "schema:Optometric";
1033
- Order: "schema:Order";
1034
- OrderAction: "schema:OrderAction";
1035
- OrderCancelled: "schema:OrderCancelled";
1036
- OrderDelivered: "schema:OrderDelivered";
1037
- OrderInTransit: "schema:OrderInTransit";
1038
- OrderItem: "schema:OrderItem";
1039
- OrderPaymentDue: "schema:OrderPaymentDue";
1040
- OrderPickupAvailable: "schema:OrderPickupAvailable";
1041
- OrderProblem: "schema:OrderProblem";
1042
- OrderProcessing: "schema:OrderProcessing";
1043
- OrderReturned: "schema:OrderReturned";
1044
- OrderStatus: "schema:OrderStatus";
1045
- OrganizationRole: "schema:OrganizationRole";
1046
- OrganizeAction: "schema:OrganizeAction";
1047
- OriginalMediaContent: "schema:OriginalMediaContent";
1048
- OriginalShippingFees: "schema:OriginalShippingFees";
1049
- Osteopathic: "schema:Osteopathic";
1050
- Otolaryngologic: "schema:Otolaryngologic";
1051
- OutOfStock: "schema:OutOfStock";
1052
- OutletStore: "schema:OutletStore";
1053
- OverviewHealthAspect: "schema:OverviewHealthAspect";
1054
- OwnershipInfo: "schema:OwnershipInfo";
1055
- PET: "schema:PET";
1056
- PaidLeave: "schema:PaidLeave";
1057
- PaintAction: "schema:PaintAction";
1058
- PalliativeProcedure: "schema:PalliativeProcedure";
1059
- Paperback: "schema:Paperback";
1060
- ParcelDelivery: "schema:ParcelDelivery";
1061
- ParcelService: "schema:ParcelService";
1062
- ParentAudience: "schema:ParentAudience";
1063
- ParentalSupport: "schema:ParentalSupport";
1064
- ParkingFacility: "schema:ParkingFacility";
1065
- ParkingMap: "schema:ParkingMap";
1066
- PartiallyInForce: "schema:PartiallyInForce";
1067
- Pathology: "schema:Pathology";
1068
- PathologyTest: "schema:PathologyTest";
1069
- Patient: "schema:Patient";
1070
- PatientExperienceHealthAspect: "schema:PatientExperienceHealthAspect";
1071
- PawnShop: "schema:PawnShop";
1072
- PayAction: "schema:PayAction";
1073
- PaymentAutomaticallyApplied: "schema:PaymentAutomaticallyApplied";
1074
- PaymentCard: "schema:PaymentCard";
1075
- PaymentComplete: "schema:PaymentComplete";
1076
- PaymentDeclined: "schema:PaymentDeclined";
1077
- PaymentDue: "schema:PaymentDue";
1078
- PaymentPastDue: "schema:PaymentPastDue";
1079
- PaymentService: "schema:PaymentService";
1080
- PaymentStatusType: "schema:PaymentStatusType";
1081
- Pediatric: "schema:Pediatric";
1082
- PeopleAudience: "schema:PeopleAudience";
1083
- PercutaneousProcedure: "schema:PercutaneousProcedure";
1084
- PerformAction: "schema:PerformAction";
1085
- PerformanceRole: "schema:PerformanceRole";
1086
- PerformingArtsTheater: "schema:PerformingArtsTheater";
1087
- PerformingGroup: "schema:PerformingGroup";
1088
- Periodical: "schema:Periodical";
1089
- Permit: "schema:Permit";
1090
- PetStore: "schema:PetStore";
1091
- Pharmacy: "schema:Pharmacy";
1092
- PharmacySpecialty: "schema:PharmacySpecialty";
1093
- Photograph: "schema:Photograph";
1094
- PhotographAction: "schema:PhotographAction";
1095
- PhysicalActivity: "schema:PhysicalActivity";
1096
- PhysicalActivityCategory: "schema:PhysicalActivityCategory";
1097
- PhysicalExam: "schema:PhysicalExam";
1098
- PhysicalTherapy: "schema:PhysicalTherapy";
1099
- Physician: "schema:Physician";
1100
- Physiotherapy: "schema:Physiotherapy";
1101
- PlaceOfWorship: "schema:PlaceOfWorship";
1102
- PlaceboControlledTrial: "schema:PlaceboControlledTrial";
1103
- PlanAction: "schema:PlanAction";
1104
- PlasticSurgery: "schema:PlasticSurgery";
1105
- PlayAction: "schema:PlayAction";
1106
- Playground: "schema:Playground";
1107
- Plumber: "schema:Plumber";
1108
- PodcastEpisode: "schema:PodcastEpisode";
1109
- PodcastSeason: "schema:PodcastSeason";
1110
- PodcastSeries: "schema:PodcastSeries";
1111
- Podiatric: "schema:Podiatric";
1112
- PoliceStation: "schema:PoliceStation";
1113
- Pond: "schema:Pond";
1114
- PostOffice: "schema:PostOffice";
1115
- PostalAddress: "schema:PostalAddress";
1116
- PostalCodeRangeSpecification: "schema:PostalCodeRangeSpecification";
1117
- Poster: "schema:Poster";
1118
- PotentialActionStatus: "schema:PotentialActionStatus";
1119
- PreOrder: "schema:PreOrder";
1120
- PreOrderAction: "schema:PreOrderAction";
1121
- PreSale: "schema:PreSale";
1122
- PregnancyHealthAspect: "schema:PregnancyHealthAspect";
1123
- PrependAction: "schema:PrependAction";
1124
- Preschool: "schema:Preschool";
1125
- PrescriptionOnly: "schema:PrescriptionOnly";
1126
- PresentationDigitalDocument: "schema:PresentationDigitalDocument";
1127
- PreventionHealthAspect: "schema:PreventionHealthAspect";
1128
- PreventionIndication: "schema:PreventionIndication";
1129
- PriceComponentTypeEnumeration: "schema:PriceComponentTypeEnumeration";
1130
- PriceTypeEnumeration: "schema:PriceTypeEnumeration";
1131
- PrimaryCare: "schema:PrimaryCare";
1132
- Prion: "schema:Prion";
1133
- Product: "schema:Product";
1134
- ProductCollection: "schema:ProductCollection";
1135
- ProductGroup: "schema:ProductGroup";
1136
- ProductModel: "schema:ProductModel";
1137
- ProfessionalService: "schema:ProfessionalService";
1138
- ProfilePage: "schema:ProfilePage";
1139
- PrognosisHealthAspect: "schema:PrognosisHealthAspect";
1140
- ProgramMembership: "schema:ProgramMembership";
1141
- PronounceableText: "schema:PronounceableText";
1142
- PropertyValue: "schema:PropertyValue";
1143
- PropertyValueSpecification: "schema:PropertyValueSpecification";
1144
- Protozoa: "schema:Protozoa";
1145
- Psychiatric: "schema:Psychiatric";
1146
- PsychologicalTreatment: "schema:PsychologicalTreatment";
1147
- PublicHealth: "schema:PublicHealth";
1148
- PublicSwimmingPool: "schema:PublicSwimmingPool";
1149
- PublicToilet: "schema:PublicToilet";
1150
- PublicationEvent: "schema:PublicationEvent";
1151
- PublicationIssue: "schema:PublicationIssue";
1152
- PublicationVolume: "schema:PublicationVolume";
1153
- Pulmonary: "schema:Pulmonary";
1154
- QAPage: "schema:QAPage";
1155
- QuantitativeValueDistribution: "schema:QuantitativeValueDistribution";
1156
- Quantity: "schema:Quantity";
1157
- Question: "schema:Question";
1158
- Quiz: "schema:Quiz";
1159
- Quotation: "schema:Quotation";
1160
- QuoteAction: "schema:QuoteAction";
1161
- RVPark: "schema:RVPark";
1162
- RadiationTherapy: "schema:RadiationTherapy";
1163
- RadioBroadcastService: "schema:RadioBroadcastService";
1164
- RadioChannel: "schema:RadioChannel";
1165
- RadioClip: "schema:RadioClip";
1166
- RadioEpisode: "schema:RadioEpisode";
1167
- RadioSeason: "schema:RadioSeason";
1168
- RadioSeries: "schema:RadioSeries";
1169
- Radiography: "schema:Radiography";
1170
- RandomizedTrial: "schema:RandomizedTrial";
1171
- Rating: "schema:Rating";
1172
- ReactAction: "schema:ReactAction";
1173
- ReadAction: "schema:ReadAction";
1174
- ReadPermission: "schema:ReadPermission";
1175
- RealEstateAgent: "schema:RealEstateAgent";
1176
- RealEstateListing: "schema:RealEstateListing";
1177
- RearWheelDriveConfiguration: "schema:RearWheelDriveConfiguration";
1178
- ReceiveAction: "schema:ReceiveAction";
1179
- Recipe: "schema:Recipe";
1180
- Recommendation: "schema:Recommendation";
1181
- RecommendedDoseSchedule: "schema:RecommendedDoseSchedule";
1182
- Recruiting: "schema:Recruiting";
1183
- RecyclingCenter: "schema:RecyclingCenter";
1184
- RefundTypeEnumeration: "schema:RefundTypeEnumeration";
1185
- RefurbishedCondition: "schema:RefurbishedCondition";
1186
- RegisterAction: "schema:RegisterAction";
1187
- Registry: "schema:Registry";
1188
- ReimbursementCap: "schema:ReimbursementCap";
1189
- RejectAction: "schema:RejectAction";
1190
- RelatedTopicsHealthAspect: "schema:RelatedTopicsHealthAspect";
1191
- RemixAlbum: "schema:RemixAlbum";
1192
- Renal: "schema:Renal";
1193
- RentAction: "schema:RentAction";
1194
- RentalCarReservation: "schema:RentalCarReservation";
1195
- RentalVehicleUsage: "schema:RentalVehicleUsage";
1196
- RepaymentSpecification: "schema:RepaymentSpecification";
1197
- ReplaceAction: "schema:ReplaceAction";
1198
- ReplyAction: "schema:ReplyAction";
1199
- Report: "schema:Report";
1200
- ReportageNewsArticle: "schema:ReportageNewsArticle";
1201
- ReportedDoseSchedule: "schema:ReportedDoseSchedule";
1202
- Researcher: "schema:Researcher";
1203
- Reservation: "schema:Reservation";
1204
- ReservationCancelled: "schema:ReservationCancelled";
1205
- ReservationConfirmed: "schema:ReservationConfirmed";
1206
- ReservationHold: "schema:ReservationHold";
1207
- ReservationPackage: "schema:ReservationPackage";
1208
- ReservationPending: "schema:ReservationPending";
1209
- ReservationStatusType: "schema:ReservationStatusType";
1210
- ReserveAction: "schema:ReserveAction";
1211
- Reservoir: "schema:Reservoir";
1212
- Residence: "schema:Residence";
1213
- Resort: "schema:Resort";
1214
- RespiratoryTherapy: "schema:RespiratoryTherapy";
1215
- RestockingFees: "schema:RestockingFees";
1216
- RestrictedDiet: "schema:RestrictedDiet";
1217
- ResultsAvailable: "schema:ResultsAvailable";
1218
- ResultsNotAvailable: "schema:ResultsNotAvailable";
1219
- ResumeAction: "schema:ResumeAction";
1220
- Retail: "schema:Retail";
1221
- ReturnAction: "schema:ReturnAction";
1222
- ReturnFeesEnumeration: "schema:ReturnFeesEnumeration";
1223
- ReturnShippingFees: "schema:ReturnShippingFees";
1224
- Review: "schema:Review";
1225
- ReviewAction: "schema:ReviewAction";
1226
- ReviewNewsArticle: "schema:ReviewNewsArticle";
1227
- Rheumatologic: "schema:Rheumatologic";
1228
- RightHandDriving: "schema:RightHandDriving";
1229
- RisksOrComplicationsHealthAspect: "schema:RisksOrComplicationsHealthAspect";
1230
- RiverBodyOfWater: "schema:RiverBodyOfWater";
1231
- Role: "schema:Role";
1232
- RoofingContractor: "schema:RoofingContractor";
1233
- Room: "schema:Room";
1234
- RsvpAction: "schema:RsvpAction";
1235
- RsvpResponseMaybe: "schema:RsvpResponseMaybe";
1236
- RsvpResponseNo: "schema:RsvpResponseNo";
1237
- RsvpResponseType: "schema:RsvpResponseType";
1238
- RsvpResponseYes: "schema:RsvpResponseYes";
1239
- SRP: "schema:SRP";
1240
- SafetyHealthAspect: "schema:SafetyHealthAspect";
1241
- SaleEvent: "schema:SaleEvent";
1242
- SalePrice: "schema:SalePrice";
1243
- SatireOrParodyContent: "schema:SatireOrParodyContent";
1244
- SatiricalArticle: "schema:SatiricalArticle";
1245
- Schedule: "schema:Schedule";
1246
- ScheduleAction: "schema:ScheduleAction";
1247
- ScholarlyArticle: "schema:ScholarlyArticle";
1248
- SchoolDistrict: "schema:SchoolDistrict";
1249
- ScreeningEvent: "schema:ScreeningEvent";
1250
- ScreeningHealthAspect: "schema:ScreeningHealthAspect";
1251
- SeaBodyOfWater: "schema:SeaBodyOfWater";
1252
- SearchAction: "schema:SearchAction";
1253
- SearchResultsPage: "schema:SearchResultsPage";
1254
- Season: "schema:Season";
1255
- Seat: "schema:Seat";
1256
- SeatingMap: "schema:SeatingMap";
1257
- SeeDoctorHealthAspect: "schema:SeeDoctorHealthAspect";
1258
- SeekToAction: "schema:SeekToAction";
1259
- SelfCareHealthAspect: "schema:SelfCareHealthAspect";
1260
- SelfStorage: "schema:SelfStorage";
1261
- SellAction: "schema:SellAction";
1262
- SendAction: "schema:SendAction";
1263
- Series: "schema:Series";
1264
- Service: "schema:Service";
1265
- ServiceChannel: "schema:ServiceChannel";
1266
- ShareAction: "schema:ShareAction";
1267
- SheetMusic: "schema:SheetMusic";
1268
- ShippingDeliveryTime: "schema:ShippingDeliveryTime";
1269
- ShippingRateSettings: "schema:ShippingRateSettings";
1270
- ShoeStore: "schema:ShoeStore";
1271
- ShoppingCenter: "schema:ShoppingCenter";
1272
- ShortStory: "schema:ShortStory";
1273
- SideEffectsHealthAspect: "schema:SideEffectsHealthAspect";
1274
- SingleBlindedTrial: "schema:SingleBlindedTrial";
1275
- SingleCenterTrial: "schema:SingleCenterTrial";
1276
- SingleFamilyResidence: "schema:SingleFamilyResidence";
1277
- SinglePlayer: "schema:SinglePlayer";
1278
- SingleRelease: "schema:SingleRelease";
1279
- SiteNavigationElement: "schema:SiteNavigationElement";
1280
- SizeGroupEnumeration: "schema:SizeGroupEnumeration";
1281
- SizeSpecification: "schema:SizeSpecification";
1282
- SizeSystemEnumeration: "schema:SizeSystemEnumeration";
1283
- SizeSystemImperial: "schema:SizeSystemImperial";
1284
- SizeSystemMetric: "schema:SizeSystemMetric";
1285
- Skin: "schema:Skin";
1286
- SocialEvent: "schema:SocialEvent";
1287
- SocialMediaPosting: "schema:SocialMediaPosting";
1288
- SoftwareApplication: "schema:SoftwareApplication";
1289
- SoftwareSourceCode: "schema:SoftwareSourceCode";
1290
- SoldOut: "schema:SoldOut";
1291
- SolveMathAction: "schema:SolveMathAction";
1292
- SomeProducts: "schema:SomeProducts";
1293
- SoundtrackAlbum: "schema:SoundtrackAlbum";
1294
- SpeakableSpecification: "schema:SpeakableSpecification";
1295
- SpecialAnnouncement: "schema:SpecialAnnouncement";
1296
- Specialty: "schema:Specialty";
1297
- SpeechPathology: "schema:SpeechPathology";
1298
- SpokenWordAlbum: "schema:SpokenWordAlbum";
1299
- SportingGoodsStore: "schema:SportingGoodsStore";
1300
- SportsActivityLocation: "schema:SportsActivityLocation";
1301
- SportsOrganization: "schema:SportsOrganization";
1302
- SpreadsheetDigitalDocument: "schema:SpreadsheetDigitalDocument";
1303
- StadiumOrArena: "schema:StadiumOrArena";
1304
- StagedContent: "schema:StagedContent";
1305
- StagesHealthAspect: "schema:StagesHealthAspect";
1306
- StatisticalPopulation: "schema:StatisticalPopulation";
1307
- StatusEnumeration: "schema:StatusEnumeration";
1308
- SteeringPositionValue: "schema:SteeringPositionValue";
1309
- Store: "schema:Store";
1310
- StoreCreditRefund: "schema:StoreCreditRefund";
1311
- StrengthTraining: "schema:StrengthTraining";
1312
- StructuredValue: "schema:StructuredValue";
1313
- StudioAlbum: "schema:StudioAlbum";
1314
- SubscribeAction: "schema:SubscribeAction";
1315
- Subscription: "schema:Subscription";
1316
- Substance: "schema:Substance";
1317
- SubwayStation: "schema:SubwayStation";
1318
- Suite: "schema:Suite";
1319
- SuperficialAnatomy: "schema:SuperficialAnatomy";
1320
- Surgical: "schema:Surgical";
1321
- SurgicalProcedure: "schema:SurgicalProcedure";
1322
- SuspendAction: "schema:SuspendAction";
1323
- Suspended: "schema:Suspended";
1324
- SymptomsHealthAspect: "schema:SymptomsHealthAspect";
1325
- TVClip: "schema:TVClip";
1326
- TVEpisode: "schema:TVEpisode";
1327
- TVSeason: "schema:TVSeason";
1328
- TVSeries: "schema:TVSeries";
1329
- Table: "schema:Table";
1330
- TakeAction: "schema:TakeAction";
1331
- TattooParlor: "schema:TattooParlor";
1332
- Taxi: "schema:Taxi";
1333
- TaxiReservation: "schema:TaxiReservation";
1334
- TaxiService: "schema:TaxiService";
1335
- TaxiStand: "schema:TaxiStand";
1336
- TaxiVehicleUsage: "schema:TaxiVehicleUsage";
1337
- TechArticle: "schema:TechArticle";
1338
- TelevisionChannel: "schema:TelevisionChannel";
1339
- TennisComplex: "schema:TennisComplex";
1340
- Terminated: "schema:Terminated";
1341
- Text: "schema:Text";
1342
- TextDigitalDocument: "schema:TextDigitalDocument";
1343
- TheaterEvent: "schema:TheaterEvent";
1344
- TheaterGroup: "schema:TheaterGroup";
1345
- Therapeutic: "schema:Therapeutic";
1346
- TherapeuticProcedure: "schema:TherapeuticProcedure";
1347
- Thesis: "schema:Thesis";
1348
- Thing: "schema:Thing";
1349
- Throat: "schema:Throat";
1350
- Ticket: "schema:Ticket";
1351
- TieAction: "schema:TieAction";
1352
- Time: "schema:Time";
1353
- TipAction: "schema:TipAction";
1354
- TireShop: "schema:TireShop";
1355
- TollFree: "schema:TollFree";
1356
- TouristAttraction: "schema:TouristAttraction";
1357
- TouristDestination: "schema:TouristDestination";
1358
- TouristInformationCenter: "schema:TouristInformationCenter";
1359
- TouristTrip: "schema:TouristTrip";
1360
- Toxicologic: "schema:Toxicologic";
1361
- ToyStore: "schema:ToyStore";
1362
- TrackAction: "schema:TrackAction";
1363
- TradeAction: "schema:TradeAction";
1364
- TraditionalChinese: "schema:TraditionalChinese";
1365
- TrainReservation: "schema:TrainReservation";
1366
- TrainStation: "schema:TrainStation";
1367
- TrainTrip: "schema:TrainTrip";
1368
- TransferAction: "schema:TransferAction";
1369
- TransformedContent: "schema:TransformedContent";
1370
- TransitMap: "schema:TransitMap";
1371
- TravelAction: "schema:TravelAction";
1372
- TravelAgency: "schema:TravelAgency";
1373
- TreatmentIndication: "schema:TreatmentIndication";
1374
- TreatmentsHealthAspect: "schema:TreatmentsHealthAspect";
1375
- Trip: "schema:Trip";
1376
- TripleBlindedTrial: "schema:TripleBlindedTrial";
1377
- True: "schema:True";
1378
- TypesHealthAspect: "schema:TypesHealthAspect";
1379
- UKNonprofitType: "schema:UKNonprofitType";
1380
- UKTrust: "schema:UKTrust";
1381
- URL: "schema:URL";
1382
- USNonprofitType: "schema:USNonprofitType";
1383
- Ultrasound: "schema:Ultrasound";
1384
- UnRegisterAction: "schema:UnRegisterAction";
1385
- UnemploymentSupport: "schema:UnemploymentSupport";
1386
- UnincorporatedAssociationCharity: "schema:UnincorporatedAssociationCharity";
1387
- UnofficialLegalValue: "schema:UnofficialLegalValue";
1388
- UpdateAction: "schema:UpdateAction";
1389
- Urologic: "schema:Urologic";
1390
- UsageOrScheduleHealthAspect: "schema:UsageOrScheduleHealthAspect";
1391
- UseAction: "schema:UseAction";
1392
- UsedCondition: "schema:UsedCondition";
1393
- UserBlocks: "schema:UserBlocks";
1394
- UserCheckins: "schema:UserCheckins";
1395
- UserComments: "schema:UserComments";
1396
- UserDownloads: "schema:UserDownloads";
1397
- UserInteraction: "schema:UserInteraction";
1398
- UserLikes: "schema:UserLikes";
1399
- UserPageVisits: "schema:UserPageVisits";
1400
- UserPlays: "schema:UserPlays";
1401
- UserPlusOnes: "schema:UserPlusOnes";
1402
- UserReview: "schema:UserReview";
1403
- UserTweets: "schema:UserTweets";
1404
- VeganDiet: "schema:VeganDiet";
1405
- VegetarianDiet: "schema:VegetarianDiet";
1406
- Vehicle: "schema:Vehicle";
1407
- VenueMap: "schema:VenueMap";
1408
- Vessel: "schema:Vessel";
1409
- VeterinaryCare: "schema:VeterinaryCare";
1410
- VideoGallery: "schema:VideoGallery";
1411
- VideoGameClip: "schema:VideoGameClip";
1412
- VideoGameSeries: "schema:VideoGameSeries";
1413
- VideoObject: "schema:VideoObject";
1414
- ViewAction: "schema:ViewAction";
1415
- VinylFormat: "schema:VinylFormat";
1416
- VirtualLocation: "schema:VirtualLocation";
1417
- Virus: "schema:Virus";
1418
- VisualArtsEvent: "schema:VisualArtsEvent";
1419
- VisualArtwork: "schema:VisualArtwork";
1420
- VitalSign: "schema:VitalSign";
1421
- VoteAction: "schema:VoteAction";
1422
- WPAdBlock: "schema:WPAdBlock";
1423
- WPFooter: "schema:WPFooter";
1424
- WPHeader: "schema:WPHeader";
1425
- WPSideBar: "schema:WPSideBar";
1426
- WantAction: "schema:WantAction";
1427
- WatchAction: "schema:WatchAction";
1428
- Waterfall: "schema:Waterfall";
1429
- WearAction: "schema:WearAction";
1430
- WearableMeasurementBack: "schema:WearableMeasurementBack";
1431
- WearableMeasurementChestOrBust: "schema:WearableMeasurementChestOrBust";
1432
- WearableMeasurementCollar: "schema:WearableMeasurementCollar";
1433
- WearableMeasurementCup: "schema:WearableMeasurementCup";
1434
- WearableMeasurementHeight: "schema:WearableMeasurementHeight";
1435
- WearableMeasurementHips: "schema:WearableMeasurementHips";
1436
- WearableMeasurementInseam: "schema:WearableMeasurementInseam";
1437
- WearableMeasurementLength: "schema:WearableMeasurementLength";
1438
- WearableMeasurementOutsideLeg: "schema:WearableMeasurementOutsideLeg";
1439
- WearableMeasurementSleeve: "schema:WearableMeasurementSleeve";
1440
- WearableMeasurementTypeEnumeration: "schema:WearableMeasurementTypeEnumeration";
1441
- WearableMeasurementWaist: "schema:WearableMeasurementWaist";
1442
- WearableMeasurementWidth: "schema:WearableMeasurementWidth";
1443
- WearableSizeGroupBig: "schema:WearableSizeGroupBig";
1444
- WearableSizeGroupBoys: "schema:WearableSizeGroupBoys";
1445
- WearableSizeGroupEnumeration: "schema:WearableSizeGroupEnumeration";
1446
- WearableSizeGroupExtraShort: "schema:WearableSizeGroupExtraShort";
1447
- WearableSizeGroupExtraTall: "schema:WearableSizeGroupExtraTall";
1448
- WearableSizeGroupGirls: "schema:WearableSizeGroupGirls";
1449
- WearableSizeGroupHusky: "schema:WearableSizeGroupHusky";
1450
- WearableSizeGroupInfants: "schema:WearableSizeGroupInfants";
1451
- WearableSizeGroupJuniors: "schema:WearableSizeGroupJuniors";
1452
- WearableSizeGroupMaternity: "schema:WearableSizeGroupMaternity";
1453
- WearableSizeGroupMens: "schema:WearableSizeGroupMens";
1454
- WearableSizeGroupMisses: "schema:WearableSizeGroupMisses";
1455
- WearableSizeGroupPetite: "schema:WearableSizeGroupPetite";
1456
- WearableSizeGroupPlus: "schema:WearableSizeGroupPlus";
1457
- WearableSizeGroupRegular: "schema:WearableSizeGroupRegular";
1458
- WearableSizeGroupShort: "schema:WearableSizeGroupShort";
1459
- WearableSizeGroupTall: "schema:WearableSizeGroupTall";
1460
- WearableSizeGroupWomens: "schema:WearableSizeGroupWomens";
1461
- WearableSizeSystemAU: "schema:WearableSizeSystemAU";
1462
- WearableSizeSystemBR: "schema:WearableSizeSystemBR";
1463
- WearableSizeSystemCN: "schema:WearableSizeSystemCN";
1464
- WearableSizeSystemContinental: "schema:WearableSizeSystemContinental";
1465
- WearableSizeSystemDE: "schema:WearableSizeSystemDE";
1466
- WearableSizeSystemEN13402: "schema:WearableSizeSystemEN13402";
1467
- WearableSizeSystemEnumeration: "schema:WearableSizeSystemEnumeration";
1468
- WearableSizeSystemEurope: "schema:WearableSizeSystemEurope";
1469
- WearableSizeSystemFR: "schema:WearableSizeSystemFR";
1470
- WearableSizeSystemGS1: "schema:WearableSizeSystemGS1";
1471
- WearableSizeSystemIT: "schema:WearableSizeSystemIT";
1472
- WearableSizeSystemJP: "schema:WearableSizeSystemJP";
1473
- WearableSizeSystemMX: "schema:WearableSizeSystemMX";
1474
- WearableSizeSystemUK: "schema:WearableSizeSystemUK";
1475
- WearableSizeSystemUS: "schema:WearableSizeSystemUS";
1476
- WebAPI: "schema:WebAPI";
1477
- WebApplication: "schema:WebApplication";
1478
- WebContent: "schema:WebContent";
1479
- WebPage: "schema:WebPage";
1480
- WebPageElement: "schema:WebPageElement";
1481
- WebSite: "schema:WebSite";
1482
- WesternConventional: "schema:WesternConventional";
1483
- Wholesale: "schema:Wholesale";
1484
- WholesaleStore: "schema:WholesaleStore";
1485
- WinAction: "schema:WinAction";
1486
- Withdrawn: "schema:Withdrawn";
1487
- WorkBasedProgram: "schema:WorkBasedProgram";
1488
- WorkersUnion: "schema:WorkersUnion";
1489
- WriteAction: "schema:WriteAction";
1490
- WritePermission: "schema:WritePermission";
1491
- XPathType: "schema:XPathType";
1492
- XRay: "schema:XRay";
1493
- ZoneBoardingPolicy: "schema:ZoneBoardingPolicy";
1494
- about: "schema:about";
1495
- abridged: "schema:abridged";
1496
- accelerationTime: "schema:accelerationTime";
1497
- acceptedAnswer: "schema:acceptedAnswer";
1498
- acceptedOffer: "schema:acceptedOffer";
1499
- acceptedPaymentMethod: "schema:acceptedPaymentMethod";
1500
- acceptsReservations: "schema:acceptsReservations";
1501
- accessCode: "schema:accessCode";
1502
- accessMode: "schema:accessMode";
1503
- accessModeSufficient: "schema:accessModeSufficient";
1504
- accessibilityAPI: "schema:accessibilityAPI";
1505
- accessibilityControl: "schema:accessibilityControl";
1506
- accessibilityFeature: "schema:accessibilityFeature";
1507
- accessibilityHazard: "schema:accessibilityHazard";
1508
- accessibilitySummary: "schema:accessibilitySummary";
1509
- accommodationCategory: "schema:accommodationCategory";
1510
- accommodationFloorPlan: "schema:accommodationFloorPlan";
1511
- accountId: "schema:accountId";
1512
- accountMinimumInflow: "schema:accountMinimumInflow";
1513
- accountOverdraftLimit: "schema:accountOverdraftLimit";
1514
- accountablePerson: "schema:accountablePerson";
1515
- acquireLicensePage: "schema:acquireLicensePage";
1516
- acquiredFrom: "schema:acquiredFrom";
1517
- acrissCode: "schema:acrissCode";
1518
- actionAccessibilityRequirement: "schema:actionAccessibilityRequirement";
1519
- actionApplication: "schema:actionApplication";
1520
- actionOption: "schema:actionOption";
1521
- actionPlatform: "schema:actionPlatform";
1522
- actionStatus: "schema:actionStatus";
1523
- actionableFeedbackPolicy: "schema:actionableFeedbackPolicy";
1524
- activeIngredient: "schema:activeIngredient";
1525
- activityDuration: "schema:activityDuration";
1526
- activityFrequency: "schema:activityFrequency";
1527
- actor: "schema:actor";
1528
- actors: "schema:actors";
1529
- additionalName: "schema:additionalName";
1530
- additionalNumberOfGuests: "schema:additionalNumberOfGuests";
1531
- additionalProperty: "schema:additionalProperty";
1532
- additionalType: "schema:additionalType";
1533
- additionalVariable: "schema:additionalVariable";
1534
- addressCountry: "schema:addressCountry";
1535
- addressLocality: "schema:addressLocality";
1536
- addressRegion: "schema:addressRegion";
1537
- administrationRoute: "schema:administrationRoute";
1538
- adverseOutcome: "schema:adverseOutcome";
1539
- affectedBy: "schema:affectedBy";
1540
- afterMedia: "schema:afterMedia";
1541
- agent: "schema:agent";
1542
- aggregateRating: "schema:aggregateRating";
1543
- aircraft: "schema:aircraft";
1544
- albumProductionType: "schema:albumProductionType";
1545
- albumRelease: "schema:albumRelease";
1546
- albumReleaseType: "schema:albumReleaseType";
1547
- albums: "schema:albums";
1548
- alcoholWarning: "schema:alcoholWarning";
1549
- algorithm: "schema:algorithm";
1550
- alignmentType: "schema:alignmentType";
1551
- alternateName: "schema:alternateName";
1552
- alternativeHeadline: "schema:alternativeHeadline";
1553
- alumniOf: "schema:alumniOf";
1554
- amenityFeature: "schema:amenityFeature";
1555
- amount: "schema:amount";
1556
- announcementLocation: "schema:announcementLocation";
1557
- annualPercentageRate: "schema:annualPercentageRate";
1558
- answerCount: "schema:answerCount";
1559
- answerExplanation: "schema:answerExplanation";
1560
- antagonist: "schema:antagonist";
1561
- applicableLocation: "schema:applicableLocation";
1562
- applicantLocationRequirements: "schema:applicantLocationRequirements";
1563
- application: "schema:application";
1564
- applicationCategory: "schema:applicationCategory";
1565
- applicationContact: "schema:applicationContact";
1566
- applicationDeadline: "schema:applicationDeadline";
1567
- applicationStartDate: "schema:applicationStartDate";
1568
- applicationSubCategory: "schema:applicationSubCategory";
1569
- applicationSuite: "schema:applicationSuite";
1570
- archiveHeld: "schema:archiveHeld";
1571
- areaServed: "schema:areaServed";
1572
- arrivalAirport: "schema:arrivalAirport";
1573
- arrivalBoatTerminal: "schema:arrivalBoatTerminal";
1574
- arrivalBusStop: "schema:arrivalBusStop";
1575
- arrivalGate: "schema:arrivalGate";
1576
- arrivalPlatform: "schema:arrivalPlatform";
1577
- arrivalStation: "schema:arrivalStation";
1578
- arrivalTerminal: "schema:arrivalTerminal";
1579
- arrivalTime: "schema:arrivalTime";
1580
- artEdition: "schema:artEdition";
1581
- artMedium: "schema:artMedium";
1582
- arterialBranch: "schema:arterialBranch";
1583
- artform: "schema:artform";
1584
- articleBody: "schema:articleBody";
1585
- articleSection: "schema:articleSection";
1586
- artworkSurface: "schema:artworkSurface";
1587
- aspect: "schema:aspect";
1588
- assemblyVersion: "schema:assemblyVersion";
1589
- assesses: "schema:assesses";
1590
- associatedAnatomy: "schema:associatedAnatomy";
1591
- associatedArticle: "schema:associatedArticle";
1592
- associatedMedia: "schema:associatedMedia";
1593
- associatedPathophysiology: "schema:associatedPathophysiology";
1594
- athlete: "schema:athlete";
1595
- attendee: "schema:attendee";
1596
- attendees: "schema:attendees";
1597
- audienceType: "schema:audienceType";
1598
- audio: "schema:audio";
1599
- authenticator: "schema:authenticator";
1600
- availability: "schema:availability";
1601
- availableChannel: "schema:availableChannel";
1602
- availableDeliveryMethod: "schema:availableDeliveryMethod";
1603
- availableFrom: "schema:availableFrom";
1604
- availableIn: "schema:availableIn";
1605
- availableLanguage: "schema:availableLanguage";
1606
- availableOnDevice: "schema:availableOnDevice";
1607
- availableService: "schema:availableService";
1608
- availableStrength: "schema:availableStrength";
1609
- availableTest: "schema:availableTest";
1610
- availableThrough: "schema:availableThrough";
1611
- awards: "schema:awards";
1612
- awayTeam: "schema:awayTeam";
1613
- backstory: "schema:backstory";
1614
- bankAccountType: "schema:bankAccountType";
1615
- baseSalary: "schema:baseSalary";
1616
- bccRecipient: "schema:bccRecipient";
1617
- bed: "schema:bed";
1618
- beforeMedia: "schema:beforeMedia";
1619
- beneficiaryBank: "schema:beneficiaryBank";
1620
- benefits: "schema:benefits";
1621
- benefitsSummaryUrl: "schema:benefitsSummaryUrl";
1622
- bestRating: "schema:bestRating";
1623
- billingAddress: "schema:billingAddress";
1624
- billingDuration: "schema:billingDuration";
1625
- billingPeriod: "schema:billingPeriod";
1626
- billingStart: "schema:billingStart";
1627
- biomechnicalClass: "schema:biomechnicalClass";
1628
- bitrate: "schema:bitrate";
1629
- blogPost: "schema:blogPost";
1630
- blogPosts: "schema:blogPosts";
1631
- bloodSupply: "schema:bloodSupply";
1632
- boardingGroup: "schema:boardingGroup";
1633
- boardingPolicy: "schema:boardingPolicy";
1634
- bodyLocation: "schema:bodyLocation";
1635
- bodyType: "schema:bodyType";
1636
- bookEdition: "schema:bookEdition";
1637
- bookFormat: "schema:bookFormat";
1638
- bookingAgent: "schema:bookingAgent";
1639
- bookingTime: "schema:bookingTime";
1640
- borrower: "schema:borrower";
1641
- box: "schema:box";
1642
- branch: "schema:branch";
1643
- branchCode: "schema:branchCode";
1644
- branchOf: "schema:branchOf";
1645
- breadcrumb: "schema:breadcrumb";
1646
- breastfeedingWarning: "schema:breastfeedingWarning";
1647
- broadcastAffiliateOf: "schema:broadcastAffiliateOf";
1648
- broadcastChannelId: "schema:broadcastChannelId";
1649
- broadcastDisplayName: "schema:broadcastDisplayName";
1650
- broadcastFrequency: "schema:broadcastFrequency";
1651
- broadcastFrequencyValue: "schema:broadcastFrequencyValue";
1652
- broadcastOfEvent: "schema:broadcastOfEvent";
1653
- broadcastServiceTier: "schema:broadcastServiceTier";
1654
- broadcastSignalModulation: "schema:broadcastSignalModulation";
1655
- broadcastSubChannel: "schema:broadcastSubChannel";
1656
- broadcastTimezone: "schema:broadcastTimezone";
1657
- broadcaster: "schema:broadcaster";
1658
- broker: "schema:broker";
1659
- browserRequirements: "schema:browserRequirements";
1660
- busName: "schema:busName";
1661
- busNumber: "schema:busNumber";
1662
- businessDays: "schema:businessDays";
1663
- businessFunction: "schema:businessFunction";
1664
- buyer: "schema:buyer";
1665
- byArtist: "schema:byArtist";
1666
- byDay: "schema:byDay";
1667
- byMonth: "schema:byMonth";
1668
- byMonthDay: "schema:byMonthDay";
1669
- byMonthWeek: "schema:byMonthWeek";
1670
- calories: "schema:calories";
1671
- candidate: "schema:candidate";
1672
- caption: "schema:caption";
1673
- carbohydrateContent: "schema:carbohydrateContent";
1674
- cargoVolume: "schema:cargoVolume";
1675
- carrier: "schema:carrier";
1676
- carrierRequirements: "schema:carrierRequirements";
1677
- cashBack: "schema:cashBack";
1678
- catalog: "schema:catalog";
1679
- catalogNumber: "schema:catalogNumber";
1680
- causeOf: "schema:causeOf";
1681
- ccRecipient: "schema:ccRecipient";
1682
- character: "schema:character";
1683
- characterAttribute: "schema:characterAttribute";
1684
- characterName: "schema:characterName";
1685
- cheatCode: "schema:cheatCode";
1686
- checkinTime: "schema:checkinTime";
1687
- checkoutTime: "schema:checkoutTime";
1688
- childMaxAge: "schema:childMaxAge";
1689
- childMinAge: "schema:childMinAge";
1690
- children: "schema:children";
1691
- cholesterolContent: "schema:cholesterolContent";
1692
- citation: "schema:citation";
1693
- claimReviewed: "schema:claimReviewed";
1694
- clincalPharmacology: "schema:clincalPharmacology";
1695
- clinicalPharmacology: "schema:clinicalPharmacology";
1696
- clipNumber: "schema:clipNumber";
1697
- codeRepository: "schema:codeRepository";
1698
- codeSampleType: "schema:codeSampleType";
1699
- codeValue: "schema:codeValue";
1700
- codingSystem: "schema:codingSystem";
1701
- colleagues: "schema:colleagues";
1702
- colorist: "schema:colorist";
1703
- commentCount: "schema:commentCount";
1704
- commentText: "schema:commentText";
1705
- commentTime: "schema:commentTime";
1706
- competencyRequired: "schema:competencyRequired";
1707
- competitor: "schema:competitor";
1708
- comprisedOf: "schema:comprisedOf";
1709
- conditionsOfAccess: "schema:conditionsOfAccess";
1710
- confirmationNumber: "schema:confirmationNumber";
1711
- connectedTo: "schema:connectedTo";
1712
- constrainingProperty: "schema:constrainingProperty";
1713
- contactOption: "schema:contactOption";
1714
- contactPoint: "schema:contactPoint";
1715
- contactPoints: "schema:contactPoints";
1716
- contactType: "schema:contactType";
1717
- contactlessPayment: "schema:contactlessPayment";
1718
- containedIn: "schema:containedIn";
1719
- containedInPlace: "schema:containedInPlace";
1720
- containsPlace: "schema:containsPlace";
1721
- containsSeason: "schema:containsSeason";
1722
- contentLocation: "schema:contentLocation";
1723
- contentRating: "schema:contentRating";
1724
- contentReferenceTime: "schema:contentReferenceTime";
1725
- contentSize: "schema:contentSize";
1726
- contentType: "schema:contentType";
1727
- contentUrl: "schema:contentUrl";
1728
- contraindication: "schema:contraindication";
1729
- cookTime: "schema:cookTime";
1730
- cookingMethod: "schema:cookingMethod";
1731
- copyrightHolder: "schema:copyrightHolder";
1732
- copyrightNotice: "schema:copyrightNotice";
1733
- copyrightYear: "schema:copyrightYear";
1734
- correction: "schema:correction";
1735
- correctionsPolicy: "schema:correctionsPolicy";
1736
- costCategory: "schema:costCategory";
1737
- costCurrency: "schema:costCurrency";
1738
- costOrigin: "schema:costOrigin";
1739
- costPerUnit: "schema:costPerUnit";
1740
- countriesNotSupported: "schema:countriesNotSupported";
1741
- countriesSupported: "schema:countriesSupported";
1742
- countryOfOrigin: "schema:countryOfOrigin";
1743
- courseCode: "schema:courseCode";
1744
- courseMode: "schema:courseMode";
1745
- coursePrerequisites: "schema:coursePrerequisites";
1746
- courseWorkload: "schema:courseWorkload";
1747
- coverageEndTime: "schema:coverageEndTime";
1748
- coverageStartTime: "schema:coverageStartTime";
1749
- creativeWorkStatus: "schema:creativeWorkStatus";
1750
- credentialCategory: "schema:credentialCategory";
1751
- creditText: "schema:creditText";
1752
- creditedTo: "schema:creditedTo";
1753
- cssSelector: "schema:cssSelector";
1754
- currenciesAccepted: "schema:currenciesAccepted";
1755
- currentExchangeRate: "schema:currentExchangeRate";
1756
- customer: "schema:customer";
1757
- cutoffTime: "schema:cutoffTime";
1758
- cvdCollectionDate: "schema:cvdCollectionDate";
1759
- cvdFacilityCounty: "schema:cvdFacilityCounty";
1760
- cvdFacilityId: "schema:cvdFacilityId";
1761
- cvdNumBeds: "schema:cvdNumBeds";
1762
- cvdNumBedsOcc: "schema:cvdNumBedsOcc";
1763
- cvdNumC19Died: "schema:cvdNumC19Died";
1764
- cvdNumC19HOPats: "schema:cvdNumC19HOPats";
1765
- cvdNumC19HospPats: "schema:cvdNumC19HospPats";
1766
- cvdNumC19MechVentPats: "schema:cvdNumC19MechVentPats";
1767
- cvdNumC19OFMechVentPats: "schema:cvdNumC19OFMechVentPats";
1768
- cvdNumC19OverflowPats: "schema:cvdNumC19OverflowPats";
1769
- cvdNumICUBeds: "schema:cvdNumICUBeds";
1770
- cvdNumICUBedsOcc: "schema:cvdNumICUBedsOcc";
1771
- cvdNumTotBeds: "schema:cvdNumTotBeds";
1772
- cvdNumVent: "schema:cvdNumVent";
1773
- cvdNumVentUse: "schema:cvdNumVentUse";
1774
- dataFeedElement: "schema:dataFeedElement";
1775
- dataset: "schema:dataset";
1776
- datasetTimeInterval: "schema:datasetTimeInterval";
1777
- dateCreated: "schema:dateCreated";
1778
- dateDeleted: "schema:dateDeleted";
1779
- dateIssued: "schema:dateIssued";
1780
- dateModified: "schema:dateModified";
1781
- datePosted: "schema:datePosted";
1782
- datePublished: "schema:datePublished";
1783
- dateRead: "schema:dateRead";
1784
- dateReceived: "schema:dateReceived";
1785
- dateSent: "schema:dateSent";
1786
- dateVehicleFirstRegistered: "schema:dateVehicleFirstRegistered";
1787
- dateline: "schema:dateline";
1788
- dayOfWeek: "schema:dayOfWeek";
1789
- defaultValue: "schema:defaultValue";
1790
- deliveryAddress: "schema:deliveryAddress";
1791
- deliveryMethod: "schema:deliveryMethod";
1792
- deliveryStatus: "schema:deliveryStatus";
1793
- deliveryTime: "schema:deliveryTime";
1794
- departureAirport: "schema:departureAirport";
1795
- departureBoatTerminal: "schema:departureBoatTerminal";
1796
- departureBusStop: "schema:departureBusStop";
1797
- departureGate: "schema:departureGate";
1798
- departurePlatform: "schema:departurePlatform";
1799
- departureStation: "schema:departureStation";
1800
- departureTerminal: "schema:departureTerminal";
1801
- departureTime: "schema:departureTime";
1802
- dependencies: "schema:dependencies";
1803
- device: "schema:device";
1804
- diagnosis: "schema:diagnosis";
1805
- diagram: "schema:diagram";
1806
- diet: "schema:diet";
1807
- dietFeatures: "schema:dietFeatures";
1808
- directors: "schema:directors";
1809
- disambiguatingDescription: "schema:disambiguatingDescription";
1810
- discount: "schema:discount";
1811
- discountCode: "schema:discountCode";
1812
- discountCurrency: "schema:discountCurrency";
1813
- discusses: "schema:discusses";
1814
- discussionUrl: "schema:discussionUrl";
1815
- diseasePreventionInfo: "schema:diseasePreventionInfo";
1816
- diseaseSpreadStatistics: "schema:diseaseSpreadStatistics";
1817
- distinguishingSign: "schema:distinguishingSign";
1818
- distribution: "schema:distribution";
1819
- diversityPolicy: "schema:diversityPolicy";
1820
- diversityStaffingReport: "schema:diversityStaffingReport";
1821
- documentation: "schema:documentation";
1822
- doesNotShip: "schema:doesNotShip";
1823
- domainIncludes: "schema:domainIncludes";
1824
- domiciledMortgage: "schema:domiciledMortgage";
1825
- doorTime: "schema:doorTime";
1826
- dosageForm: "schema:dosageForm";
1827
- doseSchedule: "schema:doseSchedule";
1828
- doseUnit: "schema:doseUnit";
1829
- doseValue: "schema:doseValue";
1830
- downPayment: "schema:downPayment";
1831
- downloadUrl: "schema:downloadUrl";
1832
- downvoteCount: "schema:downvoteCount";
1833
- driveWheelConfiguration: "schema:driveWheelConfiguration";
1834
- dropoffLocation: "schema:dropoffLocation";
1835
- dropoffTime: "schema:dropoffTime";
1836
- drugClass: "schema:drugClass";
1837
- drugUnit: "schema:drugUnit";
1838
- duns: "schema:duns";
1839
- duplicateTherapy: "schema:duplicateTherapy";
1840
- durationOfWarranty: "schema:durationOfWarranty";
1841
- duringMedia: "schema:duringMedia";
1842
- earlyPrepaymentPenalty: "schema:earlyPrepaymentPenalty";
1843
- editEIDR: "schema:editEIDR";
1844
- eduQuestionType: "schema:eduQuestionType";
1845
- educationRequirements: "schema:educationRequirements";
1846
- educationalAlignment: "schema:educationalAlignment";
1847
- educationalCredentialAwarded: "schema:educationalCredentialAwarded";
1848
- educationalFramework: "schema:educationalFramework";
1849
- educationalLevel: "schema:educationalLevel";
1850
- educationalProgramMode: "schema:educationalProgramMode";
1851
- educationalRole: "schema:educationalRole";
1852
- educationalUse: "schema:educationalUse";
1853
- eligibilityToWorkRequirement: "schema:eligibilityToWorkRequirement";
1854
- eligibleCustomerType: "schema:eligibleCustomerType";
1855
- eligibleQuantity: "schema:eligibleQuantity";
1856
- eligibleRegion: "schema:eligibleRegion";
1857
- email: "schema:email";
1858
- embedUrl: "schema:embedUrl";
1859
- emissionsCO2: "schema:emissionsCO2";
1860
- employee: "schema:employee";
1861
- employees: "schema:employees";
1862
- employerOverview: "schema:employerOverview";
1863
- employmentType: "schema:employmentType";
1864
- employmentUnit: "schema:employmentUnit";
1865
- encodesCreativeWork: "schema:encodesCreativeWork";
1866
- encoding: "schema:encoding";
1867
- encodingFormat: "schema:encodingFormat";
1868
- encodingType: "schema:encodingType";
1869
- encodings: "schema:encodings";
1870
- endOffset: "schema:endOffset";
1871
- endTime: "schema:endTime";
1872
- endorsee: "schema:endorsee";
1873
- endorsers: "schema:endorsers";
1874
- energyEfficiencyScaleMax: "schema:energyEfficiencyScaleMax";
1875
- energyEfficiencyScaleMin: "schema:energyEfficiencyScaleMin";
1876
- engineDisplacement: "schema:engineDisplacement";
1877
- entertainmentBusiness: "schema:entertainmentBusiness";
1878
- epidemiology: "schema:epidemiology";
1879
- episodes: "schema:episodes";
1880
- error: "schema:error";
1881
- estimatedCost: "schema:estimatedCost";
1882
- estimatedFlightDuration: "schema:estimatedFlightDuration";
1883
- estimatedSalary: "schema:estimatedSalary";
1884
- estimatesRiskOf: "schema:estimatesRiskOf";
1885
- ethicsPolicy: "schema:ethicsPolicy";
1886
- eventAttendanceMode: "schema:eventAttendanceMode";
1887
- eventSchedule: "schema:eventSchedule";
1888
- eventStatus: "schema:eventStatus";
1889
- events: "schema:events";
1890
- evidenceLevel: "schema:evidenceLevel";
1891
- evidenceOrigin: "schema:evidenceOrigin";
1892
- exampleOfWork: "schema:exampleOfWork";
1893
- exceptDate: "schema:exceptDate";
1894
- exchangeRateSpread: "schema:exchangeRateSpread";
1895
- executableLibraryName: "schema:executableLibraryName";
1896
- exerciseCourse: "schema:exerciseCourse";
1897
- exercisePlan: "schema:exercisePlan";
1898
- exerciseRelatedDiet: "schema:exerciseRelatedDiet";
1899
- exerciseType: "schema:exerciseType";
1900
- exifData: "schema:exifData";
1901
- expectedArrivalFrom: "schema:expectedArrivalFrom";
1902
- expectedArrivalUntil: "schema:expectedArrivalUntil";
1903
- expectedPrognosis: "schema:expectedPrognosis";
1904
- expectsAcceptanceOf: "schema:expectsAcceptanceOf";
1905
- experienceInPlaceOfEducation: "schema:experienceInPlaceOfEducation";
1906
- experienceRequirements: "schema:experienceRequirements";
1907
- expertConsiderations: "schema:expertConsiderations";
1908
- expires: "schema:expires";
1909
- familyName: "schema:familyName";
1910
- fatContent: "schema:fatContent";
1911
- faxNumber: "schema:faxNumber";
1912
- featureList: "schema:featureList";
1913
- feesAndCommissionsSpecification: "schema:feesAndCommissionsSpecification";
1914
- fiberContent: "schema:fiberContent";
1915
- fileFormat: "schema:fileFormat";
1916
- financialAidEligible: "schema:financialAidEligible";
1917
- firstPerformance: "schema:firstPerformance";
1918
- flightDistance: "schema:flightDistance";
1919
- flightNumber: "schema:flightNumber";
1920
- floorLevel: "schema:floorLevel";
1921
- floorLimit: "schema:floorLimit";
1922
- floorSize: "schema:floorSize";
1923
- followee: "schema:followee";
1924
- followup: "schema:followup";
1925
- foodEstablishment: "schema:foodEstablishment";
1926
- foodEvent: "schema:foodEvent";
1927
- foodWarning: "schema:foodWarning";
1928
- founders: "schema:founders";
1929
- foundingLocation: "schema:foundingLocation";
1930
- freeShippingThreshold: "schema:freeShippingThreshold";
1931
- fromLocation: "schema:fromLocation";
1932
- fuelEfficiency: "schema:fuelEfficiency";
1933
- functionalClass: "schema:functionalClass";
1934
- fundedItem: "schema:fundedItem";
1935
- funder: "schema:funder";
1936
- game: "schema:game";
1937
- gameItem: "schema:gameItem";
1938
- gameLocation: "schema:gameLocation";
1939
- gamePlatform: "schema:gamePlatform";
1940
- gameServer: "schema:gameServer";
1941
- gameTip: "schema:gameTip";
1942
- geo: "schema:geo";
1943
- geoContains: "schema:geoContains";
1944
- geoCoveredBy: "schema:geoCoveredBy";
1945
- geoCovers: "schema:geoCovers";
1946
- geoCrosses: "schema:geoCrosses";
1947
- geoDisjoint: "schema:geoDisjoint";
1948
- geoEquals: "schema:geoEquals";
1949
- geoIntersects: "schema:geoIntersects";
1950
- geoMidpoint: "schema:geoMidpoint";
1951
- geoOverlaps: "schema:geoOverlaps";
1952
- geoRadius: "schema:geoRadius";
1953
- geoTouches: "schema:geoTouches";
1954
- geoWithin: "schema:geoWithin";
1955
- geographicArea: "schema:geographicArea";
1956
- gettingTestedInfo: "schema:gettingTestedInfo";
1957
- givenName: "schema:givenName";
1958
- globalLocationNumber: "schema:globalLocationNumber";
1959
- governmentBenefitsInfo: "schema:governmentBenefitsInfo";
1960
- gracePeriod: "schema:gracePeriod";
1961
- grantee: "schema:grantee";
1962
- gtin12: "schema:gtin12";
1963
- gtin13: "schema:gtin13";
1964
- gtin14: "schema:gtin14";
1965
- gtin8: "schema:gtin8";
1966
- gtin: "schema:gtin";
1967
- guideline: "schema:guideline";
1968
- guidelineDate: "schema:guidelineDate";
1969
- guidelineSubject: "schema:guidelineSubject";
1970
- handlingTime: "schema:handlingTime";
1971
- hasBroadcastChannel: "schema:hasBroadcastChannel";
1972
- hasCategoryCode: "schema:hasCategoryCode";
1973
- hasCourse: "schema:hasCourse";
1974
- hasCourseInstance: "schema:hasCourseInstance";
1975
- hasCredential: "schema:hasCredential";
1976
- hasDefinedTerm: "schema:hasDefinedTerm";
1977
- hasDeliveryMethod: "schema:hasDeliveryMethod";
1978
- hasDigitalDocumentPermission: "schema:hasDigitalDocumentPermission";
1979
- hasDriveThroughService: "schema:hasDriveThroughService";
1980
- hasEnergyConsumptionDetails: "schema:hasEnergyConsumptionDetails";
1981
- hasEnergyEfficiencyCategory: "schema:hasEnergyEfficiencyCategory";
1982
- hasHealthAspect: "schema:hasHealthAspect";
1983
- hasMap: "schema:hasMap";
1984
- hasMeasurement: "schema:hasMeasurement";
1985
- hasMenu: "schema:hasMenu";
1986
- hasMenuItem: "schema:hasMenuItem";
1987
- hasMenuSection: "schema:hasMenuSection";
1988
- hasMerchantReturnPolicy: "schema:hasMerchantReturnPolicy";
1989
- hasOccupation: "schema:hasOccupation";
1990
- hasOfferCatalog: "schema:hasOfferCatalog";
1991
- headline: "schema:headline";
1992
- healthCondition: "schema:healthCondition";
1993
- healthPlanCoinsuranceOption: "schema:healthPlanCoinsuranceOption";
1994
- healthPlanCoinsuranceRate: "schema:healthPlanCoinsuranceRate";
1995
- healthPlanCopay: "schema:healthPlanCopay";
1996
- healthPlanCopayOption: "schema:healthPlanCopayOption";
1997
- healthPlanCostSharing: "schema:healthPlanCostSharing";
1998
- healthPlanDrugOption: "schema:healthPlanDrugOption";
1999
- healthPlanDrugTier: "schema:healthPlanDrugTier";
2000
- healthPlanId: "schema:healthPlanId";
2001
- healthPlanMarketingUrl: "schema:healthPlanMarketingUrl";
2002
- healthPlanNetworkId: "schema:healthPlanNetworkId";
2003
- healthPlanNetworkTier: "schema:healthPlanNetworkTier";
2004
- healthPlanPharmacyCategory: "schema:healthPlanPharmacyCategory";
2005
- healthcareReportingData: "schema:healthcareReportingData";
2006
- highPrice: "schema:highPrice";
2007
- hiringOrganization: "schema:hiringOrganization";
2008
- holdingArchive: "schema:holdingArchive";
2009
- homeLocation: "schema:homeLocation";
2010
- homeTeam: "schema:homeTeam";
2011
- honorificPrefix: "schema:honorificPrefix";
2012
- honorificSuffix: "schema:honorificSuffix";
2013
- hospitalAffiliation: "schema:hospitalAffiliation";
2014
- hostingOrganization: "schema:hostingOrganization";
2015
- hoursAvailable: "schema:hoursAvailable";
2016
- howPerformed: "schema:howPerformed";
2017
- httpMethod: "schema:httpMethod";
2018
- iataCode: "schema:iataCode";
2019
- icaoCode: "schema:icaoCode";
2020
- identifyingExam: "schema:identifyingExam";
2021
- identifyingTest: "schema:identifyingTest";
2022
- image: "schema:image";
2023
- imagingTechnique: "schema:imagingTechnique";
2024
- inAlbum: "schema:inAlbum";
2025
- inBroadcastLineup: "schema:inBroadcastLineup";
2026
- inCodeSet: "schema:inCodeSet";
2027
- inDefinedTermSet: "schema:inDefinedTermSet";
2028
- inLanguage: "schema:inLanguage";
2029
- inPlaylist: "schema:inPlaylist";
2030
- inProductGroupWithID: "schema:inProductGroupWithID";
2031
- inStoreReturnsOffered: "schema:inStoreReturnsOffered";
2032
- inSupportOf: "schema:inSupportOf";
2033
- incentiveCompensation: "schema:incentiveCompensation";
2034
- incentives: "schema:incentives";
2035
- includedComposition: "schema:includedComposition";
2036
- includedDataCatalog: "schema:includedDataCatalog";
2037
- includedInDataCatalog: "schema:includedInDataCatalog";
2038
- includedInHealthInsurancePlan: "schema:includedInHealthInsurancePlan";
2039
- includedRiskFactor: "schema:includedRiskFactor";
2040
- includesAttraction: "schema:includesAttraction";
2041
- includesHealthPlanFormulary: "schema:includesHealthPlanFormulary";
2042
- includesHealthPlanNetwork: "schema:includesHealthPlanNetwork";
2043
- increasesRiskOf: "schema:increasesRiskOf";
2044
- ineligibleRegion: "schema:ineligibleRegion";
2045
- infectiousAgent: "schema:infectiousAgent";
2046
- infectiousAgentClass: "schema:infectiousAgentClass";
2047
- ingredients: "schema:ingredients";
2048
- inker: "schema:inker";
2049
- insertion: "schema:insertion";
2050
- installUrl: "schema:installUrl";
2051
- instructor: "schema:instructor";
2052
- intensity: "schema:intensity";
2053
- interactingDrug: "schema:interactingDrug";
2054
- interactionCount: "schema:interactionCount";
2055
- interactionService: "schema:interactionService";
2056
- interactionStatistic: "schema:interactionStatistic";
2057
- interactionType: "schema:interactionType";
2058
- interactivityType: "schema:interactivityType";
2059
- interestRate: "schema:interestRate";
2060
- inventoryLevel: "schema:inventoryLevel";
2061
- inverseOf: "schema:inverseOf";
2062
- isAcceptingNewPatients: "schema:isAcceptingNewPatients";
2063
- isAccessibleForFree: "schema:isAccessibleForFree";
2064
- isAvailableGenerically: "schema:isAvailableGenerically";
2065
- isBasedOn: "schema:isBasedOn";
2066
- isBasedOnUrl: "schema:isBasedOnUrl";
2067
- isFamilyFriendly: "schema:isFamilyFriendly";
2068
- isGift: "schema:isGift";
2069
- isLiveBroadcast: "schema:isLiveBroadcast";
2070
- isPlanForApartment: "schema:isPlanForApartment";
2071
- isProprietary: "schema:isProprietary";
2072
- isRelatedTo: "schema:isRelatedTo";
2073
- isResizable: "schema:isResizable";
2074
- isUnlabelledFallback: "schema:isUnlabelledFallback";
2075
- isicV4: "schema:isicV4";
2076
- isrcCode: "schema:isrcCode";
2077
- issueNumber: "schema:issueNumber";
2078
- issuedBy: "schema:issuedBy";
2079
- issuedThrough: "schema:issuedThrough";
2080
- iswcCode: "schema:iswcCode";
2081
- item: "schema:item";
2082
- itemCondition: "schema:itemCondition";
2083
- itemListElement: "schema:itemListElement";
2084
- itemListOrder: "schema:itemListOrder";
2085
- itemLocation: "schema:itemLocation";
2086
- itemOffered: "schema:itemOffered";
2087
- itemReviewed: "schema:itemReviewed";
2088
- itemShipped: "schema:itemShipped";
2089
- itinerary: "schema:itinerary";
2090
- jobBenefits: "schema:jobBenefits";
2091
- jobImmediateStart: "schema:jobImmediateStart";
2092
- jobLocation: "schema:jobLocation";
2093
- jobLocationType: "schema:jobLocationType";
2094
- jobStartDate: "schema:jobStartDate";
2095
- jobTitle: "schema:jobTitle";
2096
- keywords: "schema:keywords";
2097
- knownVehicleDamages: "schema:knownVehicleDamages";
2098
- knowsAbout: "schema:knowsAbout";
2099
- knowsLanguage: "schema:knowsLanguage";
2100
- labelDetails: "schema:labelDetails";
2101
- landlord: "schema:landlord";
2102
- lastReviewed: "schema:lastReviewed";
2103
- latitude: "schema:latitude";
2104
- layoutImage: "schema:layoutImage";
2105
- learningResourceType: "schema:learningResourceType";
2106
- leaseLength: "schema:leaseLength";
2107
- legalStatus: "schema:legalStatus";
2108
- legislationApplies: "schema:legislationApplies";
2109
- legislationChanges: "schema:legislationChanges";
2110
- legislationConsolidates: "schema:legislationConsolidates";
2111
- legislationDate: "schema:legislationDate";
2112
- legislationDateVersion: "schema:legislationDateVersion";
2113
- legislationIdentifier: "schema:legislationIdentifier";
2114
- legislationJurisdiction: "schema:legislationJurisdiction";
2115
- legislationLegalForce: "schema:legislationLegalForce";
2116
- legislationLegalValue: "schema:legislationLegalValue";
2117
- legislationPassedBy: "schema:legislationPassedBy";
2118
- legislationResponsible: "schema:legislationResponsible";
2119
- legislationTransposes: "schema:legislationTransposes";
2120
- legislationType: "schema:legislationType";
2121
- leiCode: "schema:leiCode";
2122
- lender: "schema:lender";
2123
- letterer: "schema:letterer";
2124
- line: "schema:line";
2125
- linkRelationship: "schema:linkRelationship";
2126
- liveBlogUpdate: "schema:liveBlogUpdate";
2127
- loanMortgageMandateAmount: "schema:loanMortgageMandateAmount";
2128
- loanPaymentAmount: "schema:loanPaymentAmount";
2129
- loanPaymentFrequency: "schema:loanPaymentFrequency";
2130
- loanRepaymentForm: "schema:loanRepaymentForm";
2131
- loanTerm: "schema:loanTerm";
2132
- loanType: "schema:loanType";
2133
- locationCreated: "schema:locationCreated";
2134
- lodgingUnitDescription: "schema:lodgingUnitDescription";
2135
- lodgingUnitType: "schema:lodgingUnitType";
2136
- longitude: "schema:longitude";
2137
- loser: "schema:loser";
2138
- lowPrice: "schema:lowPrice";
2139
- lyricist: "schema:lyricist";
2140
- mainContentOfPage: "schema:mainContentOfPage";
2141
- mainEntity: "schema:mainEntity";
2142
- mainEntityOfPage: "schema:mainEntityOfPage";
2143
- maintainer: "schema:maintainer";
2144
- makesOffer: "schema:makesOffer";
2145
- mapType: "schema:mapType";
2146
- maps: "schema:maps";
2147
- marginOfError: "schema:marginOfError";
2148
- masthead: "schema:masthead";
2149
- materialExtent: "schema:materialExtent";
2150
- mathExpression: "schema:mathExpression";
2151
- maxPrice: "schema:maxPrice";
2152
- maxValue: "schema:maxValue";
2153
- maximumAttendeeCapacity: "schema:maximumAttendeeCapacity";
2154
- maximumEnrollment: "schema:maximumEnrollment";
2155
- maximumIntake: "schema:maximumIntake";
2156
- maximumPhysicalAttendeeCapacity: "schema:maximumPhysicalAttendeeCapacity";
2157
- maximumVirtualAttendeeCapacity: "schema:maximumVirtualAttendeeCapacity";
2158
- mealService: "schema:mealService";
2159
- measuredProperty: "schema:measuredProperty";
2160
- measuredValue: "schema:measuredValue";
2161
- measurementTechnique: "schema:measurementTechnique";
2162
- mechanismOfAction: "schema:mechanismOfAction";
2163
- mediaAuthenticityCategory: "schema:mediaAuthenticityCategory";
2164
- median: "schema:median";
2165
- medicalAudience: "schema:medicalAudience";
2166
- medicineSystem: "schema:medicineSystem";
2167
- meetsEmissionStandard: "schema:meetsEmissionStandard";
2168
- memberOf: "schema:memberOf";
2169
- members: "schema:members";
2170
- membershipNumber: "schema:membershipNumber";
2171
- membershipPointsEarned: "schema:membershipPointsEarned";
2172
- memoryRequirements: "schema:memoryRequirements";
2173
- mentions: "schema:mentions";
2174
- menu: "schema:menu";
2175
- menuAddOn: "schema:menuAddOn";
2176
- merchant: "schema:merchant";
2177
- merchantReturnDays: "schema:merchantReturnDays";
2178
- merchantReturnLink: "schema:merchantReturnLink";
2179
- messageAttachment: "schema:messageAttachment";
2180
- mileageFromOdometer: "schema:mileageFromOdometer";
2181
- minPrice: "schema:minPrice";
2182
- minValue: "schema:minValue";
2183
- minimumPaymentDue: "schema:minimumPaymentDue";
2184
- missionCoveragePrioritiesPolicy: "schema:missionCoveragePrioritiesPolicy";
2185
- modelDate: "schema:modelDate";
2186
- modifiedTime: "schema:modifiedTime";
2187
- monthlyMinimumRepaymentAmount: "schema:monthlyMinimumRepaymentAmount";
2188
- monthsOfExperience: "schema:monthsOfExperience";
2189
- mpn: "schema:mpn";
2190
- multipleValues: "schema:multipleValues";
2191
- muscleAction: "schema:muscleAction";
2192
- musicArrangement: "schema:musicArrangement";
2193
- musicCompositionForm: "schema:musicCompositionForm";
2194
- musicGroupMember: "schema:musicGroupMember";
2195
- musicReleaseFormat: "schema:musicReleaseFormat";
2196
- naics: "schema:naics";
2197
- namedPosition: "schema:namedPosition";
2198
- naturalProgression: "schema:naturalProgression";
2199
- nerveMotor: "schema:nerveMotor";
2200
- netWorth: "schema:netWorth";
2201
- newsUpdatesAndGuidelines: "schema:newsUpdatesAndGuidelines";
2202
- nextItem: "schema:nextItem";
2203
- noBylinesPolicy: "schema:noBylinesPolicy";
2204
- nonProprietaryName: "schema:nonProprietaryName";
2205
- nonprofitStatus: "schema:nonprofitStatus";
2206
- normalRange: "schema:normalRange";
2207
- nsn: "schema:nsn";
2208
- numAdults: "schema:numAdults";
2209
- numChildren: "schema:numChildren";
2210
- numConstraints: "schema:numConstraints";
2211
- numTracks: "schema:numTracks";
2212
- numberOfAccommodationUnits: "schema:numberOfAccommodationUnits";
2213
- numberOfAirbags: "schema:numberOfAirbags";
2214
- numberOfAvailableAccommodationUnits: "schema:numberOfAvailableAccommodationUnits";
2215
- numberOfAxles: "schema:numberOfAxles";
2216
- numberOfBathroomsTotal: "schema:numberOfBathroomsTotal";
2217
- numberOfBedrooms: "schema:numberOfBedrooms";
2218
- numberOfBeds: "schema:numberOfBeds";
2219
- numberOfCredits: "schema:numberOfCredits";
2220
- numberOfForwardGears: "schema:numberOfForwardGears";
2221
- numberOfFullBathrooms: "schema:numberOfFullBathrooms";
2222
- numberOfItems: "schema:numberOfItems";
2223
- numberOfLoanPayments: "schema:numberOfLoanPayments";
2224
- numberOfPartialBathrooms: "schema:numberOfPartialBathrooms";
2225
- numberOfPreviousOwners: "schema:numberOfPreviousOwners";
2226
- numberedPosition: "schema:numberedPosition";
2227
- nutrition: "schema:nutrition";
2228
- observationDate: "schema:observationDate";
2229
- observedNode: "schema:observedNode";
2230
- occupancy: "schema:occupancy";
2231
- occupationLocation: "schema:occupationLocation";
2232
- occupationalCategory: "schema:occupationalCategory";
2233
- occupationalCredentialAwarded: "schema:occupationalCredentialAwarded";
2234
- offerCount: "schema:offerCount";
2235
- offeredBy: "schema:offeredBy";
2236
- offersPrescriptionByMail: "schema:offersPrescriptionByMail";
2237
- openingHours: "schema:openingHours";
2238
- openingHoursSpecification: "schema:openingHoursSpecification";
2239
- option: "schema:option";
2240
- orderDelivery: "schema:orderDelivery";
2241
- orderItemNumber: "schema:orderItemNumber";
2242
- orderItemStatus: "schema:orderItemStatus";
2243
- orderNumber: "schema:orderNumber";
2244
- orderQuantity: "schema:orderQuantity";
2245
- orderStatus: "schema:orderStatus";
2246
- orderedItem: "schema:orderedItem";
2247
- organizer: "schema:organizer";
2248
- originAddress: "schema:originAddress";
2249
- originatesFrom: "schema:originatesFrom";
2250
- overdosage: "schema:overdosage";
2251
- ownedFrom: "schema:ownedFrom";
2252
- ownedThrough: "schema:ownedThrough";
2253
- ownershipFundingInfo: "schema:ownershipFundingInfo";
2254
- pageEnd: "schema:pageEnd";
2255
- pageStart: "schema:pageStart";
2256
- pagination: "schema:pagination";
2257
- parentItem: "schema:parentItem";
2258
- parentOrganization: "schema:parentOrganization";
2259
- parentService: "schema:parentService";
2260
- parents: "schema:parents";
2261
- partOfEpisode: "schema:partOfEpisode";
2262
- partOfInvoice: "schema:partOfInvoice";
2263
- partOfOrder: "schema:partOfOrder";
2264
- partOfSeason: "schema:partOfSeason";
2265
- partOfSeries: "schema:partOfSeries";
2266
- partOfSystem: "schema:partOfSystem";
2267
- partOfTVSeries: "schema:partOfTVSeries";
2268
- partOfTrip: "schema:partOfTrip";
2269
- partySize: "schema:partySize";
2270
- passengerPriorityStatus: "schema:passengerPriorityStatus";
2271
- passengerSequenceNumber: "schema:passengerSequenceNumber";
2272
- pathophysiology: "schema:pathophysiology";
2273
- pattern: "schema:pattern";
2274
- payload: "schema:payload";
2275
- paymentAccepted: "schema:paymentAccepted";
2276
- paymentDue: "schema:paymentDue";
2277
- paymentDueDate: "schema:paymentDueDate";
2278
- paymentMethod: "schema:paymentMethod";
2279
- paymentMethodId: "schema:paymentMethodId";
2280
- paymentStatus: "schema:paymentStatus";
2281
- paymentUrl: "schema:paymentUrl";
2282
- penciler: "schema:penciler";
2283
- percentile10: "schema:percentile10";
2284
- percentile25: "schema:percentile25";
2285
- percentile75: "schema:percentile75";
2286
- percentile90: "schema:percentile90";
2287
- performTime: "schema:performTime";
2288
- performerIn: "schema:performerIn";
2289
- performers: "schema:performers";
2290
- permissionType: "schema:permissionType";
2291
- permissions: "schema:permissions";
2292
- permitAudience: "schema:permitAudience";
2293
- permittedUsage: "schema:permittedUsage";
2294
- petsAllowed: "schema:petsAllowed";
2295
- phoneticText: "schema:phoneticText";
2296
- photo: "schema:photo";
2297
- photos: "schema:photos";
2298
- physicalRequirement: "schema:physicalRequirement";
2299
- physiologicalBenefits: "schema:physiologicalBenefits";
2300
- pickupLocation: "schema:pickupLocation";
2301
- pickupTime: "schema:pickupTime";
2302
- playMode: "schema:playMode";
2303
- playerType: "schema:playerType";
2304
- playersOnline: "schema:playersOnline";
2305
- polygon: "schema:polygon";
2306
- populationType: "schema:populationType";
2307
- possibleComplication: "schema:possibleComplication";
2308
- possibleTreatment: "schema:possibleTreatment";
2309
- postOfficeBoxNumber: "schema:postOfficeBoxNumber";
2310
- postOp: "schema:postOp";
2311
- postalCodeBegin: "schema:postalCodeBegin";
2312
- postalCodeEnd: "schema:postalCodeEnd";
2313
- postalCodePrefix: "schema:postalCodePrefix";
2314
- postalCodeRange: "schema:postalCodeRange";
2315
- potentialAction: "schema:potentialAction";
2316
- preOp: "schema:preOp";
2317
- pregnancyCategory: "schema:pregnancyCategory";
2318
- pregnancyWarning: "schema:pregnancyWarning";
2319
- prepTime: "schema:prepTime";
2320
- preparation: "schema:preparation";
2321
- prescribingInfo: "schema:prescribingInfo";
2322
- prescriptionStatus: "schema:prescriptionStatus";
2323
- previousItem: "schema:previousItem";
2324
- previousStartDate: "schema:previousStartDate";
2325
- priceComponent: "schema:priceComponent";
2326
- priceComponentType: "schema:priceComponentType";
2327
- priceCurrency: "schema:priceCurrency";
2328
- priceRange: "schema:priceRange";
2329
- priceSpecification: "schema:priceSpecification";
2330
- priceValidUntil: "schema:priceValidUntil";
2331
- primaryImageOfPage: "schema:primaryImageOfPage";
2332
- primaryPrevention: "schema:primaryPrevention";
2333
- printColumn: "schema:printColumn";
2334
- printEdition: "schema:printEdition";
2335
- printPage: "schema:printPage";
2336
- printSection: "schema:printSection";
2337
- procedureType: "schema:procedureType";
2338
- processingTime: "schema:processingTime";
2339
- processorRequirements: "schema:processorRequirements";
2340
- productGroupID: "schema:productGroupID";
2341
- productID: "schema:productID";
2342
- productSupported: "schema:productSupported";
2343
- productionDate: "schema:productionDate";
2344
- proficiencyLevel: "schema:proficiencyLevel";
2345
- programMembershipUsed: "schema:programMembershipUsed";
2346
- programName: "schema:programName";
2347
- programPrerequisites: "schema:programPrerequisites";
2348
- programType: "schema:programType";
2349
- programmingModel: "schema:programmingModel";
2350
- propertyID: "schema:propertyID";
2351
- proprietaryName: "schema:proprietaryName";
2352
- proteinContent: "schema:proteinContent";
2353
- provider: "schema:provider";
2354
- providerMobility: "schema:providerMobility";
2355
- providesBroadcastService: "schema:providesBroadcastService";
2356
- providesService: "schema:providesService";
2357
- publicAccess: "schema:publicAccess";
2358
- publicTransportClosuresInfo: "schema:publicTransportClosuresInfo";
2359
- publicationType: "schema:publicationType";
2360
- publishedBy: "schema:publishedBy";
2361
- publishedOn: "schema:publishedOn";
2362
- publisherImprint: "schema:publisherImprint";
2363
- publishingPrinciples: "schema:publishingPrinciples";
2364
- purchaseDate: "schema:purchaseDate";
2365
- qualifications: "schema:qualifications";
2366
- quarantineGuidelines: "schema:quarantineGuidelines";
2367
- quest: "schema:quest";
2368
- question: "schema:question";
2369
- rangeIncludes: "schema:rangeIncludes";
2370
- ratingCount: "schema:ratingCount";
2371
- ratingExplanation: "schema:ratingExplanation";
2372
- ratingValue: "schema:ratingValue";
2373
- readBy: "schema:readBy";
2374
- readonlyValue: "schema:readonlyValue";
2375
- realEstateAgent: "schema:realEstateAgent";
2376
- recipe: "schema:recipe";
2377
- recipeCategory: "schema:recipeCategory";
2378
- recipeCuisine: "schema:recipeCuisine";
2379
- recipeIngredient: "schema:recipeIngredient";
2380
- recipeInstructions: "schema:recipeInstructions";
2381
- recipeYield: "schema:recipeYield";
2382
- recipient: "schema:recipient";
2383
- recognizedBy: "schema:recognizedBy";
2384
- recognizingAuthority: "schema:recognizingAuthority";
2385
- recommendationStrength: "schema:recommendationStrength";
2386
- recommendedIntake: "schema:recommendedIntake";
2387
- recordedAs: "schema:recordedAs";
2388
- recordedAt: "schema:recordedAt";
2389
- recordingOf: "schema:recordingOf";
2390
- recourseLoan: "schema:recourseLoan";
2391
- referenceQuantity: "schema:referenceQuantity";
2392
- referencesOrder: "schema:referencesOrder";
2393
- refundType: "schema:refundType";
2394
- regionDrained: "schema:regionDrained";
2395
- regionsAllowed: "schema:regionsAllowed";
2396
- relatedAnatomy: "schema:relatedAnatomy";
2397
- relatedCondition: "schema:relatedCondition";
2398
- relatedDrug: "schema:relatedDrug";
2399
- relatedLink: "schema:relatedLink";
2400
- relatedStructure: "schema:relatedStructure";
2401
- relatedTherapy: "schema:relatedTherapy";
2402
- relatedTo: "schema:relatedTo";
2403
- releaseNotes: "schema:releaseNotes";
2404
- releaseOf: "schema:releaseOf";
2405
- releasedEvent: "schema:releasedEvent";
2406
- relevantOccupation: "schema:relevantOccupation";
2407
- relevantSpecialty: "schema:relevantSpecialty";
2408
- remainingAttendeeCapacity: "schema:remainingAttendeeCapacity";
2409
- renegotiableLoan: "schema:renegotiableLoan";
2410
- repeatCount: "schema:repeatCount";
2411
- repeatFrequency: "schema:repeatFrequency";
2412
- repetitions: "schema:repetitions";
2413
- replacee: "schema:replacee";
2414
- replacer: "schema:replacer";
2415
- replyToUrl: "schema:replyToUrl";
2416
- reportNumber: "schema:reportNumber";
2417
- representativeOfPage: "schema:representativeOfPage";
2418
- requiredCollateral: "schema:requiredCollateral";
2419
- requiredGender: "schema:requiredGender";
2420
- requiredMaxAge: "schema:requiredMaxAge";
2421
- requiredMinAge: "schema:requiredMinAge";
2422
- requiredQuantity: "schema:requiredQuantity";
2423
- requirements: "schema:requirements";
2424
- requiresSubscription: "schema:requiresSubscription";
2425
- reservationFor: "schema:reservationFor";
2426
- reservationId: "schema:reservationId";
2427
- reservationStatus: "schema:reservationStatus";
2428
- reservedTicket: "schema:reservedTicket";
2429
- responsibilities: "schema:responsibilities";
2430
- restPeriods: "schema:restPeriods";
2431
- resultComment: "schema:resultComment";
2432
- resultReview: "schema:resultReview";
2433
- returnFees: "schema:returnFees";
2434
- returnPolicyCategory: "schema:returnPolicyCategory";
2435
- reviewAspect: "schema:reviewAspect";
2436
- reviewBody: "schema:reviewBody";
2437
- reviewCount: "schema:reviewCount";
2438
- reviewRating: "schema:reviewRating";
2439
- reviewedBy: "schema:reviewedBy";
2440
- reviews: "schema:reviews";
2441
- riskFactor: "schema:riskFactor";
2442
- risks: "schema:risks";
2443
- roleName: "schema:roleName";
2444
- roofLoad: "schema:roofLoad";
2445
- rsvpResponse: "schema:rsvpResponse";
2446
- runsTo: "schema:runsTo";
2447
- runtimePlatform: "schema:runtimePlatform";
2448
- rxcui: "schema:rxcui";
2449
- safetyConsideration: "schema:safetyConsideration";
2450
- salaryCurrency: "schema:salaryCurrency";
2451
- salaryUponCompletion: "schema:salaryUponCompletion";
2452
- sameAs: "schema:sameAs";
2453
- sampleType: "schema:sampleType";
2454
- saturatedFatContent: "schema:saturatedFatContent";
2455
- scheduleTimezone: "schema:scheduleTimezone";
2456
- scheduledPaymentDate: "schema:scheduledPaymentDate";
2457
- scheduledTime: "schema:scheduledTime";
2458
- schemaVersion: "schema:schemaVersion";
2459
- schoolClosuresInfo: "schema:schoolClosuresInfo";
2460
- screenCount: "schema:screenCount";
2461
- screenshot: "schema:screenshot";
2462
- sdDatePublished: "schema:sdDatePublished";
2463
- sdLicense: "schema:sdLicense";
2464
- sdPublisher: "schema:sdPublisher";
2465
- seasons: "schema:seasons";
2466
- seatRow: "schema:seatRow";
2467
- seatSection: "schema:seatSection";
2468
- seatingType: "schema:seatingType";
2469
- secondaryPrevention: "schema:secondaryPrevention";
2470
- securityClearanceRequirement: "schema:securityClearanceRequirement";
2471
- securityScreening: "schema:securityScreening";
2472
- seller: "schema:seller";
2473
- sender: "schema:sender";
2474
- sensoryRequirement: "schema:sensoryRequirement";
2475
- sensoryUnit: "schema:sensoryUnit";
2476
- seriousAdverseOutcome: "schema:seriousAdverseOutcome";
2477
- serverStatus: "schema:serverStatus";
2478
- servesCuisine: "schema:servesCuisine";
2479
- serviceArea: "schema:serviceArea";
2480
- serviceAudience: "schema:serviceAudience";
2481
- serviceLocation: "schema:serviceLocation";
2482
- serviceOperator: "schema:serviceOperator";
2483
- serviceOutput: "schema:serviceOutput";
2484
- servicePhone: "schema:servicePhone";
2485
- servicePostalAddress: "schema:servicePostalAddress";
2486
- serviceSmsNumber: "schema:serviceSmsNumber";
2487
- serviceType: "schema:serviceType";
2488
- serviceUrl: "schema:serviceUrl";
2489
- sharedContent: "schema:sharedContent";
2490
- shippingDestination: "schema:shippingDestination";
2491
- shippingDetails: "schema:shippingDetails";
2492
- shippingLabel: "schema:shippingLabel";
2493
- shippingRate: "schema:shippingRate";
2494
- shippingSettingsLink: "schema:shippingSettingsLink";
2495
- siblings: "schema:siblings";
2496
- signDetected: "schema:signDetected";
2497
- signOrSymptom: "schema:signOrSymptom";
2498
- significance: "schema:significance";
2499
- significantLink: "schema:significantLink";
2500
- significantLinks: "schema:significantLinks";
2501
- size: "schema:size";
2502
- sizeGroup: "schema:sizeGroup";
2503
- sizeSystem: "schema:sizeSystem";
2504
- sku: "schema:sku";
2505
- smokingAllowed: "schema:smokingAllowed";
2506
- sodiumContent: "schema:sodiumContent";
2507
- softwareAddOn: "schema:softwareAddOn";
2508
- softwareHelp: "schema:softwareHelp";
2509
- softwareRequirements: "schema:softwareRequirements";
2510
- softwareVersion: "schema:softwareVersion";
2511
- sourceOrganization: "schema:sourceOrganization";
2512
- sourcedFrom: "schema:sourcedFrom";
2513
- spatialCoverage: "schema:spatialCoverage";
2514
- speakable: "schema:speakable";
2515
- specialCommitments: "schema:specialCommitments";
2516
- specialOpeningHoursSpecification: "schema:specialOpeningHoursSpecification";
2517
- specialty: "schema:specialty";
2518
- speechToTextMarkup: "schema:speechToTextMarkup";
2519
- speed: "schema:speed";
2520
- spokenByCharacter: "schema:spokenByCharacter";
2521
- sponsor: "schema:sponsor";
2522
- sportsActivityLocation: "schema:sportsActivityLocation";
2523
- sportsEvent: "schema:sportsEvent";
2524
- sportsTeam: "schema:sportsTeam";
2525
- stage: "schema:stage";
2526
- stageAsNumber: "schema:stageAsNumber";
2527
- startOffset: "schema:startOffset";
2528
- startTime: "schema:startTime";
2529
- steeringPosition: "schema:steeringPosition";
2530
- step: "schema:step";
2531
- stepValue: "schema:stepValue";
2532
- steps: "schema:steps";
2533
- storageRequirements: "schema:storageRequirements";
2534
- streetAddress: "schema:streetAddress";
2535
- strengthUnit: "schema:strengthUnit";
2536
- strengthValue: "schema:strengthValue";
2537
- structuralClass: "schema:structuralClass";
2538
- study: "schema:study";
2539
- studyDesign: "schema:studyDesign";
2540
- studyLocation: "schema:studyLocation";
2541
- studySubject: "schema:studySubject";
2542
- subEvent: "schema:subEvent";
2543
- subEvents: "schema:subEvents";
2544
- subOrganization: "schema:subOrganization";
2545
- subReservation: "schema:subReservation";
2546
- subStageSuffix: "schema:subStageSuffix";
2547
- subStructure: "schema:subStructure";
2548
- subTest: "schema:subTest";
2549
- subTrip: "schema:subTrip";
2550
- subjectOf: "schema:subjectOf";
2551
- subtitleLanguage: "schema:subtitleLanguage";
2552
- sugarContent: "schema:sugarContent";
2553
- suggestedAge: "schema:suggestedAge";
2554
- suggestedAnswer: "schema:suggestedAnswer";
2555
- suggestedGender: "schema:suggestedGender";
2556
- suggestedMaxAge: "schema:suggestedMaxAge";
2557
- suggestedMeasurement: "schema:suggestedMeasurement";
2558
- suggestedMinAge: "schema:suggestedMinAge";
2559
- suitableForDiet: "schema:suitableForDiet";
2560
- superEvent: "schema:superEvent";
2561
- supersededBy: "schema:supersededBy";
2562
- supplyTo: "schema:supplyTo";
2563
- supportingData: "schema:supportingData";
2564
- surface: "schema:surface";
2565
- target: "schema:target";
2566
- targetCollection: "schema:targetCollection";
2567
- targetDescription: "schema:targetDescription";
2568
- targetName: "schema:targetName";
2569
- targetPlatform: "schema:targetPlatform";
2570
- targetPopulation: "schema:targetPopulation";
2571
- targetProduct: "schema:targetProduct";
2572
- targetUrl: "schema:targetUrl";
2573
- teaches: "schema:teaches";
2574
- telephone: "schema:telephone";
2575
- temporalCoverage: "schema:temporalCoverage";
2576
- termCode: "schema:termCode";
2577
- termDuration: "schema:termDuration";
2578
- termsOfService: "schema:termsOfService";
2579
- termsPerYear: "schema:termsPerYear";
2580
- text: "schema:text";
2581
- textValue: "schema:textValue";
2582
- thumbnailUrl: "schema:thumbnailUrl";
2583
- tickerSymbol: "schema:tickerSymbol";
2584
- ticketNumber: "schema:ticketNumber";
2585
- ticketToken: "schema:ticketToken";
2586
- ticketedSeat: "schema:ticketedSeat";
2587
- timeOfDay: "schema:timeOfDay";
2588
- timeRequired: "schema:timeRequired";
2589
- timeToComplete: "schema:timeToComplete";
2590
- tissueSample: "schema:tissueSample";
2591
- titleEIDR: "schema:titleEIDR";
2592
- toLocation: "schema:toLocation";
2593
- toRecipient: "schema:toRecipient";
2594
- tocContinuation: "schema:tocContinuation";
2595
- tocEntry: "schema:tocEntry";
2596
- tongueWeight: "schema:tongueWeight";
2597
- tool: "schema:tool";
2598
- torque: "schema:torque";
2599
- totalJobOpenings: "schema:totalJobOpenings";
2600
- totalPaymentDue: "schema:totalPaymentDue";
2601
- totalPrice: "schema:totalPrice";
2602
- totalTime: "schema:totalTime";
2603
- tourBookingPage: "schema:tourBookingPage";
2604
- touristType: "schema:touristType";
2605
- track: "schema:track";
2606
- trackingNumber: "schema:trackingNumber";
2607
- trackingUrl: "schema:trackingUrl";
2608
- tracks: "schema:tracks";
2609
- trailer: "schema:trailer";
2610
- trailerWeight: "schema:trailerWeight";
2611
- trainName: "schema:trainName";
2612
- trainNumber: "schema:trainNumber";
2613
- trainingSalary: "schema:trainingSalary";
2614
- transFatContent: "schema:transFatContent";
2615
- transcript: "schema:transcript";
2616
- transitTime: "schema:transitTime";
2617
- transitTimeLabel: "schema:transitTimeLabel";
2618
- translationOfWork: "schema:translationOfWork";
2619
- transmissionMethod: "schema:transmissionMethod";
2620
- travelBans: "schema:travelBans";
2621
- trialDesign: "schema:trialDesign";
2622
- tributary: "schema:tributary";
2623
- typeOfBed: "schema:typeOfBed";
2624
- typicalAgeRange: "schema:typicalAgeRange";
2625
- typicalCreditsPerTerm: "schema:typicalCreditsPerTerm";
2626
- typicalTest: "schema:typicalTest";
2627
- underName: "schema:underName";
2628
- unitCode: "schema:unitCode";
2629
- unitText: "schema:unitText";
2630
- unnamedSourcesPolicy: "schema:unnamedSourcesPolicy";
2631
- unsaturatedFatContent: "schema:unsaturatedFatContent";
2632
- uploadDate: "schema:uploadDate";
2633
- upvoteCount: "schema:upvoteCount";
2634
- url: "schema:url";
2635
- urlTemplate: "schema:urlTemplate";
2636
- usageInfo: "schema:usageInfo";
2637
- usedToDiagnose: "schema:usedToDiagnose";
2638
- userInteractionCount: "schema:userInteractionCount";
2639
- usesDevice: "schema:usesDevice";
2640
- usesHealthPlanIdStandard: "schema:usesHealthPlanIdStandard";
2641
- utterances: "schema:utterances";
2642
- validFor: "schema:validFor";
2643
- validIn: "schema:validIn";
2644
- validUntil: "schema:validUntil";
2645
- valueMaxLength: "schema:valueMaxLength";
2646
- valueMinLength: "schema:valueMinLength";
2647
- valueName: "schema:valueName";
2648
- valuePattern: "schema:valuePattern";
2649
- valueRequired: "schema:valueRequired";
2650
- variableMeasured: "schema:variableMeasured";
2651
- variantCover: "schema:variantCover";
2652
- variesBy: "schema:variesBy";
2653
- vehicleConfiguration: "schema:vehicleConfiguration";
2654
- vehicleEngine: "schema:vehicleEngine";
2655
- vehicleIdentificationNumber: "schema:vehicleIdentificationNumber";
2656
- vehicleInteriorColor: "schema:vehicleInteriorColor";
2657
- vehicleInteriorType: "schema:vehicleInteriorType";
2658
- vehicleModelDate: "schema:vehicleModelDate";
2659
- vehicleSeatingCapacity: "schema:vehicleSeatingCapacity";
2660
- vehicleSpecialUsage: "schema:vehicleSpecialUsage";
2661
- vehicleTransmission: "schema:vehicleTransmission";
2662
- vendor: "schema:vendor";
2663
- verificationFactCheckingPolicy: "schema:verificationFactCheckingPolicy";
2664
- video: "schema:video";
2665
- videoFormat: "schema:videoFormat";
2666
- videoFrameSize: "schema:videoFrameSize";
2667
- videoQuality: "schema:videoQuality";
2668
- volumeNumber: "schema:volumeNumber";
2669
- warning: "schema:warning";
2670
- warranty: "schema:warranty";
2671
- warrantyPromise: "schema:warrantyPromise";
2672
- warrantyScope: "schema:warrantyScope";
2673
- webCheckinTime: "schema:webCheckinTime";
2674
- webFeed: "schema:webFeed";
2675
- weightTotal: "schema:weightTotal";
2676
- winner: "schema:winner";
2677
- wordCount: "schema:wordCount";
2678
- workExample: "schema:workExample";
2679
- workFeatured: "schema:workFeatured";
2680
- workHours: "schema:workHours";
2681
- workLocation: "schema:workLocation";
2682
- workPerformed: "schema:workPerformed";
2683
- workPresented: "schema:workPresented";
2684
- workTranslation: "schema:workTranslation";
2685
- workload: "schema:workload";
2686
- worksFor: "schema:worksFor";
2687
- worstRating: "schema:worstRating";
2688
- xpath: "schema:xpath";
2689
- yearBuilt: "schema:yearBuilt";
2690
- yearlyRevenue: "schema:yearlyRevenue";
2691
- yearsInOperation: "schema:yearsInOperation";
2692
- yield: "schema:yield";
2693
- } & {
2694
- $prefix: "schema:";
2695
- $iri: "http://schema.org/";
2696
- };
2697
- export default _default;