@arpproject/recrate 0.1.2

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