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