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