@fedify/fedify 1.6.0-dev.813 → 1.6.0-experiment.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1249) hide show
  1. package/dist/_virtual/rolldown_runtime.js +15 -0
  2. package/dist/codegen/fs.js +23 -0
  3. package/dist/codegen/schema.js +87 -0
  4. package/dist/codegen/type.js +394 -0
  5. package/dist/compat/mod.d.ts +5 -0
  6. package/dist/compat/mod.js +7 -0
  7. package/dist/compat/transformers.d.ts +101 -0
  8. package/dist/compat/transformers.js +98 -0
  9. package/dist/compat/transformers.test.d.ts +2 -0
  10. package/dist/compat/transformers.test.js +69 -0
  11. package/dist/compat/types.d.ts +18 -0
  12. package/dist/deno.js +109 -0
  13. package/dist/federation/builder.d.ts +19 -0
  14. package/dist/federation/builder.js +491 -0
  15. package/dist/federation/builder.test.d.ts +2 -0
  16. package/dist/federation/builder.test.js +123 -0
  17. package/dist/federation/callback.d.ts +211 -0
  18. package/dist/federation/collection.d.ts +36 -0
  19. package/dist/federation/collection.js +48 -0
  20. package/dist/federation/collection.test.d.ts +2 -0
  21. package/dist/federation/collection.test.js +25 -0
  22. package/dist/federation/context.d.ts +724 -0
  23. package/dist/federation/federation.d.ts +689 -0
  24. package/dist/federation/handler.d.ts +44 -0
  25. package/dist/federation/handler.js +543 -0
  26. package/dist/federation/handler.test.d.ts +2 -0
  27. package/dist/federation/handler.test.js +1186 -0
  28. package/dist/federation/inbox.js +165 -0
  29. package/dist/federation/inbox.test.d.ts +2 -0
  30. package/dist/federation/inbox.test.js +88 -0
  31. package/dist/federation/keycache.js +47 -0
  32. package/dist/federation/keycache.test.d.ts +2 -0
  33. package/dist/federation/keycache.test.js +55 -0
  34. package/dist/federation/kv.d.ts +74 -0
  35. package/dist/federation/kv.js +51 -0
  36. package/dist/federation/kv.test.d.ts +2 -0
  37. package/dist/federation/kv.test.js +25 -0
  38. package/dist/federation/middleware.d.ts +101 -0
  39. package/dist/federation/middleware.js +1775 -0
  40. package/dist/federation/middleware.test.d.ts +2 -0
  41. package/dist/federation/middleware.test.js +1491 -0
  42. package/dist/federation/mod.d.ts +15 -0
  43. package/dist/federation/mod.js +14 -0
  44. package/dist/federation/mq.d.ts +127 -0
  45. package/dist/federation/mq.js +147 -0
  46. package/dist/federation/mq.test.d.ts +2 -0
  47. package/dist/federation/mq.test.js +124 -0
  48. package/dist/federation/negotiation.js +63 -0
  49. package/dist/federation/retry.d.ts +71 -0
  50. package/dist/federation/retry.js +36 -0
  51. package/dist/federation/retry.test.d.ts +2 -0
  52. package/dist/federation/retry.test.js +44 -0
  53. package/dist/federation/router.d.ts +91 -0
  54. package/dist/federation/router.js +99 -0
  55. package/dist/federation/router.test.d.ts +2 -0
  56. package/dist/federation/router.test.js +78 -0
  57. package/dist/federation/send.d.ts +29 -0
  58. package/dist/federation/send.js +127 -0
  59. package/dist/federation/send.test.d.ts +2 -0
  60. package/dist/federation/send.test.js +214 -0
  61. package/dist/mod.d.ts +36 -0
  62. package/dist/mod.js +33 -0
  63. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js +101 -0
  64. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/router.js +93 -0
  65. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js +26 -0
  66. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js +49 -0
  67. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_exists.js +32 -0
  68. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js +26 -0
  69. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater.js +34 -0
  70. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater_or_equal.js +34 -0
  71. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js +40 -0
  72. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_is_error.js +48 -0
  73. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js +36 -0
  74. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_object_match.js +4 -0
  75. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js +42 -0
  76. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_strict_equals.js +53 -0
  77. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_string_includes.js +32 -0
  78. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js +38 -0
  79. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assertion_error.js +33 -0
  80. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/equal.js +79 -0
  81. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/mod.js +19 -0
  82. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/assertion_state.js +177 -0
  83. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/build_message.js +101 -0
  84. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff.js +274 -0
  85. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff_str.js +148 -0
  86. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/format.js +37 -0
  87. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/mod.js +10 -0
  88. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/styles.js +172 -0
  89. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/assert_path.js +11 -0
  90. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/constants.js +16 -0
  91. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/dirname.js +14 -0
  92. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +13 -0
  93. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +14 -0
  94. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize_string.js +60 -0
  95. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/strip_trailing_separators.js +15 -0
  96. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_os.js +9 -0
  97. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/basename.js +4 -0
  98. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/common.js +4 -0
  99. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/constants.js +4 -0
  100. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/dirname.js +35 -0
  101. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/extname.js +4 -0
  102. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/format.js +4 -0
  103. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/from_file_url.js +34 -0
  104. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/glob_to_regexp.js +4 -0
  105. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/is_absolute.js +4 -0
  106. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join.js +35 -0
  107. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join_globs.js +4 -0
  108. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/mod.js +7 -0
  109. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize.js +4 -0
  110. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize_glob.js +4 -0
  111. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/parse.js +4 -0
  112. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/_util.js +13 -0
  113. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +54 -0
  114. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +27 -0
  115. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/join.js +47 -0
  116. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +59 -0
  117. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/relative.js +4 -0
  118. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/resolve.js +4 -0
  119. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_file_url.js +4 -0
  120. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_namespaced_path.js +4 -0
  121. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/_util.js +19 -0
  122. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js +75 -0
  123. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js +31 -0
  124. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/join.js +54 -0
  125. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js +87 -0
  126. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/_strip.js +17 -0
  127. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js +38 -0
  128. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/join.js +36 -0
  129. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_chars.js +47 -0
  130. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_dumper_state.js +4 -0
  131. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_loader_state.js +884 -0
  132. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_schema.js +120 -0
  133. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/binary.js +92 -0
  134. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/bool.js +41 -0
  135. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/float.js +58 -0
  136. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/int.js +118 -0
  137. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/map.js +18 -0
  138. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/merge.js +14 -0
  139. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/nil.js +23 -0
  140. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/omap.js +31 -0
  141. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/pairs.js +22 -0
  142. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/regexp.js +29 -0
  143. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/seq.js +14 -0
  144. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/set.js +17 -0
  145. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/str.js +14 -0
  146. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/timestamp.js +57 -0
  147. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/undefined.js +24 -0
  148. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_utils.js +17 -0
  149. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/mod.js +5 -0
  150. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/parse.js +54 -0
  151. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/stringify.js +4 -0
  152. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/AlwaysShrinkableArbitrary.js +30 -0
  153. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayArbitrary.js +203 -0
  154. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayInt64Arbitrary.js +122 -0
  155. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/BigIntArbitrary.js +63 -0
  156. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ConstantArbitrary.js +58 -0
  157. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/FrequencyArbitrary.js +136 -0
  158. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/IntegerArbitrary.js +64 -0
  159. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/LazyArbitrary.js +29 -0
  160. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/StringUnitArbitrary.js +45 -0
  161. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/TupleArbitrary.js +74 -0
  162. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/WithShrinkFromOtherArbitrary.js +40 -0
  163. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/AnyArbitraryBuilder.js +97 -0
  164. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/BoxedArbitraryBuilder.js +13 -0
  165. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/CharacterArbitraryBuilder.js +17 -0
  166. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/RestrictedIntegerArbitraryBuilder.js +23 -0
  167. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.js +32 -0
  168. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/data/GraphemeRanges.js +990 -0
  169. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ArrayInt64.js +98 -0
  170. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BiasNumericRange.js +53 -0
  171. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BuildSlicedGenerator.js +15 -0
  172. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/CustomEqualSet.js +27 -0
  173. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DepthContext.js +24 -0
  174. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleHelpers.js +96 -0
  175. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleOnlyHelpers.js +25 -0
  176. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatHelpers.js +57 -0
  177. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatOnlyHelpers.js +26 -0
  178. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatingOnlyHelpers.js +26 -0
  179. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/GraphemeRangesHelpers.js +58 -0
  180. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/MaxLengthFromMinLength.js +72 -0
  181. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/NoUndefinedAsContext.js +16 -0
  182. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/QualifiedObjectConstraints.js +58 -0
  183. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueSet.js +41 -0
  184. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueZeroSet.js +33 -0
  185. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkBigInt.js +37 -0
  186. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkInteger.js +41 -0
  187. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SlicesForStringBuilder.js +74 -0
  188. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/StrictlyEqualSet.js +38 -0
  189. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/TokenizeString.js +47 -0
  190. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/NoopSlicedGenerator.js +21 -0
  191. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/SlicedBasedGenerator.js +53 -0
  192. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToMap.js +16 -0
  193. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToSet.js +16 -0
  194. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/CodePointsToString.js +17 -0
  195. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToCharString.js +20 -0
  196. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToMappedConstant.js +69 -0
  197. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToPrintableIndex.js +18 -0
  198. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/KeyValuePairsToObject.js +42 -0
  199. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/PatternsToString.js +32 -0
  200. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/TimeToDate.js +30 -0
  201. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/UnboxedToBoxed.js +22 -0
  202. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/anything.js +14 -0
  203. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/array.js +22 -0
  204. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/bigInt.js +38 -0
  205. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/boolean.js +24 -0
  206. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constant.js +13 -0
  207. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constantFrom.js +14 -0
  208. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/date.js +30 -0
  209. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/dictionary.js +27 -0
  210. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/double.js +54 -0
  211. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float.js +60 -0
  212. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float32Array.js +22 -0
  213. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float64Array.js +22 -0
  214. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicode.js +24 -0
  215. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicodeString.js +20 -0
  216. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int16Array.js +15 -0
  217. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int32Array.js +15 -0
  218. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int8Array.js +15 -0
  219. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/integer.js +26 -0
  220. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/letrec.js +28 -0
  221. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/mapToConstant.js +26 -0
  222. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/maxSafeInteger.js +15 -0
  223. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/nat.js +17 -0
  224. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/noBias.js +11 -0
  225. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/oneof.js +31 -0
  226. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/sparseArray.js +68 -0
  227. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/string.js +32 -0
  228. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/tuple.js +13 -0
  229. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint16Array.js +15 -0
  230. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint32Array.js +15 -0
  231. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8Array.js +15 -0
  232. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8ClampedArray.js +15 -0
  233. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uniqueArray.js +47 -0
  234. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Arbitrary.js +184 -0
  235. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Value.js +31 -0
  236. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/precondition/PreconditionFailure.js +19 -0
  237. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IRawProperty.js +12 -0
  238. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IgnoreEqualValuesProperty.js +52 -0
  239. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.generic.js +77 -0
  240. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.js +22 -0
  241. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/SkipAfterProperty.js +61 -0
  242. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/TimeoutProperty.js +52 -0
  243. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/UnbiasedProperty.js +29 -0
  244. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/DecorateProperty.js +26 -0
  245. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Runner.js +61 -0
  246. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/RunnerIterator.js +47 -0
  247. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/SourceValuesIterator.js +35 -0
  248. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Tosser.js +33 -0
  249. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/GlobalParameters.js +12 -0
  250. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/QualifiedParameters.js +121 -0
  251. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/VerbosityLevel.js +14 -0
  252. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/ExecutionStatus.js +14 -0
  253. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/RunExecution.js +116 -0
  254. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/PathWalker.js +24 -0
  255. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/RunDetailsFormatter.js +135 -0
  256. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/symbols.js +15 -0
  257. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/random/generator/Random.js +48 -0
  258. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/LazyIterableIterator.js +24 -0
  259. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/Stream.js +84 -0
  260. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/StreamHelpers.js +50 -0
  261. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/apply.js +28 -0
  262. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/globals.js +309 -0
  263. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/stringify.js +217 -0
  264. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformArrayIntDistribution.js +20 -0
  265. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformBigIntDistribution.js +20 -0
  266. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformIntDistribution.js +20 -0
  267. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformArrayIntDistribution.js +20 -0
  268. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformBigIntDistribution.js +32 -0
  269. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformIntDistribution.js +43 -0
  270. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/ArrayInt.js +139 -0
  271. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformArrayIntDistributionInternal.js +26 -0
  272. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformIntDistributionInternal.js +14 -0
  273. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/LinearCongruential.js +53 -0
  274. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/MersenneTwister.js +114 -0
  275. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/RandomGenerator.js +26 -0
  276. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XorShift.js +83 -0
  277. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XoroShiro.js +83 -0
  278. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand-default.js +44 -0
  279. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand.js +22 -0
  280. package/dist/nodeinfo/client.d.ts +96 -0
  281. package/dist/nodeinfo/client.js +272 -0
  282. package/dist/nodeinfo/client.test.d.ts +2 -0
  283. package/dist/nodeinfo/client.test.js +968 -0
  284. package/dist/nodeinfo/handler.js +46 -0
  285. package/dist/nodeinfo/handler.test.d.ts +2 -0
  286. package/dist/nodeinfo/handler.test.js +94 -0
  287. package/dist/nodeinfo/mod.d.ts +6 -0
  288. package/dist/nodeinfo/mod.js +9 -0
  289. package/dist/nodeinfo/semver.d.ts +78 -0
  290. package/dist/nodeinfo/semver.js +148 -0
  291. package/dist/nodeinfo/semver.test.d.ts +2 -0
  292. package/dist/nodeinfo/semver.test.js +134 -0
  293. package/dist/nodeinfo/types.d.ts +140 -0
  294. package/dist/nodeinfo/types.js +50 -0
  295. package/dist/nodeinfo/types.test.d.ts +2 -0
  296. package/dist/nodeinfo/types.test.js +197 -0
  297. package/dist/runtime/authdocloader.d.ts +56 -0
  298. package/dist/runtime/authdocloader.js +52 -0
  299. package/dist/runtime/authdocloader.test.d.ts +2 -0
  300. package/dist/runtime/authdocloader.test.js +54 -0
  301. package/dist/runtime/contexts.js +4116 -0
  302. package/dist/runtime/docloader.d.ts +211 -0
  303. package/dist/runtime/docloader.js +291 -0
  304. package/dist/runtime/docloader.test.d.ts +2 -0
  305. package/dist/runtime/docloader.test.js +428 -0
  306. package/dist/runtime/key.d.ts +66 -0
  307. package/dist/runtime/key.js +156 -0
  308. package/dist/runtime/key.test.d.ts +2 -0
  309. package/dist/runtime/key.test.js +93 -0
  310. package/dist/runtime/langstr.d.ts +24 -0
  311. package/dist/runtime/langstr.js +32 -0
  312. package/dist/runtime/langstr.test.d.ts +2 -0
  313. package/dist/runtime/langstr.test.js +31 -0
  314. package/dist/runtime/mod.d.ts +7 -0
  315. package/dist/runtime/mod.js +10 -0
  316. package/dist/runtime/multibase/base.js +32 -0
  317. package/dist/runtime/multibase/constants.js +172 -0
  318. package/dist/runtime/multibase/index.js +57 -0
  319. package/dist/runtime/multibase/multibase.test.d.ts +2 -0
  320. package/dist/runtime/multibase/multibase.test.js +351 -0
  321. package/dist/runtime/multibase/rfc4648.js +61 -0
  322. package/dist/runtime/multibase/util.js +21 -0
  323. package/dist/runtime/url.js +67 -0
  324. package/dist/runtime/url.test.d.ts +2 -0
  325. package/dist/runtime/url.test.js +43 -0
  326. package/dist/sig/http.d.ts +143 -0
  327. package/dist/sig/http.js +720 -0
  328. package/dist/sig/http.test.d.ts +2 -0
  329. package/dist/sig/http.test.js +1094 -0
  330. package/dist/sig/key.d.ts +125 -0
  331. package/dist/sig/key.js +257 -0
  332. package/dist/sig/key.test.d.ts +2 -0
  333. package/dist/sig/key.test.js +242 -0
  334. package/dist/sig/ld.d.ts +150 -0
  335. package/dist/sig/ld.js +270 -0
  336. package/dist/sig/ld.test.d.ts +2 -0
  337. package/dist/sig/ld.test.js +224 -0
  338. package/dist/sig/mod.d.ts +8 -0
  339. package/dist/sig/mod.js +11 -0
  340. package/dist/sig/owner.d.ts +74 -0
  341. package/dist/sig/owner.js +89 -0
  342. package/dist/sig/owner.test.d.ts +2 -0
  343. package/dist/sig/owner.test.js +45 -0
  344. package/dist/sig/proof.d.ts +134 -0
  345. package/dist/sig/proof.js +262 -0
  346. package/dist/sig/proof.test.d.ts +2 -0
  347. package/dist/sig/proof.test.js +263 -0
  348. package/dist/testing/context.js +94 -0
  349. package/dist/testing/docloader.js +48 -0
  350. package/dist/testing/docloader.test.d.ts +2 -0
  351. package/dist/testing/docloader.test.js +15 -0
  352. package/dist/testing/keys.js +123 -0
  353. package/dist/testing/mod.js +87 -0
  354. package/dist/vocab/actor.d.ts +133 -0
  355. package/dist/vocab/actor.js +148 -0
  356. package/dist/vocab/actor.test.d.ts +2 -0
  357. package/dist/vocab/actor.test.js +114 -0
  358. package/dist/vocab/constants.d.ts +24 -0
  359. package/dist/vocab/constants.js +17 -0
  360. package/dist/vocab/lookup.d.ts +123 -0
  361. package/dist/vocab/lookup.js +162 -0
  362. package/dist/vocab/lookup.test.d.ts +2 -0
  363. package/dist/vocab/lookup.test.js +113 -0
  364. package/dist/vocab/mod.d.ts +8 -0
  365. package/dist/vocab/mod.js +11 -0
  366. package/dist/vocab/type.d.ts +107 -0
  367. package/dist/vocab/type.js +13 -0
  368. package/dist/vocab/type.test.d.ts +2 -0
  369. package/dist/vocab/type.test.js +24 -0
  370. package/dist/vocab/vocab.d.ts +14448 -0
  371. package/dist/vocab/vocab.js +35617 -0
  372. package/dist/vocab/vocab.test.d.ts +2 -0
  373. package/dist/vocab/vocab.test.js +849 -0
  374. package/dist/webfinger/handler.js +140 -0
  375. package/dist/webfinger/handler.test.d.ts +2 -0
  376. package/dist/webfinger/handler.test.js +483 -0
  377. package/dist/webfinger/jrd.d.ts +60 -0
  378. package/dist/webfinger/lookup.d.ts +47 -0
  379. package/dist/webfinger/lookup.js +131 -0
  380. package/dist/webfinger/lookup.test.d.ts +2 -0
  381. package/dist/webfinger/lookup.test.js +119 -0
  382. package/dist/webfinger/mod.d.ts +5 -0
  383. package/dist/webfinger/mod.js +7 -0
  384. package/dist/x/denokv.js +41 -0
  385. package/dist/x/hono.d.ts +40 -0
  386. package/dist/x/hono.js +48 -0
  387. package/dist/x/sveltekit.d.ts +36 -0
  388. package/dist/x/sveltekit.js +56 -0
  389. package/package.json +57 -60
  390. package/CHANGES.md +0 -3883
  391. package/CONTRIBUTING.md +0 -272
  392. package/FEDERATION.md +0 -85
  393. package/LICENSE +0 -20
  394. package/SECURITY.md +0 -22
  395. package/SPONSORS.md +0 -47
  396. package/esm/_dnt.polyfills.js +0 -15
  397. package/esm/_dnt.shims.js +0 -70
  398. package/esm/compat/mod.js +0 -3
  399. package/esm/compat/transformers.js +0 -95
  400. package/esm/compat/types.js +0 -1
  401. package/esm/deno.js +0 -110
  402. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.js +0 -9
  403. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.js +0 -28
  404. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.js +0 -36
  405. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.js +0 -21
  406. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.js +0 -36
  407. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.js +0 -26
  408. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.js +0 -38
  409. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.js +0 -35
  410. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.js +0 -20
  411. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.js +0 -23
  412. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.js +0 -26
  413. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.js +0 -25
  414. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.js +0 -37
  415. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.js +0 -24
  416. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.js +0 -17
  417. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.js +0 -33
  418. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.js +0 -15
  419. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.js +0 -28
  420. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.js +0 -44
  421. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.js +0 -18
  422. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.js +0 -60
  423. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.js +0 -16
  424. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.js +0 -24
  425. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.js +0 -37
  426. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.js +0 -41
  427. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.js +0 -27
  428. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.js +0 -34
  429. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.js +0 -36
  430. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.js +0 -25
  431. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.js +0 -37
  432. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.js +0 -37
  433. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.js +0 -52
  434. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.js +0 -36
  435. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.js +0 -33
  436. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.js +0 -25
  437. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.js +0 -35
  438. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.js +0 -18
  439. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.js +0 -35
  440. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.js +0 -25
  441. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.js +0 -36
  442. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.js +0 -27
  443. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.js +0 -27
  444. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.js +0 -29
  445. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.js +0 -25
  446. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.js +0 -29
  447. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.js +0 -22
  448. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.js +0 -21
  449. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.js +0 -26
  450. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.js +0 -24
  451. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.js +0 -18
  452. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.js +0 -37
  453. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.js +0 -26
  454. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.js +0 -31
  455. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.js +0 -26
  456. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.js +0 -44
  457. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.js +0 -24
  458. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.js +0 -23
  459. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.js +0 -27
  460. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.js +0 -26
  461. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.js +0 -39
  462. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.js +0 -37
  463. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.js +0 -32
  464. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.js +0 -3
  465. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.js +0 -13
  466. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.js +0 -26
  467. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.js +0 -23
  468. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.js +0 -27
  469. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.js +0 -51
  470. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.js +0 -17
  471. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.js +0 -16
  472. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.js +0 -26
  473. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.js +0 -23
  474. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.js +0 -23
  475. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.js +0 -10
  476. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.js +0 -10
  477. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.js +0 -2
  478. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.js +0 -40
  479. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.js +0 -23
  480. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.js +0 -10
  481. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.js +0 -40
  482. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.js +0 -42
  483. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.js +0 -44
  484. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.js +0 -97
  485. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.js +0 -24
  486. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.js +0 -21
  487. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.js +0 -22
  488. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.js +0 -21
  489. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.js +0 -86
  490. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.js +0 -16
  491. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.js +0 -10
  492. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.js +0 -28
  493. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.js +0 -45
  494. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.js +0 -47
  495. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.js +0 -40
  496. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.js +0 -41
  497. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.js +0 -21
  498. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.js +0 -46
  499. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.js +0 -18
  500. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.js +0 -65
  501. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.js +0 -23
  502. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.js +0 -24
  503. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.js +0 -13
  504. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.js +0 -17
  505. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.js +0 -20
  506. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.js +0 -35
  507. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.js +0 -25
  508. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.js +0 -23
  509. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.js +0 -18
  510. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.js +0 -32
  511. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.js +0 -32
  512. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.js +0 -24
  513. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.js +0 -20
  514. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.js +0 -22
  515. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.js +0 -70
  516. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.js +0 -50
  517. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.js +0 -201
  518. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.js +0 -22
  519. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.js +0 -49
  520. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.js +0 -17
  521. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.js +0 -28
  522. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.js +0 -27
  523. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.js +0 -28
  524. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.js +0 -69
  525. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.js +0 -71
  526. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.js +0 -25
  527. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.js +0 -31
  528. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.js +0 -27
  529. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.js +0 -31
  530. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.js +0 -66
  531. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.js +0 -47
  532. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.js +0 -66
  533. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.js +0 -30
  534. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.js +0 -20
  535. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.js +0 -23
  536. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.js +0 -25
  537. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.js +0 -17
  538. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.js +0 -23
  539. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.js +0 -16
  540. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.js +0 -19
  541. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.js +0 -218
  542. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.js +0 -16
  543. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.js +0 -26
  544. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.js +0 -16
  545. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.js +0 -40
  546. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.js +0 -94
  547. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.js +0 -24
  548. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.js +0 -20
  549. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.js +0 -22
  550. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.js +0 -17
  551. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.js +0 -19
  552. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.js +0 -23
  553. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.js +0 -56
  554. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.js +0 -31
  555. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.js +0 -20
  556. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.js +0 -16
  557. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.js +0 -20
  558. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.js +0 -20
  559. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.js +0 -26
  560. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.js +0 -29
  561. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.js +0 -23
  562. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.js +0 -23
  563. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.js +0 -23
  564. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.js +0 -52
  565. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.js +0 -5
  566. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.js +0 -69
  567. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.js +0 -99
  568. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.js +0 -20
  569. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.js +0 -29
  570. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.js +0 -26
  571. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.js +0 -14
  572. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.js +0 -19
  573. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.js +0 -64
  574. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.js +0 -23
  575. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.js +0 -14
  576. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.js +0 -21
  577. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.js +0 -19
  578. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.js +0 -19
  579. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.js +0 -14
  580. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.js +0 -19
  581. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.js +0 -20
  582. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.js +0 -16
  583. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.js +0 -19
  584. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.js +0 -26
  585. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.js +0 -20
  586. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.js +0 -39
  587. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.js +0 -36
  588. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.js +0 -23
  589. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.js +0 -26
  590. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.js +0 -14
  591. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.js +0 -38
  592. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.js +0 -47
  593. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.js +0 -41
  594. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.js +0 -4
  595. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.js +0 -33
  596. package/esm/federation/builder.js +0 -652
  597. package/esm/federation/callback.js +0 -1
  598. package/esm/federation/collection.js +0 -43
  599. package/esm/federation/context.js +0 -1
  600. package/esm/federation/federation.js +0 -1
  601. package/esm/federation/handler.js +0 -574
  602. package/esm/federation/inbox.js +0 -146
  603. package/esm/federation/keycache.js +0 -42
  604. package/esm/federation/kv.js +0 -52
  605. package/esm/federation/middleware.js +0 -2071
  606. package/esm/federation/mod.js +0 -17
  607. package/esm/federation/mq.js +0 -161
  608. package/esm/federation/negotiation.js +0 -92
  609. package/esm/federation/queue.js +0 -1
  610. package/esm/federation/retry.js +0 -34
  611. package/esm/federation/router.js +0 -97
  612. package/esm/federation/send.js +0 -129
  613. package/esm/mod.js +0 -52
  614. package/esm/nodeinfo/client.js +0 -372
  615. package/esm/nodeinfo/handler.js +0 -49
  616. package/esm/nodeinfo/mod.js +0 -11
  617. package/esm/nodeinfo/semver.js +0 -150
  618. package/esm/nodeinfo/types.js +0 -60
  619. package/esm/package.json +0 -3
  620. package/esm/runtime/contexts.js +0 -4191
  621. package/esm/runtime/docloader.js +0 -351
  622. package/esm/runtime/key.js +0 -153
  623. package/esm/runtime/langstr.js +0 -25
  624. package/esm/runtime/mod.js +0 -10
  625. package/esm/runtime/multibase/base.js +0 -30
  626. package/esm/runtime/multibase/constants.js +0 -78
  627. package/esm/runtime/multibase/index.js +0 -59
  628. package/esm/runtime/multibase/rfc4648.js +0 -79
  629. package/esm/runtime/multibase/util.js +0 -13
  630. package/esm/runtime/url.js +0 -96
  631. package/esm/sig/http.js +0 -845
  632. package/esm/sig/key.js +0 -253
  633. package/esm/sig/ld.js +0 -288
  634. package/esm/sig/mod.js +0 -11
  635. package/esm/sig/owner.js +0 -103
  636. package/esm/sig/proof.js +0 -269
  637. package/esm/vocab/actor.js +0 -168
  638. package/esm/vocab/constants.js +0 -9
  639. package/esm/vocab/lookup.js +0 -174
  640. package/esm/vocab/mod.js +0 -57
  641. package/esm/vocab/type.js +0 -6
  642. package/esm/vocab/vocab.js +0 -51266
  643. package/esm/webfinger/handler.js +0 -173
  644. package/esm/webfinger/jrd.js +0 -1
  645. package/esm/webfinger/lookup.js +0 -136
  646. package/esm/webfinger/mod.js +0 -8
  647. package/esm/x/hono.js +0 -65
  648. package/esm/x/sveltekit.js +0 -65
  649. package/logo.svg +0 -185
  650. package/types/_dnt.polyfills.d.ts +0 -18
  651. package/types/_dnt.polyfills.d.ts.map +0 -1
  652. package/types/_dnt.shims.d.ts +0 -14
  653. package/types/_dnt.shims.d.ts.map +0 -1
  654. package/types/compat/mod.d.ts +0 -4
  655. package/types/compat/mod.d.ts.map +0 -1
  656. package/types/compat/transformers.d.ts +0 -77
  657. package/types/compat/transformers.d.ts.map +0 -1
  658. package/types/compat/types.d.ts +0 -8
  659. package/types/compat/types.d.ts.map +0 -1
  660. package/types/deno.d.ts +0 -84
  661. package/types/deno.d.ts.map +0 -1
  662. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts +0 -2
  663. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts.map +0 -1
  664. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts +0 -17
  665. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts.map +0 -1
  666. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts +0 -25
  667. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts.map +0 -1
  668. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts +0 -15
  669. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts.map +0 -1
  670. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts +0 -29
  671. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts.map +0 -1
  672. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts +0 -24
  673. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts.map +0 -1
  674. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts +0 -34
  675. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts.map +0 -1
  676. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts +0 -30
  677. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts.map +0 -1
  678. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts +0 -18
  679. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts.map +0 -1
  680. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts +0 -18
  681. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts.map +0 -1
  682. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts +0 -20
  683. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts.map +0 -1
  684. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts +0 -20
  685. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts.map +0 -1
  686. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts +0 -85
  687. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts.map +0 -1
  688. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts +0 -22
  689. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts.map +0 -1
  690. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts +0 -16
  691. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts.map +0 -1
  692. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts +0 -18
  693. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts.map +0 -1
  694. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts +0 -24
  695. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts.map +0 -1
  696. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts +0 -47
  697. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts.map +0 -1
  698. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts +0 -34
  699. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts.map +0 -1
  700. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts +0 -33
  701. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts.map +0 -1
  702. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts +0 -61
  703. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts.map +0 -1
  704. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts +0 -53
  705. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts.map +0 -1
  706. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts +0 -20
  707. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts.map +0 -1
  708. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts +0 -35
  709. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts.map +0 -1
  710. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts +0 -36
  711. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts.map +0 -1
  712. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts +0 -25
  713. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts.map +0 -1
  714. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts +0 -32
  715. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts.map +0 -1
  716. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts +0 -29
  717. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts.map +0 -1
  718. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts +0 -47
  719. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts.map +0 -1
  720. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts +0 -44
  721. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts.map +0 -1
  722. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts +0 -44
  723. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts.map +0 -1
  724. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts +0 -36
  725. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts.map +0 -1
  726. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts +0 -24
  727. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts.map +0 -1
  728. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts +0 -18
  729. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts.map +0 -1
  730. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts +0 -18
  731. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts.map +0 -1
  732. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts +0 -18
  733. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts.map +0 -1
  734. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts +0 -16
  735. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts.map +0 -1
  736. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts +0 -20
  737. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts.map +0 -1
  738. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts +0 -16
  739. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts.map +0 -1
  740. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts +0 -34
  741. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts.map +0 -1
  742. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts +0 -66
  743. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts.map +0 -1
  744. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts +0 -24
  745. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts.map +0 -1
  746. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts +0 -23
  747. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts.map +0 -1
  748. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts +0 -19
  749. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts.map +0 -1
  750. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts +0 -20
  751. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts.map +0 -1
  752. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts +0 -91
  753. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts.map +0 -1
  754. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts +0 -19
  755. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts.map +0 -1
  756. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts +0 -24
  757. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts.map +0 -1
  758. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts +0 -22
  759. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts.map +0 -1
  760. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts +0 -17
  761. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts.map +0 -1
  762. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts +0 -28
  763. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts.map +0 -1
  764. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts +0 -17
  765. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts.map +0 -1
  766. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts +0 -19
  767. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts.map +0 -1
  768. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts +0 -16
  769. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts.map +0 -1
  770. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts +0 -49
  771. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts.map +0 -1
  772. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts +0 -22
  773. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts.map +0 -1
  774. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts +0 -19
  775. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts.map +0 -1
  776. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts +0 -21
  777. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts.map +0 -1
  778. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts +0 -20
  779. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts.map +0 -1
  780. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts +0 -105
  781. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts.map +0 -1
  782. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts +0 -32
  783. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts.map +0 -1
  784. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts +0 -71
  785. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts.map +0 -1
  786. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts +0 -2
  787. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts.map +0 -1
  788. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts +0 -9
  789. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts.map +0 -1
  790. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts +0 -27
  791. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts.map +0 -1
  792. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts +0 -22
  793. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts.map +0 -1
  794. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts +0 -26
  795. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts.map +0 -1
  796. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts +0 -24
  797. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts.map +0 -1
  798. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts +0 -16
  799. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts.map +0 -1
  800. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts +0 -15
  801. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts.map +0 -1
  802. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts +0 -16
  803. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts.map +0 -1
  804. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts +0 -19
  805. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts.map +0 -1
  806. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts +0 -18
  807. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts.map +0 -1
  808. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts +0 -8
  809. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts.map +0 -1
  810. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts +0 -8
  811. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts.map +0 -1
  812. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts +0 -3
  813. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts.map +0 -1
  814. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts +0 -30
  815. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts.map +0 -1
  816. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts +0 -20
  817. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts.map +0 -1
  818. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts +0 -11
  819. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts.map +0 -1
  820. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts +0 -30
  821. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts.map +0 -1
  822. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts +0 -125
  823. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts.map +0 -1
  824. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts +0 -139
  825. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts.map +0 -1
  826. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts +0 -74
  827. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts.map +0 -1
  828. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts +0 -131
  829. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts.map +0 -1
  830. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts +0 -143
  831. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts.map +0 -1
  832. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts +0 -21
  833. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts.map +0 -1
  834. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts +0 -22
  835. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts.map +0 -1
  836. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts +0 -123
  837. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts.map +0 -1
  838. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts +0 -15
  839. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts.map +0 -1
  840. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts +0 -11
  841. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts.map +0 -1
  842. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts +0 -34
  843. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts.map +0 -1
  844. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts +0 -552
  845. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts.map +0 -1
  846. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts +0 -629
  847. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts.map +0 -1
  848. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts +0 -32
  849. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts.map +0 -1
  850. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts +0 -77
  851. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts.map +0 -1
  852. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts +0 -18
  853. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts.map +0 -1
  854. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts +0 -48
  855. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts.map +0 -1
  856. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts +0 -16
  857. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts.map +0 -1
  858. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts +0 -66
  859. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts.map +0 -1
  860. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts +0 -31
  861. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts.map +0 -1
  862. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts +0 -26
  863. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts.map +0 -1
  864. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts +0 -14
  865. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts.map +0 -1
  866. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts +0 -15
  867. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts.map +0 -1
  868. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts +0 -17
  869. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts.map +0 -1
  870. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts +0 -24
  871. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts.map +0 -1
  872. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts +0 -22
  873. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts.map +0 -1
  874. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts +0 -29
  875. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts.map +0 -1
  876. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts +0 -25
  877. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts.map +0 -1
  878. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts +0 -37
  879. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts.map +0 -1
  880. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts +0 -37
  881. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts.map +0 -1
  882. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts +0 -19
  883. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts.map +0 -1
  884. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts +0 -15
  885. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts.map +0 -1
  886. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts +0 -17
  887. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts.map +0 -1
  888. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts +0 -30
  889. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts.map +0 -1
  890. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts +0 -48
  891. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts.map +0 -1
  892. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts +0 -44
  893. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts.map +0 -1
  894. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts +0 -20
  895. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts.map +0 -1
  896. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts +0 -36
  897. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts.map +0 -1
  898. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts +0 -18
  899. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts.map +0 -1
  900. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts +0 -20
  901. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts.map +0 -1
  902. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts +0 -19
  903. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts.map +0 -1
  904. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts +0 -20
  905. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts.map +0 -1
  906. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts +0 -42
  907. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts.map +0 -1
  908. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts +0 -50
  909. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts.map +0 -1
  910. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts +0 -19
  911. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts.map +0 -1
  912. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts +0 -21
  913. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts.map +0 -1
  914. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts +0 -19
  915. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts.map +0 -1
  916. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts +0 -21
  917. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts.map +0 -1
  918. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts +0 -53
  919. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts.map +0 -1
  920. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts +0 -44
  921. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts.map +0 -1
  922. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts +0 -53
  923. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts.map +0 -1
  924. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts +0 -31
  925. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts.map +0 -1
  926. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts +0 -19
  927. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts.map +0 -1
  928. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts +0 -18
  929. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts.map +0 -1
  930. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts +0 -24
  931. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts.map +0 -1
  932. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts +0 -16
  933. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts.map +0 -1
  934. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts +0 -20
  935. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts.map +0 -1
  936. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts +0 -15
  937. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts.map +0 -1
  938. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts +0 -16
  939. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts.map +0 -1
  940. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts +0 -37
  941. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts.map +0 -1
  942. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts +0 -15
  943. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts.map +0 -1
  944. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts +0 -20
  945. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts.map +0 -1
  946. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts +0 -15
  947. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts.map +0 -1
  948. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts +0 -30
  949. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts.map +0 -1
  950. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts +0 -55
  951. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts.map +0 -1
  952. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts +0 -23
  953. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts.map +0 -1
  954. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts +0 -19
  955. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts.map +0 -1
  956. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts +0 -21
  957. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts.map +0 -1
  958. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts +0 -16
  959. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts.map +0 -1
  960. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts +0 -18
  961. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts.map +0 -1
  962. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts +0 -22
  963. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts.map +0 -1
  964. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts +0 -44
  965. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts.map +0 -1
  966. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts +0 -30
  967. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts.map +0 -1
  968. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts +0 -19
  969. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts.map +0 -1
  970. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts +0 -15
  971. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts.map +0 -1
  972. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts +0 -19
  973. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts.map +0 -1
  974. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts +0 -19
  975. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts.map +0 -1
  976. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts +0 -25
  977. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts.map +0 -1
  978. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts +0 -28
  979. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts.map +0 -1
  980. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts +0 -22
  981. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts.map +0 -1
  982. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts +0 -22
  983. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts.map +0 -1
  984. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts +0 -22
  985. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts.map +0 -1
  986. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts +0 -38
  987. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts.map +0 -1
  988. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts +0 -6
  989. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts.map +0 -1
  990. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts +0 -63
  991. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts.map +0 -1
  992. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts +0 -80
  993. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts.map +0 -1
  994. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts +0 -16
  995. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts.map +0 -1
  996. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts +0 -27
  997. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts.map +0 -1
  998. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts +0 -18
  999. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts.map +0 -1
  1000. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts +0 -15
  1001. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts.map +0 -1
  1002. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts +0 -16
  1003. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts.map +0 -1
  1004. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts +0 -21
  1005. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts.map +0 -1
  1006. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts +0 -15
  1007. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts.map +0 -1
  1008. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts +0 -13
  1009. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts.map +0 -1
  1010. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts +0 -22
  1011. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts.map +0 -1
  1012. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts +0 -16
  1013. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts.map +0 -1
  1014. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts +0 -16
  1015. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts.map +0 -1
  1016. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts +0 -13
  1017. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts.map +0 -1
  1018. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts +0 -18
  1019. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts.map +0 -1
  1020. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts +0 -16
  1021. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts.map +0 -1
  1022. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts +0 -15
  1023. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts.map +0 -1
  1024. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts +0 -16
  1025. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts.map +0 -1
  1026. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts +0 -15
  1027. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts.map +0 -1
  1028. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts +0 -14
  1029. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts.map +0 -1
  1030. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts +0 -18
  1031. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts.map +0 -1
  1032. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts +0 -18
  1033. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts.map +0 -1
  1034. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts +0 -15
  1035. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts.map +0 -1
  1036. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts +0 -16
  1037. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts.map +0 -1
  1038. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts +0 -13
  1039. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts.map +0 -1
  1040. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts +0 -37
  1041. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts.map +0 -1
  1042. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts +0 -41
  1043. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts.map +0 -1
  1044. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts +0 -34
  1045. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts.map +0 -1
  1046. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts +0 -5
  1047. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts.map +0 -1
  1048. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts +0 -39
  1049. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts.map +0 -1
  1050. package/types/federation/builder.d.ts +0 -79
  1051. package/types/federation/builder.d.ts.map +0 -1
  1052. package/types/federation/callback.d.ts +0 -202
  1053. package/types/federation/callback.d.ts.map +0 -1
  1054. package/types/federation/collection.d.ts +0 -27
  1055. package/types/federation/collection.d.ts.map +0 -1
  1056. package/types/federation/context.d.ts +0 -727
  1057. package/types/federation/context.d.ts.map +0 -1
  1058. package/types/federation/federation.d.ts +0 -682
  1059. package/types/federation/federation.d.ts.map +0 -1
  1060. package/types/federation/handler.d.ts +0 -120
  1061. package/types/federation/handler.d.ts.map +0 -1
  1062. package/types/federation/inbox.d.ts +0 -35
  1063. package/types/federation/inbox.d.ts.map +0 -1
  1064. package/types/federation/keycache.d.ts +0 -18
  1065. package/types/federation/keycache.d.ts.map +0 -1
  1066. package/types/federation/kv.d.ts +0 -66
  1067. package/types/federation/kv.d.ts.map +0 -1
  1068. package/types/federation/middleware.d.ts +0 -262
  1069. package/types/federation/middleware.d.ts.map +0 -1
  1070. package/types/federation/mod.d.ts +0 -19
  1071. package/types/federation/mod.d.ts.map +0 -1
  1072. package/types/federation/mq.d.ts +0 -119
  1073. package/types/federation/mq.d.ts.map +0 -1
  1074. package/types/federation/negotiation.d.ts +0 -37
  1075. package/types/federation/negotiation.d.ts.map +0 -1
  1076. package/types/federation/queue.d.ts +0 -47
  1077. package/types/federation/queue.d.ts.map +0 -1
  1078. package/types/federation/retry.d.ts +0 -64
  1079. package/types/federation/retry.d.ts.map +0 -1
  1080. package/types/federation/router.d.ts +0 -83
  1081. package/types/federation/router.d.ts.map +0 -1
  1082. package/types/federation/send.d.ts +0 -108
  1083. package/types/federation/send.d.ts.map +0 -1
  1084. package/types/mod.d.ts +0 -53
  1085. package/types/mod.d.ts.map +0 -1
  1086. package/types/nodeinfo/client.d.ts +0 -94
  1087. package/types/nodeinfo/client.d.ts.map +0 -1
  1088. package/types/nodeinfo/handler.d.ts +0 -32
  1089. package/types/nodeinfo/handler.d.ts.map +0 -1
  1090. package/types/nodeinfo/mod.d.ts +0 -12
  1091. package/types/nodeinfo/mod.d.ts.map +0 -1
  1092. package/types/nodeinfo/semver.d.ts +0 -71
  1093. package/types/nodeinfo/semver.d.ts.map +0 -1
  1094. package/types/nodeinfo/types.d.ts +0 -133
  1095. package/types/nodeinfo/types.d.ts.map +0 -1
  1096. package/types/runtime/contexts.d.ts +0 -3
  1097. package/types/runtime/contexts.d.ts.map +0 -1
  1098. package/types/runtime/docloader.d.ts +0 -225
  1099. package/types/runtime/docloader.d.ts.map +0 -1
  1100. package/types/runtime/key.d.ts +0 -54
  1101. package/types/runtime/key.d.ts.map +0 -1
  1102. package/types/runtime/langstr.d.ts +0 -15
  1103. package/types/runtime/langstr.d.ts.map +0 -1
  1104. package/types/runtime/mod.d.ts +0 -11
  1105. package/types/runtime/mod.d.ts.map +0 -1
  1106. package/types/runtime/multibase/base.d.ts +0 -15
  1107. package/types/runtime/multibase/base.d.ts.map +0 -1
  1108. package/types/runtime/multibase/constants.d.ts +0 -5
  1109. package/types/runtime/multibase/constants.d.ts.map +0 -1
  1110. package/types/runtime/multibase/index.d.ts +0 -24
  1111. package/types/runtime/multibase/index.d.ts.map +0 -1
  1112. package/types/runtime/multibase/rfc4648.d.ts +0 -6
  1113. package/types/runtime/multibase/rfc4648.d.ts.map +0 -1
  1114. package/types/runtime/multibase/util.d.ts +0 -4
  1115. package/types/runtime/multibase/util.d.ts.map +0 -1
  1116. package/types/runtime/url.d.ts +0 -11
  1117. package/types/runtime/url.d.ts.map +0 -1
  1118. package/types/shim/event.d.ts.map +0 -1
  1119. package/types/sig/http.d.ts +0 -221
  1120. package/types/sig/http.d.ts.map +0 -1
  1121. package/types/sig/key.d.ts +0 -123
  1122. package/types/sig/key.d.ts.map +0 -1
  1123. package/types/sig/ld.d.ts +0 -152
  1124. package/types/sig/ld.d.ts.map +0 -1
  1125. package/types/sig/mod.d.ts +0 -12
  1126. package/types/sig/mod.d.ts.map +0 -1
  1127. package/types/sig/owner.d.ts +0 -65
  1128. package/types/sig/owner.d.ts.map +0 -1
  1129. package/types/sig/proof.d.ts +0 -122
  1130. package/types/sig/proof.d.ts.map +0 -1
  1131. package/types/vocab/actor.d.ts +0 -125
  1132. package/types/vocab/actor.d.ts.map +0 -1
  1133. package/types/vocab/constants.d.ts +0 -10
  1134. package/types/vocab/constants.d.ts.map +0 -1
  1135. package/types/vocab/lookup.d.ts +0 -115
  1136. package/types/vocab/lookup.d.ts.map +0 -1
  1137. package/types/vocab/mod.d.ts +0 -58
  1138. package/types/vocab/mod.d.ts.map +0 -1
  1139. package/types/vocab/type.d.ts +0 -82
  1140. package/types/vocab/type.d.ts.map +0 -1
  1141. package/types/vocab/vocab.d.ts +0 -14437
  1142. package/types/vocab/vocab.d.ts.map +0 -1
  1143. package/types/webfinger/handler.d.ts +0 -56
  1144. package/types/webfinger/handler.d.ts.map +0 -1
  1145. package/types/webfinger/jrd.d.ts +0 -52
  1146. package/types/webfinger/jrd.d.ts.map +0 -1
  1147. package/types/webfinger/lookup.d.ts +0 -39
  1148. package/types/webfinger/lookup.d.ts.map +0 -1
  1149. package/types/webfinger/mod.d.ts +0 -9
  1150. package/types/webfinger/mod.d.ts.map +0 -1
  1151. package/types/x/hono.d.ts +0 -46
  1152. package/types/x/hono.d.ts.map +0 -1
  1153. package/types/x/sveltekit.d.ts +0 -42
  1154. package/types/x/sveltekit.d.ts.map +0 -1
  1155. /package/{esm → dist}/codegen/schema.yaml +0 -0
  1156. /package/{esm → dist}/testing/fixtures/activitypub.academy/users/brauca_darradiul +0 -0
  1157. /package/{esm → dist}/testing/fixtures/example.com/announce +0 -0
  1158. /package/{esm → dist}/testing/fixtures/example.com/collection +0 -0
  1159. /package/{esm → dist}/testing/fixtures/example.com/create +0 -0
  1160. /package/{esm → dist}/testing/fixtures/example.com/cross-origin-actor +0 -0
  1161. /package/{esm → dist}/testing/fixtures/example.com/hong-gildong +0 -0
  1162. /package/{esm → dist}/testing/fixtures/example.com/invite +0 -0
  1163. /package/{esm → dist}/testing/fixtures/example.com/key +0 -0
  1164. /package/{esm → dist}/testing/fixtures/example.com/key2 +0 -0
  1165. /package/{esm → dist}/testing/fixtures/example.com/object +0 -0
  1166. /package/{esm → dist}/testing/fixtures/example.com/orderedcollectionpage +0 -0
  1167. /package/{esm → dist}/testing/fixtures/example.com/paged/a +0 -0
  1168. /package/{esm → dist}/testing/fixtures/example.com/paged/b +0 -0
  1169. /package/{esm → dist}/testing/fixtures/example.com/paged-collection +0 -0
  1170. /package/{esm → dist}/testing/fixtures/example.com/person +0 -0
  1171. /package/{esm → dist}/testing/fixtures/example.com/person2 +0 -0
  1172. /package/{esm → dist}/testing/fixtures/example.com/test +0 -0
  1173. /package/{esm → dist}/testing/fixtures/example.com/users/handle +0 -0
  1174. /package/{esm → dist}/testing/fixtures/example.com/wrong-type +0 -0
  1175. /package/{esm → dist}/testing/fixtures/remote.domain/users/bob +0 -0
  1176. /package/{esm → dist}/testing/fixtures/server.example/users/alice +0 -0
  1177. /package/{esm → dist}/testing/fixtures/w3id.org/identity/v1 +0 -0
  1178. /package/{esm → dist}/testing/fixtures/w3id.org/security/data-integrity/v1 +0 -0
  1179. /package/{esm → dist}/testing/fixtures/w3id.org/security/multikey/v1 +0 -0
  1180. /package/{esm → dist}/testing/fixtures/w3id.org/security/v1 +0 -0
  1181. /package/{esm → dist}/testing/fixtures/wizard.casa/users/hongminhee +0 -0
  1182. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/activitystreams +0 -0
  1183. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/did/v1 +0 -0
  1184. /package/{esm → dist}/vocab/accept.yaml +0 -0
  1185. /package/{esm → dist}/vocab/activity.yaml +0 -0
  1186. /package/{esm → dist}/vocab/add.yaml +0 -0
  1187. /package/{esm → dist}/vocab/announce.yaml +0 -0
  1188. /package/{esm → dist}/vocab/application.yaml +0 -0
  1189. /package/{esm → dist}/vocab/arrive.yaml +0 -0
  1190. /package/{esm → dist}/vocab/article.yaml +0 -0
  1191. /package/{esm → dist}/vocab/audio.yaml +0 -0
  1192. /package/{esm → dist}/vocab/block.yaml +0 -0
  1193. /package/{esm → dist}/vocab/chatmessage.yaml +0 -0
  1194. /package/{esm → dist}/vocab/collection.yaml +0 -0
  1195. /package/{esm → dist}/vocab/collectionpage.yaml +0 -0
  1196. /package/{esm → dist}/vocab/create.yaml +0 -0
  1197. /package/{esm → dist}/vocab/dataintegrityproof.yaml +0 -0
  1198. /package/{esm → dist}/vocab/delete.yaml +0 -0
  1199. /package/{esm → dist}/vocab/didservice.yaml +0 -0
  1200. /package/{esm → dist}/vocab/dislike.yaml +0 -0
  1201. /package/{esm → dist}/vocab/document.yaml +0 -0
  1202. /package/{esm → dist}/vocab/emoji.yaml +0 -0
  1203. /package/{esm → dist}/vocab/emojireact.yaml +0 -0
  1204. /package/{esm → dist}/vocab/endpoints.yaml +0 -0
  1205. /package/{esm → dist}/vocab/event.yaml +0 -0
  1206. /package/{esm → dist}/vocab/export.yaml +0 -0
  1207. /package/{esm → dist}/vocab/flag.yaml +0 -0
  1208. /package/{esm → dist}/vocab/follow.yaml +0 -0
  1209. /package/{esm → dist}/vocab/group.yaml +0 -0
  1210. /package/{esm → dist}/vocab/hashtag.yaml +0 -0
  1211. /package/{esm → dist}/vocab/ignore.yaml +0 -0
  1212. /package/{esm → dist}/vocab/image.yaml +0 -0
  1213. /package/{esm → dist}/vocab/intransitiveactivity.yaml +0 -0
  1214. /package/{esm → dist}/vocab/invite.yaml +0 -0
  1215. /package/{esm → dist}/vocab/join.yaml +0 -0
  1216. /package/{esm → dist}/vocab/key.yaml +0 -0
  1217. /package/{esm → dist}/vocab/leave.yaml +0 -0
  1218. /package/{esm → dist}/vocab/like.yaml +0 -0
  1219. /package/{esm → dist}/vocab/link.yaml +0 -0
  1220. /package/{esm → dist}/vocab/listen.yaml +0 -0
  1221. /package/{esm → dist}/vocab/mention.yaml +0 -0
  1222. /package/{esm → dist}/vocab/move.yaml +0 -0
  1223. /package/{esm → dist}/vocab/multikey.yaml +0 -0
  1224. /package/{esm → dist}/vocab/note.yaml +0 -0
  1225. /package/{esm → dist}/vocab/object.yaml +0 -0
  1226. /package/{esm → dist}/vocab/offer.yaml +0 -0
  1227. /package/{esm → dist}/vocab/orderedcollection.yaml +0 -0
  1228. /package/{esm → dist}/vocab/orderedcollectionpage.yaml +0 -0
  1229. /package/{esm → dist}/vocab/organization.yaml +0 -0
  1230. /package/{esm → dist}/vocab/page.yaml +0 -0
  1231. /package/{esm → dist}/vocab/person.yaml +0 -0
  1232. /package/{esm → dist}/vocab/place.yaml +0 -0
  1233. /package/{esm → dist}/vocab/profile.yaml +0 -0
  1234. /package/{esm → dist}/vocab/propertyvalue.yaml +0 -0
  1235. /package/{esm → dist}/vocab/question.yaml +0 -0
  1236. /package/{esm → dist}/vocab/read.yaml +0 -0
  1237. /package/{esm → dist}/vocab/reject.yaml +0 -0
  1238. /package/{esm → dist}/vocab/relationship.yaml +0 -0
  1239. /package/{esm → dist}/vocab/remove.yaml +0 -0
  1240. /package/{esm → dist}/vocab/service.yaml +0 -0
  1241. /package/{esm → dist}/vocab/source.yaml +0 -0
  1242. /package/{esm → dist}/vocab/tentativeaccept.yaml +0 -0
  1243. /package/{esm → dist}/vocab/tentativereject.yaml +0 -0
  1244. /package/{esm → dist}/vocab/tombstone.yaml +0 -0
  1245. /package/{esm → dist}/vocab/travel.yaml +0 -0
  1246. /package/{esm → dist}/vocab/undo.yaml +0 -0
  1247. /package/{esm → dist}/vocab/update.yaml +0 -0
  1248. /package/{esm → dist}/vocab/video.yaml +0 -0
  1249. /package/{esm → dist}/vocab/view.yaml +0 -0
@@ -0,0 +1,4116 @@
1
+
2
+ import { Temporal } from "@js-temporal/polyfill";
3
+ import { URLPattern } from "urlpattern-polyfill";
4
+
5
+ //#region runtime/contexts.ts
6
+ const preloadedContexts = {
7
+ "https://www.w3.org/ns/activitystreams": { "@context": {
8
+ "@vocab": "_:",
9
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
10
+ "as": "https://www.w3.org/ns/activitystreams#",
11
+ "ldp": "http://www.w3.org/ns/ldp#",
12
+ "vcard": "http://www.w3.org/2006/vcard/ns#",
13
+ "id": "@id",
14
+ "type": "@type",
15
+ "Accept": "as:Accept",
16
+ "Activity": "as:Activity",
17
+ "IntransitiveActivity": "as:IntransitiveActivity",
18
+ "Add": "as:Add",
19
+ "Announce": "as:Announce",
20
+ "Application": "as:Application",
21
+ "Arrive": "as:Arrive",
22
+ "Article": "as:Article",
23
+ "Audio": "as:Audio",
24
+ "Block": "as:Block",
25
+ "Collection": "as:Collection",
26
+ "CollectionPage": "as:CollectionPage",
27
+ "Relationship": "as:Relationship",
28
+ "Create": "as:Create",
29
+ "Delete": "as:Delete",
30
+ "Dislike": "as:Dislike",
31
+ "Document": "as:Document",
32
+ "Event": "as:Event",
33
+ "Follow": "as:Follow",
34
+ "Flag": "as:Flag",
35
+ "Group": "as:Group",
36
+ "Ignore": "as:Ignore",
37
+ "Image": "as:Image",
38
+ "Invite": "as:Invite",
39
+ "Join": "as:Join",
40
+ "Leave": "as:Leave",
41
+ "Like": "as:Like",
42
+ "Link": "as:Link",
43
+ "Mention": "as:Mention",
44
+ "Note": "as:Note",
45
+ "Object": "as:Object",
46
+ "Offer": "as:Offer",
47
+ "OrderedCollection": "as:OrderedCollection",
48
+ "OrderedCollectionPage": "as:OrderedCollectionPage",
49
+ "Organization": "as:Organization",
50
+ "Page": "as:Page",
51
+ "Person": "as:Person",
52
+ "Place": "as:Place",
53
+ "Profile": "as:Profile",
54
+ "Question": "as:Question",
55
+ "Reject": "as:Reject",
56
+ "Remove": "as:Remove",
57
+ "Service": "as:Service",
58
+ "TentativeAccept": "as:TentativeAccept",
59
+ "TentativeReject": "as:TentativeReject",
60
+ "Tombstone": "as:Tombstone",
61
+ "Undo": "as:Undo",
62
+ "Update": "as:Update",
63
+ "Video": "as:Video",
64
+ "View": "as:View",
65
+ "Listen": "as:Listen",
66
+ "Read": "as:Read",
67
+ "Move": "as:Move",
68
+ "Travel": "as:Travel",
69
+ "IsFollowing": "as:IsFollowing",
70
+ "IsFollowedBy": "as:IsFollowedBy",
71
+ "IsContact": "as:IsContact",
72
+ "IsMember": "as:IsMember",
73
+ "subject": {
74
+ "@id": "as:subject",
75
+ "@type": "@id"
76
+ },
77
+ "relationship": {
78
+ "@id": "as:relationship",
79
+ "@type": "@id"
80
+ },
81
+ "actor": {
82
+ "@id": "as:actor",
83
+ "@type": "@id"
84
+ },
85
+ "attributedTo": {
86
+ "@id": "as:attributedTo",
87
+ "@type": "@id"
88
+ },
89
+ "attachment": {
90
+ "@id": "as:attachment",
91
+ "@type": "@id"
92
+ },
93
+ "bcc": {
94
+ "@id": "as:bcc",
95
+ "@type": "@id"
96
+ },
97
+ "bto": {
98
+ "@id": "as:bto",
99
+ "@type": "@id"
100
+ },
101
+ "cc": {
102
+ "@id": "as:cc",
103
+ "@type": "@id"
104
+ },
105
+ "context": {
106
+ "@id": "as:context",
107
+ "@type": "@id"
108
+ },
109
+ "current": {
110
+ "@id": "as:current",
111
+ "@type": "@id"
112
+ },
113
+ "first": {
114
+ "@id": "as:first",
115
+ "@type": "@id"
116
+ },
117
+ "generator": {
118
+ "@id": "as:generator",
119
+ "@type": "@id"
120
+ },
121
+ "icon": {
122
+ "@id": "as:icon",
123
+ "@type": "@id"
124
+ },
125
+ "image": {
126
+ "@id": "as:image",
127
+ "@type": "@id"
128
+ },
129
+ "inReplyTo": {
130
+ "@id": "as:inReplyTo",
131
+ "@type": "@id"
132
+ },
133
+ "items": {
134
+ "@id": "as:items",
135
+ "@type": "@id"
136
+ },
137
+ "instrument": {
138
+ "@id": "as:instrument",
139
+ "@type": "@id"
140
+ },
141
+ "orderedItems": {
142
+ "@id": "as:items",
143
+ "@type": "@id",
144
+ "@container": "@list"
145
+ },
146
+ "last": {
147
+ "@id": "as:last",
148
+ "@type": "@id"
149
+ },
150
+ "location": {
151
+ "@id": "as:location",
152
+ "@type": "@id"
153
+ },
154
+ "next": {
155
+ "@id": "as:next",
156
+ "@type": "@id"
157
+ },
158
+ "object": {
159
+ "@id": "as:object",
160
+ "@type": "@id"
161
+ },
162
+ "oneOf": {
163
+ "@id": "as:oneOf",
164
+ "@type": "@id"
165
+ },
166
+ "anyOf": {
167
+ "@id": "as:anyOf",
168
+ "@type": "@id"
169
+ },
170
+ "closed": {
171
+ "@id": "as:closed",
172
+ "@type": "xsd:dateTime"
173
+ },
174
+ "origin": {
175
+ "@id": "as:origin",
176
+ "@type": "@id"
177
+ },
178
+ "accuracy": {
179
+ "@id": "as:accuracy",
180
+ "@type": "xsd:float"
181
+ },
182
+ "prev": {
183
+ "@id": "as:prev",
184
+ "@type": "@id"
185
+ },
186
+ "preview": {
187
+ "@id": "as:preview",
188
+ "@type": "@id"
189
+ },
190
+ "replies": {
191
+ "@id": "as:replies",
192
+ "@type": "@id"
193
+ },
194
+ "result": {
195
+ "@id": "as:result",
196
+ "@type": "@id"
197
+ },
198
+ "audience": {
199
+ "@id": "as:audience",
200
+ "@type": "@id"
201
+ },
202
+ "partOf": {
203
+ "@id": "as:partOf",
204
+ "@type": "@id"
205
+ },
206
+ "tag": {
207
+ "@id": "as:tag",
208
+ "@type": "@id"
209
+ },
210
+ "target": {
211
+ "@id": "as:target",
212
+ "@type": "@id"
213
+ },
214
+ "to": {
215
+ "@id": "as:to",
216
+ "@type": "@id"
217
+ },
218
+ "url": {
219
+ "@id": "as:url",
220
+ "@type": "@id"
221
+ },
222
+ "altitude": {
223
+ "@id": "as:altitude",
224
+ "@type": "xsd:float"
225
+ },
226
+ "content": "as:content",
227
+ "contentMap": {
228
+ "@id": "as:content",
229
+ "@container": "@language"
230
+ },
231
+ "name": "as:name",
232
+ "nameMap": {
233
+ "@id": "as:name",
234
+ "@container": "@language"
235
+ },
236
+ "duration": {
237
+ "@id": "as:duration",
238
+ "@type": "xsd:duration"
239
+ },
240
+ "endTime": {
241
+ "@id": "as:endTime",
242
+ "@type": "xsd:dateTime"
243
+ },
244
+ "height": {
245
+ "@id": "as:height",
246
+ "@type": "xsd:nonNegativeInteger"
247
+ },
248
+ "href": {
249
+ "@id": "as:href",
250
+ "@type": "@id"
251
+ },
252
+ "hreflang": "as:hreflang",
253
+ "latitude": {
254
+ "@id": "as:latitude",
255
+ "@type": "xsd:float"
256
+ },
257
+ "longitude": {
258
+ "@id": "as:longitude",
259
+ "@type": "xsd:float"
260
+ },
261
+ "mediaType": "as:mediaType",
262
+ "published": {
263
+ "@id": "as:published",
264
+ "@type": "xsd:dateTime"
265
+ },
266
+ "radius": {
267
+ "@id": "as:radius",
268
+ "@type": "xsd:float"
269
+ },
270
+ "rel": "as:rel",
271
+ "startIndex": {
272
+ "@id": "as:startIndex",
273
+ "@type": "xsd:nonNegativeInteger"
274
+ },
275
+ "startTime": {
276
+ "@id": "as:startTime",
277
+ "@type": "xsd:dateTime"
278
+ },
279
+ "summary": "as:summary",
280
+ "summaryMap": {
281
+ "@id": "as:summary",
282
+ "@container": "@language"
283
+ },
284
+ "totalItems": {
285
+ "@id": "as:totalItems",
286
+ "@type": "xsd:nonNegativeInteger"
287
+ },
288
+ "units": "as:units",
289
+ "updated": {
290
+ "@id": "as:updated",
291
+ "@type": "xsd:dateTime"
292
+ },
293
+ "width": {
294
+ "@id": "as:width",
295
+ "@type": "xsd:nonNegativeInteger"
296
+ },
297
+ "describes": {
298
+ "@id": "as:describes",
299
+ "@type": "@id"
300
+ },
301
+ "formerType": {
302
+ "@id": "as:formerType",
303
+ "@type": "@id"
304
+ },
305
+ "deleted": {
306
+ "@id": "as:deleted",
307
+ "@type": "xsd:dateTime"
308
+ },
309
+ "inbox": {
310
+ "@id": "ldp:inbox",
311
+ "@type": "@id"
312
+ },
313
+ "outbox": {
314
+ "@id": "as:outbox",
315
+ "@type": "@id"
316
+ },
317
+ "following": {
318
+ "@id": "as:following",
319
+ "@type": "@id"
320
+ },
321
+ "followers": {
322
+ "@id": "as:followers",
323
+ "@type": "@id"
324
+ },
325
+ "streams": {
326
+ "@id": "as:streams",
327
+ "@type": "@id"
328
+ },
329
+ "preferredUsername": "as:preferredUsername",
330
+ "endpoints": {
331
+ "@id": "as:endpoints",
332
+ "@type": "@id"
333
+ },
334
+ "uploadMedia": {
335
+ "@id": "as:uploadMedia",
336
+ "@type": "@id"
337
+ },
338
+ "proxyUrl": {
339
+ "@id": "as:proxyUrl",
340
+ "@type": "@id"
341
+ },
342
+ "liked": {
343
+ "@id": "as:liked",
344
+ "@type": "@id"
345
+ },
346
+ "oauthAuthorizationEndpoint": {
347
+ "@id": "as:oauthAuthorizationEndpoint",
348
+ "@type": "@id"
349
+ },
350
+ "oauthTokenEndpoint": {
351
+ "@id": "as:oauthTokenEndpoint",
352
+ "@type": "@id"
353
+ },
354
+ "provideClientKey": {
355
+ "@id": "as:provideClientKey",
356
+ "@type": "@id"
357
+ },
358
+ "signClientKey": {
359
+ "@id": "as:signClientKey",
360
+ "@type": "@id"
361
+ },
362
+ "sharedInbox": {
363
+ "@id": "as:sharedInbox",
364
+ "@type": "@id"
365
+ },
366
+ "Public": {
367
+ "@id": "as:Public",
368
+ "@type": "@id"
369
+ },
370
+ "source": "as:source",
371
+ "likes": {
372
+ "@id": "as:likes",
373
+ "@type": "@id"
374
+ },
375
+ "shares": {
376
+ "@id": "as:shares",
377
+ "@type": "@id"
378
+ },
379
+ "alsoKnownAs": {
380
+ "@id": "as:alsoKnownAs",
381
+ "@type": "@id"
382
+ }
383
+ } },
384
+ "https://w3id.org/security/v1": { "@context": {
385
+ "id": "@id",
386
+ "type": "@type",
387
+ "dc": "http://purl.org/dc/terms/",
388
+ "sec": "https://w3id.org/security#",
389
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
390
+ "EcdsaKoblitzSignature2016": "sec:EcdsaKoblitzSignature2016",
391
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
392
+ "EncryptedMessage": "sec:EncryptedMessage",
393
+ "GraphSignature2012": "sec:GraphSignature2012",
394
+ "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
395
+ "LinkedDataSignature2016": "sec:LinkedDataSignature2016",
396
+ "CryptographicKey": "sec:Key",
397
+ "authenticationTag": "sec:authenticationTag",
398
+ "canonicalizationAlgorithm": "sec:canonicalizationAlgorithm",
399
+ "cipherAlgorithm": "sec:cipherAlgorithm",
400
+ "cipherData": "sec:cipherData",
401
+ "cipherKey": "sec:cipherKey",
402
+ "created": {
403
+ "@id": "dc:created",
404
+ "@type": "xsd:dateTime"
405
+ },
406
+ "creator": {
407
+ "@id": "dc:creator",
408
+ "@type": "@id"
409
+ },
410
+ "digestAlgorithm": "sec:digestAlgorithm",
411
+ "digestValue": "sec:digestValue",
412
+ "domain": "sec:domain",
413
+ "encryptionKey": "sec:encryptionKey",
414
+ "expiration": {
415
+ "@id": "sec:expiration",
416
+ "@type": "xsd:dateTime"
417
+ },
418
+ "expires": {
419
+ "@id": "sec:expiration",
420
+ "@type": "xsd:dateTime"
421
+ },
422
+ "initializationVector": "sec:initializationVector",
423
+ "iterationCount": "sec:iterationCount",
424
+ "nonce": "sec:nonce",
425
+ "normalizationAlgorithm": "sec:normalizationAlgorithm",
426
+ "owner": {
427
+ "@id": "sec:owner",
428
+ "@type": "@id"
429
+ },
430
+ "password": "sec:password",
431
+ "privateKey": {
432
+ "@id": "sec:privateKey",
433
+ "@type": "@id"
434
+ },
435
+ "privateKeyPem": "sec:privateKeyPem",
436
+ "publicKey": {
437
+ "@id": "sec:publicKey",
438
+ "@type": "@id"
439
+ },
440
+ "publicKeyBase58": "sec:publicKeyBase58",
441
+ "publicKeyPem": "sec:publicKeyPem",
442
+ "publicKeyWif": "sec:publicKeyWif",
443
+ "publicKeyService": {
444
+ "@id": "sec:publicKeyService",
445
+ "@type": "@id"
446
+ },
447
+ "revoked": {
448
+ "@id": "sec:revoked",
449
+ "@type": "xsd:dateTime"
450
+ },
451
+ "salt": "sec:salt",
452
+ "signature": "sec:signature",
453
+ "signatureAlgorithm": "sec:signingAlgorithm",
454
+ "signatureValue": "sec:signatureValue"
455
+ } },
456
+ "https://w3id.org/security/data-integrity/v1": { "@context": {
457
+ "id": "@id",
458
+ "type": "@type",
459
+ "@protected": true,
460
+ "digestMultibase": {
461
+ "@id": "https://w3id.org/security#digestMultibase",
462
+ "@type": "https://w3id.org/security#multibase"
463
+ },
464
+ "proof": {
465
+ "@id": "https://w3id.org/security#proof",
466
+ "@type": "@id",
467
+ "@container": "@graph"
468
+ },
469
+ "DataIntegrityProof": {
470
+ "@id": "https://w3id.org/security#DataIntegrityProof",
471
+ "@context": {
472
+ "@protected": true,
473
+ "id": "@id",
474
+ "type": "@type",
475
+ "challenge": "https://w3id.org/security#challenge",
476
+ "created": {
477
+ "@id": "http://purl.org/dc/terms/created",
478
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
479
+ },
480
+ "domain": "https://w3id.org/security#domain",
481
+ "expires": {
482
+ "@id": "https://w3id.org/security#expiration",
483
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
484
+ },
485
+ "nonce": "https://w3id.org/security#nonce",
486
+ "proofPurpose": {
487
+ "@id": "https://w3id.org/security#proofPurpose",
488
+ "@type": "@vocab",
489
+ "@context": {
490
+ "@protected": true,
491
+ "id": "@id",
492
+ "type": "@type",
493
+ "assertionMethod": {
494
+ "@id": "https://w3id.org/security#assertionMethod",
495
+ "@type": "@id",
496
+ "@container": "@set"
497
+ },
498
+ "authentication": {
499
+ "@id": "https://w3id.org/security#authenticationMethod",
500
+ "@type": "@id",
501
+ "@container": "@set"
502
+ },
503
+ "capabilityInvocation": {
504
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
505
+ "@type": "@id",
506
+ "@container": "@set"
507
+ },
508
+ "capabilityDelegation": {
509
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
510
+ "@type": "@id",
511
+ "@container": "@set"
512
+ },
513
+ "keyAgreement": {
514
+ "@id": "https://w3id.org/security#keyAgreementMethod",
515
+ "@type": "@id",
516
+ "@container": "@set"
517
+ }
518
+ }
519
+ },
520
+ "cryptosuite": "https://w3id.org/security#cryptosuite",
521
+ "proofValue": {
522
+ "@id": "https://w3id.org/security#proofValue",
523
+ "@type": "https://w3id.org/security#multibase"
524
+ },
525
+ "verificationMethod": {
526
+ "@id": "https://w3id.org/security#verificationMethod",
527
+ "@type": "@id"
528
+ }
529
+ }
530
+ }
531
+ } },
532
+ "https://www.w3.org/ns/did/v1": { "@context": {
533
+ "@protected": true,
534
+ "id": "@id",
535
+ "type": "@type",
536
+ "alsoKnownAs": {
537
+ "@id": "https://www.w3.org/ns/activitystreams#alsoKnownAs",
538
+ "@type": "@id"
539
+ },
540
+ "assertionMethod": {
541
+ "@id": "https://w3id.org/security#assertionMethod",
542
+ "@type": "@id",
543
+ "@container": "@set"
544
+ },
545
+ "authentication": {
546
+ "@id": "https://w3id.org/security#authenticationMethod",
547
+ "@type": "@id",
548
+ "@container": "@set"
549
+ },
550
+ "capabilityDelegation": {
551
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
552
+ "@type": "@id",
553
+ "@container": "@set"
554
+ },
555
+ "capabilityInvocation": {
556
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
557
+ "@type": "@id",
558
+ "@container": "@set"
559
+ },
560
+ "controller": {
561
+ "@id": "https://w3id.org/security#controller",
562
+ "@type": "@id"
563
+ },
564
+ "keyAgreement": {
565
+ "@id": "https://w3id.org/security#keyAgreementMethod",
566
+ "@type": "@id",
567
+ "@container": "@set"
568
+ },
569
+ "service": {
570
+ "@id": "https://www.w3.org/ns/did#service",
571
+ "@type": "@id",
572
+ "@context": {
573
+ "@protected": true,
574
+ "id": "@id",
575
+ "type": "@type",
576
+ "serviceEndpoint": {
577
+ "@id": "https://www.w3.org/ns/did#serviceEndpoint",
578
+ "@type": "@id"
579
+ }
580
+ }
581
+ },
582
+ "verificationMethod": {
583
+ "@id": "https://w3id.org/security#verificationMethod",
584
+ "@type": "@id"
585
+ }
586
+ } },
587
+ "https://w3id.org/security/multikey/v1": { "@context": {
588
+ "id": "@id",
589
+ "type": "@type",
590
+ "@protected": true,
591
+ "Multikey": {
592
+ "@id": "https://w3id.org/security#Multikey",
593
+ "@context": {
594
+ "@protected": true,
595
+ "id": "@id",
596
+ "type": "@type",
597
+ "controller": {
598
+ "@id": "https://w3id.org/security#controller",
599
+ "@type": "@id"
600
+ },
601
+ "revoked": {
602
+ "@id": "https://w3id.org/security#revoked",
603
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
604
+ },
605
+ "expires": {
606
+ "@id": "https://w3id.org/security#expiration",
607
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
608
+ },
609
+ "publicKeyMultibase": {
610
+ "@id": "https://w3id.org/security#publicKeyMultibase",
611
+ "@type": "https://w3id.org/security#multibase"
612
+ },
613
+ "secretKeyMultibase": {
614
+ "@id": "https://w3id.org/security#secretKeyMultibase",
615
+ "@type": "https://w3id.org/security#multibase"
616
+ }
617
+ }
618
+ }
619
+ } },
620
+ "https://w3id.org/identity/v1": { "@context": {
621
+ "id": "@id",
622
+ "type": "@type",
623
+ "cred": "https://w3id.org/credentials#",
624
+ "dc": "http://purl.org/dc/terms/",
625
+ "identity": "https://w3id.org/identity#",
626
+ "perm": "https://w3id.org/permissions#",
627
+ "ps": "https://w3id.org/payswarm#",
628
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
629
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
630
+ "sec": "https://w3id.org/security#",
631
+ "schema": "http://schema.org/",
632
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
633
+ "Group": "https://www.w3.org/ns/activitystreams#Group",
634
+ "claim": {
635
+ "@id": "cred:claim",
636
+ "@type": "@id"
637
+ },
638
+ "credential": {
639
+ "@id": "cred:credential",
640
+ "@type": "@id"
641
+ },
642
+ "issued": {
643
+ "@id": "cred:issued",
644
+ "@type": "xsd:dateTime"
645
+ },
646
+ "issuer": {
647
+ "@id": "cred:issuer",
648
+ "@type": "@id"
649
+ },
650
+ "recipient": {
651
+ "@id": "cred:recipient",
652
+ "@type": "@id"
653
+ },
654
+ "Credential": "cred:Credential",
655
+ "CryptographicKeyCredential": "cred:CryptographicKeyCredential",
656
+ "about": {
657
+ "@id": "schema:about",
658
+ "@type": "@id"
659
+ },
660
+ "address": {
661
+ "@id": "schema:address",
662
+ "@type": "@id"
663
+ },
664
+ "addressCountry": "schema:addressCountry",
665
+ "addressLocality": "schema:addressLocality",
666
+ "addressRegion": "schema:addressRegion",
667
+ "comment": "rdfs:comment",
668
+ "created": {
669
+ "@id": "dc:created",
670
+ "@type": "xsd:dateTime"
671
+ },
672
+ "creator": {
673
+ "@id": "dc:creator",
674
+ "@type": "@id"
675
+ },
676
+ "description": "schema:description",
677
+ "email": "schema:email",
678
+ "familyName": "schema:familyName",
679
+ "givenName": "schema:givenName",
680
+ "image": {
681
+ "@id": "schema:image",
682
+ "@type": "@id"
683
+ },
684
+ "label": "rdfs:label",
685
+ "name": "schema:name",
686
+ "postalCode": "schema:postalCode",
687
+ "streetAddress": "schema:streetAddress",
688
+ "title": "dc:title",
689
+ "url": {
690
+ "@id": "schema:url",
691
+ "@type": "@id"
692
+ },
693
+ "Person": "schema:Person",
694
+ "PostalAddress": "schema:PostalAddress",
695
+ "Organization": "schema:Organization",
696
+ "identityService": {
697
+ "@id": "identity:identityService",
698
+ "@type": "@id"
699
+ },
700
+ "idp": {
701
+ "@id": "identity:idp",
702
+ "@type": "@id"
703
+ },
704
+ "Identity": "identity:Identity",
705
+ "paymentProcessor": "ps:processor",
706
+ "preferences": {
707
+ "@id": "ps:preferences",
708
+ "@type": "@vocab"
709
+ },
710
+ "cipherAlgorithm": "sec:cipherAlgorithm",
711
+ "cipherData": "sec:cipherData",
712
+ "cipherKey": "sec:cipherKey",
713
+ "digestAlgorithm": "sec:digestAlgorithm",
714
+ "digestValue": "sec:digestValue",
715
+ "domain": "sec:domain",
716
+ "expires": {
717
+ "@id": "sec:expiration",
718
+ "@type": "xsd:dateTime"
719
+ },
720
+ "initializationVector": "sec:initializationVector",
721
+ "member": {
722
+ "@id": "schema:member",
723
+ "@type": "@id"
724
+ },
725
+ "memberOf": {
726
+ "@id": "schema:memberOf",
727
+ "@type": "@id"
728
+ },
729
+ "nonce": "sec:nonce",
730
+ "normalizationAlgorithm": "sec:normalizationAlgorithm",
731
+ "owner": {
732
+ "@id": "sec:owner",
733
+ "@type": "@id"
734
+ },
735
+ "password": "sec:password",
736
+ "privateKey": {
737
+ "@id": "sec:privateKey",
738
+ "@type": "@id"
739
+ },
740
+ "privateKeyPem": "sec:privateKeyPem",
741
+ "publicKey": {
742
+ "@id": "sec:publicKey",
743
+ "@type": "@id"
744
+ },
745
+ "publicKeyPem": "sec:publicKeyPem",
746
+ "publicKeyService": {
747
+ "@id": "sec:publicKeyService",
748
+ "@type": "@id"
749
+ },
750
+ "revoked": {
751
+ "@id": "sec:revoked",
752
+ "@type": "xsd:dateTime"
753
+ },
754
+ "signature": "sec:signature",
755
+ "signatureAlgorithm": "sec:signatureAlgorithm",
756
+ "signatureValue": "sec:signatureValue",
757
+ "CryptographicKey": "sec:Key",
758
+ "EncryptedMessage": "sec:EncryptedMessage",
759
+ "GraphSignature2012": "sec:GraphSignature2012",
760
+ "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
761
+ "accessControl": {
762
+ "@id": "perm:accessControl",
763
+ "@type": "@id"
764
+ },
765
+ "writePermission": {
766
+ "@id": "perm:writePermission",
767
+ "@type": "@id"
768
+ }
769
+ } },
770
+ "https://purl.archive.org/socialweb/webfinger": { "@context": {
771
+ "wf": "https://purl.archive.org/socialweb/webfinger#",
772
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
773
+ "webfinger": {
774
+ "@id": "wf:webfinger",
775
+ "@type": "xsd:string"
776
+ }
777
+ } },
778
+ "http://schema.org/": { "@context": {
779
+ "type": "@type",
780
+ "id": "@id",
781
+ "HTML": { "@id": "rdf:HTML" },
782
+ "@vocab": "http://schema.org/",
783
+ "csvw": "http://www.w3.org/ns/csvw#",
784
+ "dc": "http://purl.org/dc/elements/1.1/",
785
+ "dcat": "http://www.w3.org/ns/dcat#",
786
+ "dcmitype": "http://purl.org/dc/dcmitype/",
787
+ "dcterms": "http://purl.org/dc/terms/",
788
+ "dcam": "http://purl.org/dc/dcam/",
789
+ "doap": "http://usefulinc.com/ns/doap#",
790
+ "foaf": "http://xmlns.com/foaf/0.1/",
791
+ "odrl": "http://www.w3.org/ns/odrl/2/",
792
+ "org": "http://www.w3.org/ns/org#",
793
+ "owl": "http://www.w3.org/2002/07/owl#",
794
+ "prof": "http://www.w3.org/ns/dx/prof/",
795
+ "prov": "http://www.w3.org/ns/prov#",
796
+ "qb": "http://purl.org/linked-data/cube#",
797
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
798
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
799
+ "schema": "http://schema.org/",
800
+ "sh": "http://www.w3.org/ns/shacl#",
801
+ "skos": "http://www.w3.org/2004/02/skos/core#",
802
+ "sosa": "http://www.w3.org/ns/sosa/",
803
+ "ssn": "http://www.w3.org/ns/ssn/",
804
+ "time": "http://www.w3.org/2006/time#",
805
+ "vann": "http://purl.org/vocab/vann/",
806
+ "void": "http://rdfs.org/ns/void#",
807
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
808
+ "xml": "http://www.w3.org/XML/1998/namespace",
809
+ "dct": "http://purl.org/dc/terms/",
810
+ "dctype": "http://purl.org/dc/dcmitype/",
811
+ "3DModel": { "@id": "schema:3DModel" },
812
+ "AMRadioChannel": { "@id": "schema:AMRadioChannel" },
813
+ "APIReference": { "@id": "schema:APIReference" },
814
+ "Abdomen": { "@id": "schema:Abdomen" },
815
+ "AboutPage": { "@id": "schema:AboutPage" },
816
+ "AcceptAction": { "@id": "schema:AcceptAction" },
817
+ "Accommodation": { "@id": "schema:Accommodation" },
818
+ "AccountingService": { "@id": "schema:AccountingService" },
819
+ "AchieveAction": { "@id": "schema:AchieveAction" },
820
+ "Action": { "@id": "schema:Action" },
821
+ "ActionAccessSpecification": { "@id": "schema:ActionAccessSpecification" },
822
+ "ActionStatusType": { "@id": "schema:ActionStatusType" },
823
+ "ActivateAction": { "@id": "schema:ActivateAction" },
824
+ "ActivationFee": { "@id": "schema:ActivationFee" },
825
+ "ActiveActionStatus": { "@id": "schema:ActiveActionStatus" },
826
+ "ActiveNotRecruiting": { "@id": "schema:ActiveNotRecruiting" },
827
+ "AddAction": { "@id": "schema:AddAction" },
828
+ "AdministrativeArea": { "@id": "schema:AdministrativeArea" },
829
+ "AdultEntertainment": { "@id": "schema:AdultEntertainment" },
830
+ "AdultOrientedEnumeration": { "@id": "schema:AdultOrientedEnumeration" },
831
+ "AdvertiserContentArticle": { "@id": "schema:AdvertiserContentArticle" },
832
+ "AerobicActivity": { "@id": "schema:AerobicActivity" },
833
+ "AggregateOffer": { "@id": "schema:AggregateOffer" },
834
+ "AggregateRating": { "@id": "schema:AggregateRating" },
835
+ "AgreeAction": { "@id": "schema:AgreeAction" },
836
+ "Airline": { "@id": "schema:Airline" },
837
+ "Airport": { "@id": "schema:Airport" },
838
+ "AlbumRelease": { "@id": "schema:AlbumRelease" },
839
+ "AlcoholConsideration": { "@id": "schema:AlcoholConsideration" },
840
+ "AlgorithmicMediaDigitalSource": { "@id": "schema:AlgorithmicMediaDigitalSource" },
841
+ "AlgorithmicallyEnhancedDigitalSource": { "@id": "schema:AlgorithmicallyEnhancedDigitalSource" },
842
+ "AlignmentObject": { "@id": "schema:AlignmentObject" },
843
+ "AllWheelDriveConfiguration": { "@id": "schema:AllWheelDriveConfiguration" },
844
+ "AllergiesHealthAspect": { "@id": "schema:AllergiesHealthAspect" },
845
+ "AllocateAction": { "@id": "schema:AllocateAction" },
846
+ "AmpStory": { "@id": "schema:AmpStory" },
847
+ "AmusementPark": { "@id": "schema:AmusementPark" },
848
+ "AnaerobicActivity": { "@id": "schema:AnaerobicActivity" },
849
+ "AnalysisNewsArticle": { "@id": "schema:AnalysisNewsArticle" },
850
+ "AnatomicalStructure": { "@id": "schema:AnatomicalStructure" },
851
+ "AnatomicalSystem": { "@id": "schema:AnatomicalSystem" },
852
+ "AndroidPlatform": { "@id": "schema:AndroidPlatform" },
853
+ "Anesthesia": { "@id": "schema:Anesthesia" },
854
+ "AnimalShelter": { "@id": "schema:AnimalShelter" },
855
+ "Answer": { "@id": "schema:Answer" },
856
+ "Apartment": { "@id": "schema:Apartment" },
857
+ "ApartmentComplex": { "@id": "schema:ApartmentComplex" },
858
+ "Appearance": { "@id": "schema:Appearance" },
859
+ "AppendAction": { "@id": "schema:AppendAction" },
860
+ "ApplyAction": { "@id": "schema:ApplyAction" },
861
+ "ApprovedIndication": { "@id": "schema:ApprovedIndication" },
862
+ "Aquarium": { "@id": "schema:Aquarium" },
863
+ "ArchiveComponent": { "@id": "schema:ArchiveComponent" },
864
+ "ArchiveOrganization": { "@id": "schema:ArchiveOrganization" },
865
+ "ArriveAction": { "@id": "schema:ArriveAction" },
866
+ "ArtGallery": { "@id": "schema:ArtGallery" },
867
+ "Artery": { "@id": "schema:Artery" },
868
+ "Article": { "@id": "schema:Article" },
869
+ "AskAction": { "@id": "schema:AskAction" },
870
+ "AskPublicNewsArticle": { "@id": "schema:AskPublicNewsArticle" },
871
+ "AssessAction": { "@id": "schema:AssessAction" },
872
+ "AssignAction": { "@id": "schema:AssignAction" },
873
+ "Atlas": { "@id": "schema:Atlas" },
874
+ "Attorney": { "@id": "schema:Attorney" },
875
+ "Audience": { "@id": "schema:Audience" },
876
+ "AudioObject": { "@id": "schema:AudioObject" },
877
+ "AudioObjectSnapshot": { "@id": "schema:AudioObjectSnapshot" },
878
+ "Audiobook": { "@id": "schema:Audiobook" },
879
+ "AudiobookFormat": { "@id": "schema:AudiobookFormat" },
880
+ "AuthoritativeLegalValue": { "@id": "schema:AuthoritativeLegalValue" },
881
+ "AuthorizeAction": { "@id": "schema:AuthorizeAction" },
882
+ "AutoBodyShop": { "@id": "schema:AutoBodyShop" },
883
+ "AutoDealer": { "@id": "schema:AutoDealer" },
884
+ "AutoPartsStore": { "@id": "schema:AutoPartsStore" },
885
+ "AutoRental": { "@id": "schema:AutoRental" },
886
+ "AutoRepair": { "@id": "schema:AutoRepair" },
887
+ "AutoWash": { "@id": "schema:AutoWash" },
888
+ "AutomatedTeller": { "@id": "schema:AutomatedTeller" },
889
+ "AutomotiveBusiness": { "@id": "schema:AutomotiveBusiness" },
890
+ "Ayurvedic": { "@id": "schema:Ayurvedic" },
891
+ "BackOrder": { "@id": "schema:BackOrder" },
892
+ "BackgroundNewsArticle": { "@id": "schema:BackgroundNewsArticle" },
893
+ "Bacteria": { "@id": "schema:Bacteria" },
894
+ "Bakery": { "@id": "schema:Bakery" },
895
+ "Balance": { "@id": "schema:Balance" },
896
+ "BankAccount": { "@id": "schema:BankAccount" },
897
+ "BankOrCreditUnion": { "@id": "schema:BankOrCreditUnion" },
898
+ "BarOrPub": { "@id": "schema:BarOrPub" },
899
+ "Barcode": { "@id": "schema:Barcode" },
900
+ "BasicIncome": { "@id": "schema:BasicIncome" },
901
+ "Beach": { "@id": "schema:Beach" },
902
+ "BeautySalon": { "@id": "schema:BeautySalon" },
903
+ "BedAndBreakfast": { "@id": "schema:BedAndBreakfast" },
904
+ "BedDetails": { "@id": "schema:BedDetails" },
905
+ "BedType": { "@id": "schema:BedType" },
906
+ "BefriendAction": { "@id": "schema:BefriendAction" },
907
+ "BenefitsHealthAspect": { "@id": "schema:BenefitsHealthAspect" },
908
+ "BikeStore": { "@id": "schema:BikeStore" },
909
+ "BioChemEntity": { "@id": "schema:BioChemEntity" },
910
+ "Blog": { "@id": "schema:Blog" },
911
+ "BlogPosting": { "@id": "schema:BlogPosting" },
912
+ "BloodTest": { "@id": "schema:BloodTest" },
913
+ "BoardingPolicyType": { "@id": "schema:BoardingPolicyType" },
914
+ "BoatReservation": { "@id": "schema:BoatReservation" },
915
+ "BoatTerminal": { "@id": "schema:BoatTerminal" },
916
+ "BoatTrip": { "@id": "schema:BoatTrip" },
917
+ "BodyMeasurementArm": { "@id": "schema:BodyMeasurementArm" },
918
+ "BodyMeasurementBust": { "@id": "schema:BodyMeasurementBust" },
919
+ "BodyMeasurementChest": { "@id": "schema:BodyMeasurementChest" },
920
+ "BodyMeasurementFoot": { "@id": "schema:BodyMeasurementFoot" },
921
+ "BodyMeasurementHand": { "@id": "schema:BodyMeasurementHand" },
922
+ "BodyMeasurementHead": { "@id": "schema:BodyMeasurementHead" },
923
+ "BodyMeasurementHeight": { "@id": "schema:BodyMeasurementHeight" },
924
+ "BodyMeasurementHips": { "@id": "schema:BodyMeasurementHips" },
925
+ "BodyMeasurementInsideLeg": { "@id": "schema:BodyMeasurementInsideLeg" },
926
+ "BodyMeasurementNeck": { "@id": "schema:BodyMeasurementNeck" },
927
+ "BodyMeasurementTypeEnumeration": { "@id": "schema:BodyMeasurementTypeEnumeration" },
928
+ "BodyMeasurementUnderbust": { "@id": "schema:BodyMeasurementUnderbust" },
929
+ "BodyMeasurementWaist": { "@id": "schema:BodyMeasurementWaist" },
930
+ "BodyMeasurementWeight": { "@id": "schema:BodyMeasurementWeight" },
931
+ "BodyOfWater": { "@id": "schema:BodyOfWater" },
932
+ "Bone": { "@id": "schema:Bone" },
933
+ "Book": { "@id": "schema:Book" },
934
+ "BookFormatType": { "@id": "schema:BookFormatType" },
935
+ "BookSeries": { "@id": "schema:BookSeries" },
936
+ "BookStore": { "@id": "schema:BookStore" },
937
+ "BookmarkAction": { "@id": "schema:BookmarkAction" },
938
+ "Boolean": { "@id": "schema:Boolean" },
939
+ "BorrowAction": { "@id": "schema:BorrowAction" },
940
+ "BowlingAlley": { "@id": "schema:BowlingAlley" },
941
+ "BrainStructure": { "@id": "schema:BrainStructure" },
942
+ "Brand": { "@id": "schema:Brand" },
943
+ "BreadcrumbList": { "@id": "schema:BreadcrumbList" },
944
+ "Brewery": { "@id": "schema:Brewery" },
945
+ "Bridge": { "@id": "schema:Bridge" },
946
+ "BroadcastChannel": { "@id": "schema:BroadcastChannel" },
947
+ "BroadcastEvent": { "@id": "schema:BroadcastEvent" },
948
+ "BroadcastFrequencySpecification": { "@id": "schema:BroadcastFrequencySpecification" },
949
+ "BroadcastRelease": { "@id": "schema:BroadcastRelease" },
950
+ "BroadcastService": { "@id": "schema:BroadcastService" },
951
+ "BrokerageAccount": { "@id": "schema:BrokerageAccount" },
952
+ "BuddhistTemple": { "@id": "schema:BuddhistTemple" },
953
+ "BusOrCoach": { "@id": "schema:BusOrCoach" },
954
+ "BusReservation": { "@id": "schema:BusReservation" },
955
+ "BusStation": { "@id": "schema:BusStation" },
956
+ "BusStop": { "@id": "schema:BusStop" },
957
+ "BusTrip": { "@id": "schema:BusTrip" },
958
+ "BusinessAudience": { "@id": "schema:BusinessAudience" },
959
+ "BusinessEntityType": { "@id": "schema:BusinessEntityType" },
960
+ "BusinessEvent": { "@id": "schema:BusinessEvent" },
961
+ "BusinessFunction": { "@id": "schema:BusinessFunction" },
962
+ "BusinessSupport": { "@id": "schema:BusinessSupport" },
963
+ "BuyAction": { "@id": "schema:BuyAction" },
964
+ "ByBankTransferInAdvance": { "@id": "schema:ByBankTransferInAdvance" },
965
+ "ByInvoice": { "@id": "schema:ByInvoice" },
966
+ "CDCPMDRecord": { "@id": "schema:CDCPMDRecord" },
967
+ "CDFormat": { "@id": "schema:CDFormat" },
968
+ "COD": { "@id": "schema:COD" },
969
+ "CT": { "@id": "schema:CT" },
970
+ "CableOrSatelliteService": { "@id": "schema:CableOrSatelliteService" },
971
+ "CafeOrCoffeeShop": { "@id": "schema:CafeOrCoffeeShop" },
972
+ "Campground": { "@id": "schema:Campground" },
973
+ "CampingPitch": { "@id": "schema:CampingPitch" },
974
+ "Canal": { "@id": "schema:Canal" },
975
+ "CancelAction": { "@id": "schema:CancelAction" },
976
+ "Car": { "@id": "schema:Car" },
977
+ "CarUsageType": { "@id": "schema:CarUsageType" },
978
+ "Cardiovascular": { "@id": "schema:Cardiovascular" },
979
+ "CardiovascularExam": { "@id": "schema:CardiovascularExam" },
980
+ "CaseSeries": { "@id": "schema:CaseSeries" },
981
+ "Cash": { "@id": "schema:Cash" },
982
+ "Casino": { "@id": "schema:Casino" },
983
+ "CassetteFormat": { "@id": "schema:CassetteFormat" },
984
+ "CategoryCode": { "@id": "schema:CategoryCode" },
985
+ "CategoryCodeSet": { "@id": "schema:CategoryCodeSet" },
986
+ "CatholicChurch": { "@id": "schema:CatholicChurch" },
987
+ "CausesHealthAspect": { "@id": "schema:CausesHealthAspect" },
988
+ "Cemetery": { "@id": "schema:Cemetery" },
989
+ "Certification": { "@id": "schema:Certification" },
990
+ "CertificationActive": { "@id": "schema:CertificationActive" },
991
+ "CertificationInactive": { "@id": "schema:CertificationInactive" },
992
+ "CertificationStatusEnumeration": { "@id": "schema:CertificationStatusEnumeration" },
993
+ "Chapter": { "@id": "schema:Chapter" },
994
+ "CharitableIncorporatedOrganization": { "@id": "schema:CharitableIncorporatedOrganization" },
995
+ "CheckAction": { "@id": "schema:CheckAction" },
996
+ "CheckInAction": { "@id": "schema:CheckInAction" },
997
+ "CheckInAdvance": { "@id": "schema:CheckInAdvance" },
998
+ "CheckOutAction": { "@id": "schema:CheckOutAction" },
999
+ "CheckoutPage": { "@id": "schema:CheckoutPage" },
1000
+ "ChemicalSubstance": { "@id": "schema:ChemicalSubstance" },
1001
+ "ChildCare": { "@id": "schema:ChildCare" },
1002
+ "ChildrensEvent": { "@id": "schema:ChildrensEvent" },
1003
+ "Chiropractic": { "@id": "schema:Chiropractic" },
1004
+ "ChooseAction": { "@id": "schema:ChooseAction" },
1005
+ "Church": { "@id": "schema:Church" },
1006
+ "City": { "@id": "schema:City" },
1007
+ "CityHall": { "@id": "schema:CityHall" },
1008
+ "CivicStructure": { "@id": "schema:CivicStructure" },
1009
+ "Claim": { "@id": "schema:Claim" },
1010
+ "ClaimReview": { "@id": "schema:ClaimReview" },
1011
+ "Class": { "@id": "schema:Class" },
1012
+ "CleaningFee": { "@id": "schema:CleaningFee" },
1013
+ "Clinician": { "@id": "schema:Clinician" },
1014
+ "Clip": { "@id": "schema:Clip" },
1015
+ "ClothingStore": { "@id": "schema:ClothingStore" },
1016
+ "CoOp": { "@id": "schema:CoOp" },
1017
+ "Code": { "@id": "schema:Code" },
1018
+ "CohortStudy": { "@id": "schema:CohortStudy" },
1019
+ "Collection": { "@id": "schema:Collection" },
1020
+ "CollectionPage": { "@id": "schema:CollectionPage" },
1021
+ "CollegeOrUniversity": { "@id": "schema:CollegeOrUniversity" },
1022
+ "ComedyClub": { "@id": "schema:ComedyClub" },
1023
+ "ComedyEvent": { "@id": "schema:ComedyEvent" },
1024
+ "ComicCoverArt": { "@id": "schema:ComicCoverArt" },
1025
+ "ComicIssue": { "@id": "schema:ComicIssue" },
1026
+ "ComicSeries": { "@id": "schema:ComicSeries" },
1027
+ "ComicStory": { "@id": "schema:ComicStory" },
1028
+ "Comment": { "@id": "schema:Comment" },
1029
+ "CommentAction": { "@id": "schema:CommentAction" },
1030
+ "CommentPermission": { "@id": "schema:CommentPermission" },
1031
+ "CommunicateAction": { "@id": "schema:CommunicateAction" },
1032
+ "CommunityHealth": { "@id": "schema:CommunityHealth" },
1033
+ "CompilationAlbum": { "@id": "schema:CompilationAlbum" },
1034
+ "CompleteDataFeed": { "@id": "schema:CompleteDataFeed" },
1035
+ "Completed": { "@id": "schema:Completed" },
1036
+ "CompletedActionStatus": { "@id": "schema:CompletedActionStatus" },
1037
+ "CompositeCaptureDigitalSource": { "@id": "schema:CompositeCaptureDigitalSource" },
1038
+ "CompositeSyntheticDigitalSource": { "@id": "schema:CompositeSyntheticDigitalSource" },
1039
+ "CompositeWithTrainedAlgorithmicMediaDigitalSource": { "@id": "schema:CompositeWithTrainedAlgorithmicMediaDigitalSource" },
1040
+ "CompoundPriceSpecification": { "@id": "schema:CompoundPriceSpecification" },
1041
+ "ComputerLanguage": { "@id": "schema:ComputerLanguage" },
1042
+ "ComputerStore": { "@id": "schema:ComputerStore" },
1043
+ "ConfirmAction": { "@id": "schema:ConfirmAction" },
1044
+ "Consortium": { "@id": "schema:Consortium" },
1045
+ "ConstraintNode": { "@id": "schema:ConstraintNode" },
1046
+ "ConsumeAction": { "@id": "schema:ConsumeAction" },
1047
+ "ContactPage": { "@id": "schema:ContactPage" },
1048
+ "ContactPoint": { "@id": "schema:ContactPoint" },
1049
+ "ContactPointOption": { "@id": "schema:ContactPointOption" },
1050
+ "ContagiousnessHealthAspect": { "@id": "schema:ContagiousnessHealthAspect" },
1051
+ "Continent": { "@id": "schema:Continent" },
1052
+ "ControlAction": { "@id": "schema:ControlAction" },
1053
+ "ConvenienceStore": { "@id": "schema:ConvenienceStore" },
1054
+ "Conversation": { "@id": "schema:Conversation" },
1055
+ "CookAction": { "@id": "schema:CookAction" },
1056
+ "Corporation": { "@id": "schema:Corporation" },
1057
+ "CorrectionComment": { "@id": "schema:CorrectionComment" },
1058
+ "Country": { "@id": "schema:Country" },
1059
+ "Course": { "@id": "schema:Course" },
1060
+ "CourseInstance": { "@id": "schema:CourseInstance" },
1061
+ "Courthouse": { "@id": "schema:Courthouse" },
1062
+ "CoverArt": { "@id": "schema:CoverArt" },
1063
+ "CovidTestingFacility": { "@id": "schema:CovidTestingFacility" },
1064
+ "CreateAction": { "@id": "schema:CreateAction" },
1065
+ "CreativeWork": { "@id": "schema:CreativeWork" },
1066
+ "CreativeWorkSeason": { "@id": "schema:CreativeWorkSeason" },
1067
+ "CreativeWorkSeries": { "@id": "schema:CreativeWorkSeries" },
1068
+ "CreditCard": { "@id": "schema:CreditCard" },
1069
+ "Crematorium": { "@id": "schema:Crematorium" },
1070
+ "CriticReview": { "@id": "schema:CriticReview" },
1071
+ "CrossSectional": { "@id": "schema:CrossSectional" },
1072
+ "CssSelectorType": { "@id": "schema:CssSelectorType" },
1073
+ "CurrencyConversionService": { "@id": "schema:CurrencyConversionService" },
1074
+ "DDxElement": { "@id": "schema:DDxElement" },
1075
+ "DJMixAlbum": { "@id": "schema:DJMixAlbum" },
1076
+ "DVDFormat": { "@id": "schema:DVDFormat" },
1077
+ "DamagedCondition": { "@id": "schema:DamagedCondition" },
1078
+ "DanceEvent": { "@id": "schema:DanceEvent" },
1079
+ "DanceGroup": { "@id": "schema:DanceGroup" },
1080
+ "DangerousGoodConsideration": { "@id": "schema:DangerousGoodConsideration" },
1081
+ "DataCatalog": { "@id": "schema:DataCatalog" },
1082
+ "DataDownload": { "@id": "schema:DataDownload" },
1083
+ "DataDrivenMediaDigitalSource": { "@id": "schema:DataDrivenMediaDigitalSource" },
1084
+ "DataFeed": { "@id": "schema:DataFeed" },
1085
+ "DataFeedItem": { "@id": "schema:DataFeedItem" },
1086
+ "DataType": { "@id": "schema:DataType" },
1087
+ "Dataset": { "@id": "schema:Dataset" },
1088
+ "Date": { "@id": "schema:Date" },
1089
+ "DateTime": { "@id": "schema:DateTime" },
1090
+ "DatedMoneySpecification": { "@id": "schema:DatedMoneySpecification" },
1091
+ "DayOfWeek": { "@id": "schema:DayOfWeek" },
1092
+ "DaySpa": { "@id": "schema:DaySpa" },
1093
+ "DeactivateAction": { "@id": "schema:DeactivateAction" },
1094
+ "DecontextualizedContent": { "@id": "schema:DecontextualizedContent" },
1095
+ "DefenceEstablishment": { "@id": "schema:DefenceEstablishment" },
1096
+ "DefinedRegion": { "@id": "schema:DefinedRegion" },
1097
+ "DefinedTerm": { "@id": "schema:DefinedTerm" },
1098
+ "DefinedTermSet": { "@id": "schema:DefinedTermSet" },
1099
+ "DefinitiveLegalValue": { "@id": "schema:DefinitiveLegalValue" },
1100
+ "DeleteAction": { "@id": "schema:DeleteAction" },
1101
+ "DeliveryChargeSpecification": { "@id": "schema:DeliveryChargeSpecification" },
1102
+ "DeliveryEvent": { "@id": "schema:DeliveryEvent" },
1103
+ "DeliveryMethod": { "@id": "schema:DeliveryMethod" },
1104
+ "DeliveryTimeSettings": { "@id": "schema:DeliveryTimeSettings" },
1105
+ "Demand": { "@id": "schema:Demand" },
1106
+ "DemoAlbum": { "@id": "schema:DemoAlbum" },
1107
+ "DemoGameAvailability": { "@id": "schema:DemoGameAvailability" },
1108
+ "Dentist": { "@id": "schema:Dentist" },
1109
+ "Dentistry": { "@id": "schema:Dentistry" },
1110
+ "DepartAction": { "@id": "schema:DepartAction" },
1111
+ "DepartmentStore": { "@id": "schema:DepartmentStore" },
1112
+ "DepositAccount": { "@id": "schema:DepositAccount" },
1113
+ "Dermatologic": { "@id": "schema:Dermatologic" },
1114
+ "Dermatology": { "@id": "schema:Dermatology" },
1115
+ "DesktopWebPlatform": { "@id": "schema:DesktopWebPlatform" },
1116
+ "DiabeticDiet": { "@id": "schema:DiabeticDiet" },
1117
+ "Diagnostic": { "@id": "schema:Diagnostic" },
1118
+ "DiagnosticLab": { "@id": "schema:DiagnosticLab" },
1119
+ "DiagnosticProcedure": { "@id": "schema:DiagnosticProcedure" },
1120
+ "Diet": { "@id": "schema:Diet" },
1121
+ "DietNutrition": { "@id": "schema:DietNutrition" },
1122
+ "DietarySupplement": { "@id": "schema:DietarySupplement" },
1123
+ "DigitalArtDigitalSource": { "@id": "schema:DigitalArtDigitalSource" },
1124
+ "DigitalAudioTapeFormat": { "@id": "schema:DigitalAudioTapeFormat" },
1125
+ "DigitalCaptureDigitalSource": { "@id": "schema:DigitalCaptureDigitalSource" },
1126
+ "DigitalDocument": { "@id": "schema:DigitalDocument" },
1127
+ "DigitalDocumentPermission": { "@id": "schema:DigitalDocumentPermission" },
1128
+ "DigitalDocumentPermissionType": { "@id": "schema:DigitalDocumentPermissionType" },
1129
+ "DigitalFormat": { "@id": "schema:DigitalFormat" },
1130
+ "DigitalPlatformEnumeration": { "@id": "schema:DigitalPlatformEnumeration" },
1131
+ "DirectDebit": { "@id": "schema:DirectDebit" },
1132
+ "DisabilitySupport": { "@id": "schema:DisabilitySupport" },
1133
+ "DisagreeAction": { "@id": "schema:DisagreeAction" },
1134
+ "Discontinued": { "@id": "schema:Discontinued" },
1135
+ "DiscoverAction": { "@id": "schema:DiscoverAction" },
1136
+ "DiscussionForumPosting": { "@id": "schema:DiscussionForumPosting" },
1137
+ "DislikeAction": { "@id": "schema:DislikeAction" },
1138
+ "Distance": { "@id": "schema:Distance" },
1139
+ "DistanceFee": { "@id": "schema:DistanceFee" },
1140
+ "Distillery": { "@id": "schema:Distillery" },
1141
+ "DonateAction": { "@id": "schema:DonateAction" },
1142
+ "DoseSchedule": { "@id": "schema:DoseSchedule" },
1143
+ "DoubleBlindedTrial": { "@id": "schema:DoubleBlindedTrial" },
1144
+ "DownloadAction": { "@id": "schema:DownloadAction" },
1145
+ "Downpayment": { "@id": "schema:Downpayment" },
1146
+ "DrawAction": { "@id": "schema:DrawAction" },
1147
+ "Drawing": { "@id": "schema:Drawing" },
1148
+ "DrinkAction": { "@id": "schema:DrinkAction" },
1149
+ "DriveWheelConfigurationValue": { "@id": "schema:DriveWheelConfigurationValue" },
1150
+ "DrivingSchoolVehicleUsage": { "@id": "schema:DrivingSchoolVehicleUsage" },
1151
+ "Drug": { "@id": "schema:Drug" },
1152
+ "DrugClass": { "@id": "schema:DrugClass" },
1153
+ "DrugCost": { "@id": "schema:DrugCost" },
1154
+ "DrugCostCategory": { "@id": "schema:DrugCostCategory" },
1155
+ "DrugLegalStatus": { "@id": "schema:DrugLegalStatus" },
1156
+ "DrugPregnancyCategory": { "@id": "schema:DrugPregnancyCategory" },
1157
+ "DrugPrescriptionStatus": { "@id": "schema:DrugPrescriptionStatus" },
1158
+ "DrugStrength": { "@id": "schema:DrugStrength" },
1159
+ "DryCleaningOrLaundry": { "@id": "schema:DryCleaningOrLaundry" },
1160
+ "Duration": { "@id": "schema:Duration" },
1161
+ "EBook": { "@id": "schema:EBook" },
1162
+ "EPRelease": { "@id": "schema:EPRelease" },
1163
+ "EUEnergyEfficiencyCategoryA": { "@id": "schema:EUEnergyEfficiencyCategoryA" },
1164
+ "EUEnergyEfficiencyCategoryA1Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA1Plus" },
1165
+ "EUEnergyEfficiencyCategoryA2Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA2Plus" },
1166
+ "EUEnergyEfficiencyCategoryA3Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA3Plus" },
1167
+ "EUEnergyEfficiencyCategoryB": { "@id": "schema:EUEnergyEfficiencyCategoryB" },
1168
+ "EUEnergyEfficiencyCategoryC": { "@id": "schema:EUEnergyEfficiencyCategoryC" },
1169
+ "EUEnergyEfficiencyCategoryD": { "@id": "schema:EUEnergyEfficiencyCategoryD" },
1170
+ "EUEnergyEfficiencyCategoryE": { "@id": "schema:EUEnergyEfficiencyCategoryE" },
1171
+ "EUEnergyEfficiencyCategoryF": { "@id": "schema:EUEnergyEfficiencyCategoryF" },
1172
+ "EUEnergyEfficiencyCategoryG": { "@id": "schema:EUEnergyEfficiencyCategoryG" },
1173
+ "EUEnergyEfficiencyEnumeration": { "@id": "schema:EUEnergyEfficiencyEnumeration" },
1174
+ "Ear": { "@id": "schema:Ear" },
1175
+ "EatAction": { "@id": "schema:EatAction" },
1176
+ "EditedOrCroppedContent": { "@id": "schema:EditedOrCroppedContent" },
1177
+ "EducationEvent": { "@id": "schema:EducationEvent" },
1178
+ "EducationalAudience": { "@id": "schema:EducationalAudience" },
1179
+ "EducationalOccupationalCredential": { "@id": "schema:EducationalOccupationalCredential" },
1180
+ "EducationalOccupationalProgram": { "@id": "schema:EducationalOccupationalProgram" },
1181
+ "EducationalOrganization": { "@id": "schema:EducationalOrganization" },
1182
+ "EffectivenessHealthAspect": { "@id": "schema:EffectivenessHealthAspect" },
1183
+ "Electrician": { "@id": "schema:Electrician" },
1184
+ "ElectronicsStore": { "@id": "schema:ElectronicsStore" },
1185
+ "ElementarySchool": { "@id": "schema:ElementarySchool" },
1186
+ "EmailMessage": { "@id": "schema:EmailMessage" },
1187
+ "Embassy": { "@id": "schema:Embassy" },
1188
+ "Emergency": { "@id": "schema:Emergency" },
1189
+ "EmergencyService": { "@id": "schema:EmergencyService" },
1190
+ "EmployeeRole": { "@id": "schema:EmployeeRole" },
1191
+ "EmployerAggregateRating": { "@id": "schema:EmployerAggregateRating" },
1192
+ "EmployerReview": { "@id": "schema:EmployerReview" },
1193
+ "EmploymentAgency": { "@id": "schema:EmploymentAgency" },
1194
+ "Endocrine": { "@id": "schema:Endocrine" },
1195
+ "EndorseAction": { "@id": "schema:EndorseAction" },
1196
+ "EndorsementRating": { "@id": "schema:EndorsementRating" },
1197
+ "Energy": { "@id": "schema:Energy" },
1198
+ "EnergyConsumptionDetails": { "@id": "schema:EnergyConsumptionDetails" },
1199
+ "EnergyEfficiencyEnumeration": { "@id": "schema:EnergyEfficiencyEnumeration" },
1200
+ "EnergyStarCertified": { "@id": "schema:EnergyStarCertified" },
1201
+ "EnergyStarEnergyEfficiencyEnumeration": { "@id": "schema:EnergyStarEnergyEfficiencyEnumeration" },
1202
+ "EngineSpecification": { "@id": "schema:EngineSpecification" },
1203
+ "EnrollingByInvitation": { "@id": "schema:EnrollingByInvitation" },
1204
+ "EntertainmentBusiness": { "@id": "schema:EntertainmentBusiness" },
1205
+ "EntryPoint": { "@id": "schema:EntryPoint" },
1206
+ "Enumeration": { "@id": "schema:Enumeration" },
1207
+ "Episode": { "@id": "schema:Episode" },
1208
+ "Event": { "@id": "schema:Event" },
1209
+ "EventAttendanceModeEnumeration": { "@id": "schema:EventAttendanceModeEnumeration" },
1210
+ "EventCancelled": { "@id": "schema:EventCancelled" },
1211
+ "EventMovedOnline": { "@id": "schema:EventMovedOnline" },
1212
+ "EventPostponed": { "@id": "schema:EventPostponed" },
1213
+ "EventRescheduled": { "@id": "schema:EventRescheduled" },
1214
+ "EventReservation": { "@id": "schema:EventReservation" },
1215
+ "EventScheduled": { "@id": "schema:EventScheduled" },
1216
+ "EventSeries": { "@id": "schema:EventSeries" },
1217
+ "EventStatusType": { "@id": "schema:EventStatusType" },
1218
+ "EventVenue": { "@id": "schema:EventVenue" },
1219
+ "EvidenceLevelA": { "@id": "schema:EvidenceLevelA" },
1220
+ "EvidenceLevelB": { "@id": "schema:EvidenceLevelB" },
1221
+ "EvidenceLevelC": { "@id": "schema:EvidenceLevelC" },
1222
+ "ExampleMeasurementMethodEnum": { "@id": "schema:ExampleMeasurementMethodEnum" },
1223
+ "ExchangeRateSpecification": { "@id": "schema:ExchangeRateSpecification" },
1224
+ "ExchangeRefund": { "@id": "schema:ExchangeRefund" },
1225
+ "ExerciseAction": { "@id": "schema:ExerciseAction" },
1226
+ "ExerciseGym": { "@id": "schema:ExerciseGym" },
1227
+ "ExercisePlan": { "@id": "schema:ExercisePlan" },
1228
+ "ExhibitionEvent": { "@id": "schema:ExhibitionEvent" },
1229
+ "Eye": { "@id": "schema:Eye" },
1230
+ "FAQPage": { "@id": "schema:FAQPage" },
1231
+ "FDAcategoryA": { "@id": "schema:FDAcategoryA" },
1232
+ "FDAcategoryB": { "@id": "schema:FDAcategoryB" },
1233
+ "FDAcategoryC": { "@id": "schema:FDAcategoryC" },
1234
+ "FDAcategoryD": { "@id": "schema:FDAcategoryD" },
1235
+ "FDAcategoryX": { "@id": "schema:FDAcategoryX" },
1236
+ "FDAnotEvaluated": { "@id": "schema:FDAnotEvaluated" },
1237
+ "FMRadioChannel": { "@id": "schema:FMRadioChannel" },
1238
+ "FailedActionStatus": { "@id": "schema:FailedActionStatus" },
1239
+ "False": { "@id": "schema:False" },
1240
+ "FastFoodRestaurant": { "@id": "schema:FastFoodRestaurant" },
1241
+ "Female": { "@id": "schema:Female" },
1242
+ "Festival": { "@id": "schema:Festival" },
1243
+ "FilmAction": { "@id": "schema:FilmAction" },
1244
+ "FinancialProduct": { "@id": "schema:FinancialProduct" },
1245
+ "FinancialService": { "@id": "schema:FinancialService" },
1246
+ "FindAction": { "@id": "schema:FindAction" },
1247
+ "FireStation": { "@id": "schema:FireStation" },
1248
+ "Flexibility": { "@id": "schema:Flexibility" },
1249
+ "Flight": { "@id": "schema:Flight" },
1250
+ "FlightReservation": { "@id": "schema:FlightReservation" },
1251
+ "Float": { "@id": "schema:Float" },
1252
+ "FloorPlan": { "@id": "schema:FloorPlan" },
1253
+ "Florist": { "@id": "schema:Florist" },
1254
+ "FollowAction": { "@id": "schema:FollowAction" },
1255
+ "FoodEstablishment": { "@id": "schema:FoodEstablishment" },
1256
+ "FoodEstablishmentReservation": { "@id": "schema:FoodEstablishmentReservation" },
1257
+ "FoodEvent": { "@id": "schema:FoodEvent" },
1258
+ "FoodService": { "@id": "schema:FoodService" },
1259
+ "FourWheelDriveConfiguration": { "@id": "schema:FourWheelDriveConfiguration" },
1260
+ "FreeReturn": { "@id": "schema:FreeReturn" },
1261
+ "Friday": { "@id": "schema:Friday" },
1262
+ "FrontWheelDriveConfiguration": { "@id": "schema:FrontWheelDriveConfiguration" },
1263
+ "FullGameAvailability": { "@id": "schema:FullGameAvailability" },
1264
+ "FullRefund": { "@id": "schema:FullRefund" },
1265
+ "FundingAgency": { "@id": "schema:FundingAgency" },
1266
+ "FundingScheme": { "@id": "schema:FundingScheme" },
1267
+ "Fungus": { "@id": "schema:Fungus" },
1268
+ "FurnitureStore": { "@id": "schema:FurnitureStore" },
1269
+ "Game": { "@id": "schema:Game" },
1270
+ "GameAvailabilityEnumeration": { "@id": "schema:GameAvailabilityEnumeration" },
1271
+ "GamePlayMode": { "@id": "schema:GamePlayMode" },
1272
+ "GameServer": { "@id": "schema:GameServer" },
1273
+ "GameServerStatus": { "@id": "schema:GameServerStatus" },
1274
+ "GardenStore": { "@id": "schema:GardenStore" },
1275
+ "GasStation": { "@id": "schema:GasStation" },
1276
+ "Gastroenterologic": { "@id": "schema:Gastroenterologic" },
1277
+ "GatedResidenceCommunity": { "@id": "schema:GatedResidenceCommunity" },
1278
+ "GenderType": { "@id": "schema:GenderType" },
1279
+ "Gene": { "@id": "schema:Gene" },
1280
+ "GeneralContractor": { "@id": "schema:GeneralContractor" },
1281
+ "GenericWebPlatform": { "@id": "schema:GenericWebPlatform" },
1282
+ "Genetic": { "@id": "schema:Genetic" },
1283
+ "Genitourinary": { "@id": "schema:Genitourinary" },
1284
+ "GeoCircle": { "@id": "schema:GeoCircle" },
1285
+ "GeoCoordinates": { "@id": "schema:GeoCoordinates" },
1286
+ "GeoShape": { "@id": "schema:GeoShape" },
1287
+ "GeospatialGeometry": { "@id": "schema:GeospatialGeometry" },
1288
+ "Geriatric": { "@id": "schema:Geriatric" },
1289
+ "GettingAccessHealthAspect": { "@id": "schema:GettingAccessHealthAspect" },
1290
+ "GiveAction": { "@id": "schema:GiveAction" },
1291
+ "GlutenFreeDiet": { "@id": "schema:GlutenFreeDiet" },
1292
+ "GolfCourse": { "@id": "schema:GolfCourse" },
1293
+ "GovernmentBenefitsType": { "@id": "schema:GovernmentBenefitsType" },
1294
+ "GovernmentBuilding": { "@id": "schema:GovernmentBuilding" },
1295
+ "GovernmentOffice": { "@id": "schema:GovernmentOffice" },
1296
+ "GovernmentOrganization": { "@id": "schema:GovernmentOrganization" },
1297
+ "GovernmentPermit": { "@id": "schema:GovernmentPermit" },
1298
+ "GovernmentService": { "@id": "schema:GovernmentService" },
1299
+ "Grant": { "@id": "schema:Grant" },
1300
+ "GraphicNovel": { "@id": "schema:GraphicNovel" },
1301
+ "GroceryStore": { "@id": "schema:GroceryStore" },
1302
+ "GroupBoardingPolicy": { "@id": "schema:GroupBoardingPolicy" },
1303
+ "Guide": { "@id": "schema:Guide" },
1304
+ "Gynecologic": { "@id": "schema:Gynecologic" },
1305
+ "HVACBusiness": { "@id": "schema:HVACBusiness" },
1306
+ "Hackathon": { "@id": "schema:Hackathon" },
1307
+ "HairSalon": { "@id": "schema:HairSalon" },
1308
+ "HalalDiet": { "@id": "schema:HalalDiet" },
1309
+ "Hardcover": { "@id": "schema:Hardcover" },
1310
+ "HardwareStore": { "@id": "schema:HardwareStore" },
1311
+ "Head": { "@id": "schema:Head" },
1312
+ "HealthAndBeautyBusiness": { "@id": "schema:HealthAndBeautyBusiness" },
1313
+ "HealthAspectEnumeration": { "@id": "schema:HealthAspectEnumeration" },
1314
+ "HealthCare": { "@id": "schema:HealthCare" },
1315
+ "HealthClub": { "@id": "schema:HealthClub" },
1316
+ "HealthInsurancePlan": { "@id": "schema:HealthInsurancePlan" },
1317
+ "HealthPlanCostSharingSpecification": { "@id": "schema:HealthPlanCostSharingSpecification" },
1318
+ "HealthPlanFormulary": { "@id": "schema:HealthPlanFormulary" },
1319
+ "HealthPlanNetwork": { "@id": "schema:HealthPlanNetwork" },
1320
+ "HealthTopicContent": { "@id": "schema:HealthTopicContent" },
1321
+ "HealthcareConsideration": { "@id": "schema:HealthcareConsideration" },
1322
+ "HearingImpairedSupported": { "@id": "schema:HearingImpairedSupported" },
1323
+ "Hematologic": { "@id": "schema:Hematologic" },
1324
+ "HighSchool": { "@id": "schema:HighSchool" },
1325
+ "HinduDiet": { "@id": "schema:HinduDiet" },
1326
+ "HinduTemple": { "@id": "schema:HinduTemple" },
1327
+ "HobbyShop": { "@id": "schema:HobbyShop" },
1328
+ "HomeAndConstructionBusiness": { "@id": "schema:HomeAndConstructionBusiness" },
1329
+ "HomeGoodsStore": { "@id": "schema:HomeGoodsStore" },
1330
+ "Homeopathic": { "@id": "schema:Homeopathic" },
1331
+ "Hospital": { "@id": "schema:Hospital" },
1332
+ "Hostel": { "@id": "schema:Hostel" },
1333
+ "Hotel": { "@id": "schema:Hotel" },
1334
+ "HotelRoom": { "@id": "schema:HotelRoom" },
1335
+ "House": { "@id": "schema:House" },
1336
+ "HousePainter": { "@id": "schema:HousePainter" },
1337
+ "HowItWorksHealthAspect": { "@id": "schema:HowItWorksHealthAspect" },
1338
+ "HowOrWhereHealthAspect": { "@id": "schema:HowOrWhereHealthAspect" },
1339
+ "HowTo": { "@id": "schema:HowTo" },
1340
+ "HowToDirection": { "@id": "schema:HowToDirection" },
1341
+ "HowToItem": { "@id": "schema:HowToItem" },
1342
+ "HowToSection": { "@id": "schema:HowToSection" },
1343
+ "HowToStep": { "@id": "schema:HowToStep" },
1344
+ "HowToSupply": { "@id": "schema:HowToSupply" },
1345
+ "HowToTip": { "@id": "schema:HowToTip" },
1346
+ "HowToTool": { "@id": "schema:HowToTool" },
1347
+ "HyperToc": { "@id": "schema:HyperToc" },
1348
+ "HyperTocEntry": { "@id": "schema:HyperTocEntry" },
1349
+ "IOSPlatform": { "@id": "schema:IOSPlatform" },
1350
+ "IPTCDigitalSourceEnumeration": { "@id": "schema:IPTCDigitalSourceEnumeration" },
1351
+ "IceCreamShop": { "@id": "schema:IceCreamShop" },
1352
+ "IgnoreAction": { "@id": "schema:IgnoreAction" },
1353
+ "ImageGallery": { "@id": "schema:ImageGallery" },
1354
+ "ImageObject": { "@id": "schema:ImageObject" },
1355
+ "ImageObjectSnapshot": { "@id": "schema:ImageObjectSnapshot" },
1356
+ "ImagingTest": { "@id": "schema:ImagingTest" },
1357
+ "InForce": { "@id": "schema:InForce" },
1358
+ "InStock": { "@id": "schema:InStock" },
1359
+ "InStoreOnly": { "@id": "schema:InStoreOnly" },
1360
+ "InStorePrepay": { "@id": "schema:InStorePrepay" },
1361
+ "IndividualPhysician": { "@id": "schema:IndividualPhysician" },
1362
+ "IndividualProduct": { "@id": "schema:IndividualProduct" },
1363
+ "Infectious": { "@id": "schema:Infectious" },
1364
+ "InfectiousAgentClass": { "@id": "schema:InfectiousAgentClass" },
1365
+ "InfectiousDisease": { "@id": "schema:InfectiousDisease" },
1366
+ "InformAction": { "@id": "schema:InformAction" },
1367
+ "IngredientsHealthAspect": { "@id": "schema:IngredientsHealthAspect" },
1368
+ "InsertAction": { "@id": "schema:InsertAction" },
1369
+ "InstallAction": { "@id": "schema:InstallAction" },
1370
+ "Installment": { "@id": "schema:Installment" },
1371
+ "InsuranceAgency": { "@id": "schema:InsuranceAgency" },
1372
+ "Intangible": { "@id": "schema:Intangible" },
1373
+ "Integer": { "@id": "schema:Integer" },
1374
+ "InteractAction": { "@id": "schema:InteractAction" },
1375
+ "InteractionCounter": { "@id": "schema:InteractionCounter" },
1376
+ "InternationalTrial": { "@id": "schema:InternationalTrial" },
1377
+ "InternetCafe": { "@id": "schema:InternetCafe" },
1378
+ "InvestmentFund": { "@id": "schema:InvestmentFund" },
1379
+ "InvestmentOrDeposit": { "@id": "schema:InvestmentOrDeposit" },
1380
+ "InviteAction": { "@id": "schema:InviteAction" },
1381
+ "Invoice": { "@id": "schema:Invoice" },
1382
+ "InvoicePrice": { "@id": "schema:InvoicePrice" },
1383
+ "ItemAvailability": { "@id": "schema:ItemAvailability" },
1384
+ "ItemList": { "@id": "schema:ItemList" },
1385
+ "ItemListOrderAscending": { "@id": "schema:ItemListOrderAscending" },
1386
+ "ItemListOrderDescending": { "@id": "schema:ItemListOrderDescending" },
1387
+ "ItemListOrderType": { "@id": "schema:ItemListOrderType" },
1388
+ "ItemListUnordered": { "@id": "schema:ItemListUnordered" },
1389
+ "ItemPage": { "@id": "schema:ItemPage" },
1390
+ "JewelryStore": { "@id": "schema:JewelryStore" },
1391
+ "JobPosting": { "@id": "schema:JobPosting" },
1392
+ "JoinAction": { "@id": "schema:JoinAction" },
1393
+ "Joint": { "@id": "schema:Joint" },
1394
+ "KeepProduct": { "@id": "schema:KeepProduct" },
1395
+ "KosherDiet": { "@id": "schema:KosherDiet" },
1396
+ "LaboratoryScience": { "@id": "schema:LaboratoryScience" },
1397
+ "LakeBodyOfWater": { "@id": "schema:LakeBodyOfWater" },
1398
+ "Landform": { "@id": "schema:Landform" },
1399
+ "LandmarksOrHistoricalBuildings": { "@id": "schema:LandmarksOrHistoricalBuildings" },
1400
+ "Language": { "@id": "schema:Language" },
1401
+ "LaserDiscFormat": { "@id": "schema:LaserDiscFormat" },
1402
+ "LearningResource": { "@id": "schema:LearningResource" },
1403
+ "LeaveAction": { "@id": "schema:LeaveAction" },
1404
+ "LeftHandDriving": { "@id": "schema:LeftHandDriving" },
1405
+ "LegalForceStatus": { "@id": "schema:LegalForceStatus" },
1406
+ "LegalService": { "@id": "schema:LegalService" },
1407
+ "LegalValueLevel": { "@id": "schema:LegalValueLevel" },
1408
+ "Legislation": { "@id": "schema:Legislation" },
1409
+ "LegislationObject": { "@id": "schema:LegislationObject" },
1410
+ "LegislativeBuilding": { "@id": "schema:LegislativeBuilding" },
1411
+ "LeisureTimeActivity": { "@id": "schema:LeisureTimeActivity" },
1412
+ "LendAction": { "@id": "schema:LendAction" },
1413
+ "Library": { "@id": "schema:Library" },
1414
+ "LibrarySystem": { "@id": "schema:LibrarySystem" },
1415
+ "LifestyleModification": { "@id": "schema:LifestyleModification" },
1416
+ "Ligament": { "@id": "schema:Ligament" },
1417
+ "LikeAction": { "@id": "schema:LikeAction" },
1418
+ "LimitedAvailability": { "@id": "schema:LimitedAvailability" },
1419
+ "LimitedByGuaranteeCharity": { "@id": "schema:LimitedByGuaranteeCharity" },
1420
+ "LinkRole": { "@id": "schema:LinkRole" },
1421
+ "LiquorStore": { "@id": "schema:LiquorStore" },
1422
+ "ListItem": { "@id": "schema:ListItem" },
1423
+ "ListPrice": { "@id": "schema:ListPrice" },
1424
+ "ListenAction": { "@id": "schema:ListenAction" },
1425
+ "LiteraryEvent": { "@id": "schema:LiteraryEvent" },
1426
+ "LiveAlbum": { "@id": "schema:LiveAlbum" },
1427
+ "LiveBlogPosting": { "@id": "schema:LiveBlogPosting" },
1428
+ "LivingWithHealthAspect": { "@id": "schema:LivingWithHealthAspect" },
1429
+ "LoanOrCredit": { "@id": "schema:LoanOrCredit" },
1430
+ "LocalBusiness": { "@id": "schema:LocalBusiness" },
1431
+ "LocationFeatureSpecification": { "@id": "schema:LocationFeatureSpecification" },
1432
+ "LockerDelivery": { "@id": "schema:LockerDelivery" },
1433
+ "Locksmith": { "@id": "schema:Locksmith" },
1434
+ "LodgingBusiness": { "@id": "schema:LodgingBusiness" },
1435
+ "LodgingReservation": { "@id": "schema:LodgingReservation" },
1436
+ "Longitudinal": { "@id": "schema:Longitudinal" },
1437
+ "LoseAction": { "@id": "schema:LoseAction" },
1438
+ "LowCalorieDiet": { "@id": "schema:LowCalorieDiet" },
1439
+ "LowFatDiet": { "@id": "schema:LowFatDiet" },
1440
+ "LowLactoseDiet": { "@id": "schema:LowLactoseDiet" },
1441
+ "LowSaltDiet": { "@id": "schema:LowSaltDiet" },
1442
+ "Lung": { "@id": "schema:Lung" },
1443
+ "LymphaticVessel": { "@id": "schema:LymphaticVessel" },
1444
+ "MRI": { "@id": "schema:MRI" },
1445
+ "MSRP": { "@id": "schema:MSRP" },
1446
+ "MadeToOrder": { "@id": "schema:MadeToOrder" },
1447
+ "Male": { "@id": "schema:Male" },
1448
+ "Manuscript": { "@id": "schema:Manuscript" },
1449
+ "Map": { "@id": "schema:Map" },
1450
+ "MapCategoryType": { "@id": "schema:MapCategoryType" },
1451
+ "MarryAction": { "@id": "schema:MarryAction" },
1452
+ "Mass": { "@id": "schema:Mass" },
1453
+ "MathSolver": { "@id": "schema:MathSolver" },
1454
+ "MaximumDoseSchedule": { "@id": "schema:MaximumDoseSchedule" },
1455
+ "MayTreatHealthAspect": { "@id": "schema:MayTreatHealthAspect" },
1456
+ "MeasurementMethodEnum": { "@id": "schema:MeasurementMethodEnum" },
1457
+ "MeasurementTypeEnumeration": { "@id": "schema:MeasurementTypeEnumeration" },
1458
+ "MediaEnumeration": { "@id": "schema:MediaEnumeration" },
1459
+ "MediaGallery": { "@id": "schema:MediaGallery" },
1460
+ "MediaManipulationRatingEnumeration": { "@id": "schema:MediaManipulationRatingEnumeration" },
1461
+ "MediaObject": { "@id": "schema:MediaObject" },
1462
+ "MediaReview": { "@id": "schema:MediaReview" },
1463
+ "MediaReviewItem": { "@id": "schema:MediaReviewItem" },
1464
+ "MediaSubscription": { "@id": "schema:MediaSubscription" },
1465
+ "MedicalAudience": { "@id": "schema:MedicalAudience" },
1466
+ "MedicalAudienceType": { "@id": "schema:MedicalAudienceType" },
1467
+ "MedicalBusiness": { "@id": "schema:MedicalBusiness" },
1468
+ "MedicalCause": { "@id": "schema:MedicalCause" },
1469
+ "MedicalClinic": { "@id": "schema:MedicalClinic" },
1470
+ "MedicalCode": { "@id": "schema:MedicalCode" },
1471
+ "MedicalCondition": { "@id": "schema:MedicalCondition" },
1472
+ "MedicalConditionStage": { "@id": "schema:MedicalConditionStage" },
1473
+ "MedicalContraindication": { "@id": "schema:MedicalContraindication" },
1474
+ "MedicalDevice": { "@id": "schema:MedicalDevice" },
1475
+ "MedicalDevicePurpose": { "@id": "schema:MedicalDevicePurpose" },
1476
+ "MedicalEntity": { "@id": "schema:MedicalEntity" },
1477
+ "MedicalEnumeration": { "@id": "schema:MedicalEnumeration" },
1478
+ "MedicalEvidenceLevel": { "@id": "schema:MedicalEvidenceLevel" },
1479
+ "MedicalGuideline": { "@id": "schema:MedicalGuideline" },
1480
+ "MedicalGuidelineContraindication": { "@id": "schema:MedicalGuidelineContraindication" },
1481
+ "MedicalGuidelineRecommendation": { "@id": "schema:MedicalGuidelineRecommendation" },
1482
+ "MedicalImagingTechnique": { "@id": "schema:MedicalImagingTechnique" },
1483
+ "MedicalIndication": { "@id": "schema:MedicalIndication" },
1484
+ "MedicalIntangible": { "@id": "schema:MedicalIntangible" },
1485
+ "MedicalObservationalStudy": { "@id": "schema:MedicalObservationalStudy" },
1486
+ "MedicalObservationalStudyDesign": { "@id": "schema:MedicalObservationalStudyDesign" },
1487
+ "MedicalOrganization": { "@id": "schema:MedicalOrganization" },
1488
+ "MedicalProcedure": { "@id": "schema:MedicalProcedure" },
1489
+ "MedicalProcedureType": { "@id": "schema:MedicalProcedureType" },
1490
+ "MedicalResearcher": { "@id": "schema:MedicalResearcher" },
1491
+ "MedicalRiskCalculator": { "@id": "schema:MedicalRiskCalculator" },
1492
+ "MedicalRiskEstimator": { "@id": "schema:MedicalRiskEstimator" },
1493
+ "MedicalRiskFactor": { "@id": "schema:MedicalRiskFactor" },
1494
+ "MedicalRiskScore": { "@id": "schema:MedicalRiskScore" },
1495
+ "MedicalScholarlyArticle": { "@id": "schema:MedicalScholarlyArticle" },
1496
+ "MedicalSign": { "@id": "schema:MedicalSign" },
1497
+ "MedicalSignOrSymptom": { "@id": "schema:MedicalSignOrSymptom" },
1498
+ "MedicalSpecialty": { "@id": "schema:MedicalSpecialty" },
1499
+ "MedicalStudy": { "@id": "schema:MedicalStudy" },
1500
+ "MedicalStudyStatus": { "@id": "schema:MedicalStudyStatus" },
1501
+ "MedicalSymptom": { "@id": "schema:MedicalSymptom" },
1502
+ "MedicalTest": { "@id": "schema:MedicalTest" },
1503
+ "MedicalTestPanel": { "@id": "schema:MedicalTestPanel" },
1504
+ "MedicalTherapy": { "@id": "schema:MedicalTherapy" },
1505
+ "MedicalTrial": { "@id": "schema:MedicalTrial" },
1506
+ "MedicalTrialDesign": { "@id": "schema:MedicalTrialDesign" },
1507
+ "MedicalWebPage": { "@id": "schema:MedicalWebPage" },
1508
+ "MedicineSystem": { "@id": "schema:MedicineSystem" },
1509
+ "MeetingRoom": { "@id": "schema:MeetingRoom" },
1510
+ "MemberProgram": { "@id": "schema:MemberProgram" },
1511
+ "MemberProgramTier": { "@id": "schema:MemberProgramTier" },
1512
+ "MensClothingStore": { "@id": "schema:MensClothingStore" },
1513
+ "Menu": { "@id": "schema:Menu" },
1514
+ "MenuItem": { "@id": "schema:MenuItem" },
1515
+ "MenuSection": { "@id": "schema:MenuSection" },
1516
+ "MerchantReturnEnumeration": { "@id": "schema:MerchantReturnEnumeration" },
1517
+ "MerchantReturnFiniteReturnWindow": { "@id": "schema:MerchantReturnFiniteReturnWindow" },
1518
+ "MerchantReturnNotPermitted": { "@id": "schema:MerchantReturnNotPermitted" },
1519
+ "MerchantReturnPolicy": { "@id": "schema:MerchantReturnPolicy" },
1520
+ "MerchantReturnPolicySeasonalOverride": { "@id": "schema:MerchantReturnPolicySeasonalOverride" },
1521
+ "MerchantReturnUnlimitedWindow": { "@id": "schema:MerchantReturnUnlimitedWindow" },
1522
+ "MerchantReturnUnspecified": { "@id": "schema:MerchantReturnUnspecified" },
1523
+ "Message": { "@id": "schema:Message" },
1524
+ "MiddleSchool": { "@id": "schema:MiddleSchool" },
1525
+ "Midwifery": { "@id": "schema:Midwifery" },
1526
+ "MinimumAdvertisedPrice": { "@id": "schema:MinimumAdvertisedPrice" },
1527
+ "MinorHumanEditsDigitalSource": { "@id": "schema:MinorHumanEditsDigitalSource" },
1528
+ "MisconceptionsHealthAspect": { "@id": "schema:MisconceptionsHealthAspect" },
1529
+ "MixedEventAttendanceMode": { "@id": "schema:MixedEventAttendanceMode" },
1530
+ "MixtapeAlbum": { "@id": "schema:MixtapeAlbum" },
1531
+ "MobileApplication": { "@id": "schema:MobileApplication" },
1532
+ "MobilePhoneStore": { "@id": "schema:MobilePhoneStore" },
1533
+ "MobileWebPlatform": { "@id": "schema:MobileWebPlatform" },
1534
+ "MolecularEntity": { "@id": "schema:MolecularEntity" },
1535
+ "Monday": { "@id": "schema:Monday" },
1536
+ "MonetaryAmount": { "@id": "schema:MonetaryAmount" },
1537
+ "MonetaryAmountDistribution": { "@id": "schema:MonetaryAmountDistribution" },
1538
+ "MonetaryGrant": { "@id": "schema:MonetaryGrant" },
1539
+ "MoneyTransfer": { "@id": "schema:MoneyTransfer" },
1540
+ "MortgageLoan": { "@id": "schema:MortgageLoan" },
1541
+ "Mosque": { "@id": "schema:Mosque" },
1542
+ "Motel": { "@id": "schema:Motel" },
1543
+ "Motorcycle": { "@id": "schema:Motorcycle" },
1544
+ "MotorcycleDealer": { "@id": "schema:MotorcycleDealer" },
1545
+ "MotorcycleRepair": { "@id": "schema:MotorcycleRepair" },
1546
+ "MotorizedBicycle": { "@id": "schema:MotorizedBicycle" },
1547
+ "Mountain": { "@id": "schema:Mountain" },
1548
+ "MoveAction": { "@id": "schema:MoveAction" },
1549
+ "Movie": { "@id": "schema:Movie" },
1550
+ "MovieClip": { "@id": "schema:MovieClip" },
1551
+ "MovieRentalStore": { "@id": "schema:MovieRentalStore" },
1552
+ "MovieSeries": { "@id": "schema:MovieSeries" },
1553
+ "MovieTheater": { "@id": "schema:MovieTheater" },
1554
+ "MovingCompany": { "@id": "schema:MovingCompany" },
1555
+ "MultiCenterTrial": { "@id": "schema:MultiCenterTrial" },
1556
+ "MultiPlayer": { "@id": "schema:MultiPlayer" },
1557
+ "MulticellularParasite": { "@id": "schema:MulticellularParasite" },
1558
+ "Muscle": { "@id": "schema:Muscle" },
1559
+ "Musculoskeletal": { "@id": "schema:Musculoskeletal" },
1560
+ "MusculoskeletalExam": { "@id": "schema:MusculoskeletalExam" },
1561
+ "Museum": { "@id": "schema:Museum" },
1562
+ "MusicAlbum": { "@id": "schema:MusicAlbum" },
1563
+ "MusicAlbumProductionType": { "@id": "schema:MusicAlbumProductionType" },
1564
+ "MusicAlbumReleaseType": { "@id": "schema:MusicAlbumReleaseType" },
1565
+ "MusicComposition": { "@id": "schema:MusicComposition" },
1566
+ "MusicEvent": { "@id": "schema:MusicEvent" },
1567
+ "MusicGroup": { "@id": "schema:MusicGroup" },
1568
+ "MusicPlaylist": { "@id": "schema:MusicPlaylist" },
1569
+ "MusicRecording": { "@id": "schema:MusicRecording" },
1570
+ "MusicRelease": { "@id": "schema:MusicRelease" },
1571
+ "MusicReleaseFormatType": { "@id": "schema:MusicReleaseFormatType" },
1572
+ "MusicStore": { "@id": "schema:MusicStore" },
1573
+ "MusicVenue": { "@id": "schema:MusicVenue" },
1574
+ "MusicVideoObject": { "@id": "schema:MusicVideoObject" },
1575
+ "NGO": { "@id": "schema:NGO" },
1576
+ "NLNonprofitType": { "@id": "schema:NLNonprofitType" },
1577
+ "NailSalon": { "@id": "schema:NailSalon" },
1578
+ "NarcoticConsideration": { "@id": "schema:NarcoticConsideration" },
1579
+ "Neck": { "@id": "schema:Neck" },
1580
+ "NegativeFilmDigitalSource": { "@id": "schema:NegativeFilmDigitalSource" },
1581
+ "Nerve": { "@id": "schema:Nerve" },
1582
+ "Neuro": { "@id": "schema:Neuro" },
1583
+ "Neurologic": { "@id": "schema:Neurologic" },
1584
+ "NewCondition": { "@id": "schema:NewCondition" },
1585
+ "NewsArticle": { "@id": "schema:NewsArticle" },
1586
+ "NewsMediaOrganization": { "@id": "schema:NewsMediaOrganization" },
1587
+ "Newspaper": { "@id": "schema:Newspaper" },
1588
+ "NightClub": { "@id": "schema:NightClub" },
1589
+ "NoninvasiveProcedure": { "@id": "schema:NoninvasiveProcedure" },
1590
+ "Nonprofit501a": { "@id": "schema:Nonprofit501a" },
1591
+ "Nonprofit501c1": { "@id": "schema:Nonprofit501c1" },
1592
+ "Nonprofit501c10": { "@id": "schema:Nonprofit501c10" },
1593
+ "Nonprofit501c11": { "@id": "schema:Nonprofit501c11" },
1594
+ "Nonprofit501c12": { "@id": "schema:Nonprofit501c12" },
1595
+ "Nonprofit501c13": { "@id": "schema:Nonprofit501c13" },
1596
+ "Nonprofit501c14": { "@id": "schema:Nonprofit501c14" },
1597
+ "Nonprofit501c15": { "@id": "schema:Nonprofit501c15" },
1598
+ "Nonprofit501c16": { "@id": "schema:Nonprofit501c16" },
1599
+ "Nonprofit501c17": { "@id": "schema:Nonprofit501c17" },
1600
+ "Nonprofit501c18": { "@id": "schema:Nonprofit501c18" },
1601
+ "Nonprofit501c19": { "@id": "schema:Nonprofit501c19" },
1602
+ "Nonprofit501c2": { "@id": "schema:Nonprofit501c2" },
1603
+ "Nonprofit501c20": { "@id": "schema:Nonprofit501c20" },
1604
+ "Nonprofit501c21": { "@id": "schema:Nonprofit501c21" },
1605
+ "Nonprofit501c22": { "@id": "schema:Nonprofit501c22" },
1606
+ "Nonprofit501c23": { "@id": "schema:Nonprofit501c23" },
1607
+ "Nonprofit501c24": { "@id": "schema:Nonprofit501c24" },
1608
+ "Nonprofit501c25": { "@id": "schema:Nonprofit501c25" },
1609
+ "Nonprofit501c26": { "@id": "schema:Nonprofit501c26" },
1610
+ "Nonprofit501c27": { "@id": "schema:Nonprofit501c27" },
1611
+ "Nonprofit501c28": { "@id": "schema:Nonprofit501c28" },
1612
+ "Nonprofit501c3": { "@id": "schema:Nonprofit501c3" },
1613
+ "Nonprofit501c4": { "@id": "schema:Nonprofit501c4" },
1614
+ "Nonprofit501c5": { "@id": "schema:Nonprofit501c5" },
1615
+ "Nonprofit501c6": { "@id": "schema:Nonprofit501c6" },
1616
+ "Nonprofit501c7": { "@id": "schema:Nonprofit501c7" },
1617
+ "Nonprofit501c8": { "@id": "schema:Nonprofit501c8" },
1618
+ "Nonprofit501c9": { "@id": "schema:Nonprofit501c9" },
1619
+ "Nonprofit501d": { "@id": "schema:Nonprofit501d" },
1620
+ "Nonprofit501e": { "@id": "schema:Nonprofit501e" },
1621
+ "Nonprofit501f": { "@id": "schema:Nonprofit501f" },
1622
+ "Nonprofit501k": { "@id": "schema:Nonprofit501k" },
1623
+ "Nonprofit501n": { "@id": "schema:Nonprofit501n" },
1624
+ "Nonprofit501q": { "@id": "schema:Nonprofit501q" },
1625
+ "Nonprofit527": { "@id": "schema:Nonprofit527" },
1626
+ "NonprofitANBI": { "@id": "schema:NonprofitANBI" },
1627
+ "NonprofitSBBI": { "@id": "schema:NonprofitSBBI" },
1628
+ "NonprofitType": { "@id": "schema:NonprofitType" },
1629
+ "Nose": { "@id": "schema:Nose" },
1630
+ "NotInForce": { "@id": "schema:NotInForce" },
1631
+ "NotYetRecruiting": { "@id": "schema:NotYetRecruiting" },
1632
+ "Notary": { "@id": "schema:Notary" },
1633
+ "NoteDigitalDocument": { "@id": "schema:NoteDigitalDocument" },
1634
+ "Number": { "@id": "schema:Number" },
1635
+ "Nursing": { "@id": "schema:Nursing" },
1636
+ "NutritionInformation": { "@id": "schema:NutritionInformation" },
1637
+ "OTC": { "@id": "schema:OTC" },
1638
+ "Observation": { "@id": "schema:Observation" },
1639
+ "Observational": { "@id": "schema:Observational" },
1640
+ "Obstetric": { "@id": "schema:Obstetric" },
1641
+ "Occupation": { "@id": "schema:Occupation" },
1642
+ "OccupationalActivity": { "@id": "schema:OccupationalActivity" },
1643
+ "OccupationalExperienceRequirements": { "@id": "schema:OccupationalExperienceRequirements" },
1644
+ "OccupationalTherapy": { "@id": "schema:OccupationalTherapy" },
1645
+ "OceanBodyOfWater": { "@id": "schema:OceanBodyOfWater" },
1646
+ "Offer": { "@id": "schema:Offer" },
1647
+ "OfferCatalog": { "@id": "schema:OfferCatalog" },
1648
+ "OfferForLease": { "@id": "schema:OfferForLease" },
1649
+ "OfferForPurchase": { "@id": "schema:OfferForPurchase" },
1650
+ "OfferItemCondition": { "@id": "schema:OfferItemCondition" },
1651
+ "OfferShippingDetails": { "@id": "schema:OfferShippingDetails" },
1652
+ "OfficeEquipmentStore": { "@id": "schema:OfficeEquipmentStore" },
1653
+ "OfficialLegalValue": { "@id": "schema:OfficialLegalValue" },
1654
+ "OfflineEventAttendanceMode": { "@id": "schema:OfflineEventAttendanceMode" },
1655
+ "OfflinePermanently": { "@id": "schema:OfflinePermanently" },
1656
+ "OfflineTemporarily": { "@id": "schema:OfflineTemporarily" },
1657
+ "OnDemandEvent": { "@id": "schema:OnDemandEvent" },
1658
+ "OnSitePickup": { "@id": "schema:OnSitePickup" },
1659
+ "Oncologic": { "@id": "schema:Oncologic" },
1660
+ "OneTimePayments": { "@id": "schema:OneTimePayments" },
1661
+ "Online": { "@id": "schema:Online" },
1662
+ "OnlineBusiness": { "@id": "schema:OnlineBusiness" },
1663
+ "OnlineEventAttendanceMode": { "@id": "schema:OnlineEventAttendanceMode" },
1664
+ "OnlineFull": { "@id": "schema:OnlineFull" },
1665
+ "OnlineOnly": { "@id": "schema:OnlineOnly" },
1666
+ "OnlineStore": { "@id": "schema:OnlineStore" },
1667
+ "OpenTrial": { "@id": "schema:OpenTrial" },
1668
+ "OpeningHoursSpecification": { "@id": "schema:OpeningHoursSpecification" },
1669
+ "OpinionNewsArticle": { "@id": "schema:OpinionNewsArticle" },
1670
+ "Optician": { "@id": "schema:Optician" },
1671
+ "Optometric": { "@id": "schema:Optometric" },
1672
+ "Order": { "@id": "schema:Order" },
1673
+ "OrderAction": { "@id": "schema:OrderAction" },
1674
+ "OrderCancelled": { "@id": "schema:OrderCancelled" },
1675
+ "OrderDelivered": { "@id": "schema:OrderDelivered" },
1676
+ "OrderInTransit": { "@id": "schema:OrderInTransit" },
1677
+ "OrderItem": { "@id": "schema:OrderItem" },
1678
+ "OrderPaymentDue": { "@id": "schema:OrderPaymentDue" },
1679
+ "OrderPickupAvailable": { "@id": "schema:OrderPickupAvailable" },
1680
+ "OrderProblem": { "@id": "schema:OrderProblem" },
1681
+ "OrderProcessing": { "@id": "schema:OrderProcessing" },
1682
+ "OrderReturned": { "@id": "schema:OrderReturned" },
1683
+ "OrderStatus": { "@id": "schema:OrderStatus" },
1684
+ "Organization": { "@id": "schema:Organization" },
1685
+ "OrganizationRole": { "@id": "schema:OrganizationRole" },
1686
+ "OrganizeAction": { "@id": "schema:OrganizeAction" },
1687
+ "OriginalMediaContent": { "@id": "schema:OriginalMediaContent" },
1688
+ "OriginalShippingFees": { "@id": "schema:OriginalShippingFees" },
1689
+ "Osteopathic": { "@id": "schema:Osteopathic" },
1690
+ "Otolaryngologic": { "@id": "schema:Otolaryngologic" },
1691
+ "OutOfStock": { "@id": "schema:OutOfStock" },
1692
+ "OutletStore": { "@id": "schema:OutletStore" },
1693
+ "OverviewHealthAspect": { "@id": "schema:OverviewHealthAspect" },
1694
+ "OwnershipInfo": { "@id": "schema:OwnershipInfo" },
1695
+ "PET": { "@id": "schema:PET" },
1696
+ "PaidLeave": { "@id": "schema:PaidLeave" },
1697
+ "PaintAction": { "@id": "schema:PaintAction" },
1698
+ "Painting": { "@id": "schema:Painting" },
1699
+ "PalliativeProcedure": { "@id": "schema:PalliativeProcedure" },
1700
+ "Paperback": { "@id": "schema:Paperback" },
1701
+ "ParcelDelivery": { "@id": "schema:ParcelDelivery" },
1702
+ "ParcelService": { "@id": "schema:ParcelService" },
1703
+ "ParentAudience": { "@id": "schema:ParentAudience" },
1704
+ "ParentalSupport": { "@id": "schema:ParentalSupport" },
1705
+ "Park": { "@id": "schema:Park" },
1706
+ "ParkingFacility": { "@id": "schema:ParkingFacility" },
1707
+ "ParkingMap": { "@id": "schema:ParkingMap" },
1708
+ "PartiallyInForce": { "@id": "schema:PartiallyInForce" },
1709
+ "Pathology": { "@id": "schema:Pathology" },
1710
+ "PathologyTest": { "@id": "schema:PathologyTest" },
1711
+ "Patient": { "@id": "schema:Patient" },
1712
+ "PatientExperienceHealthAspect": { "@id": "schema:PatientExperienceHealthAspect" },
1713
+ "PawnShop": { "@id": "schema:PawnShop" },
1714
+ "PayAction": { "@id": "schema:PayAction" },
1715
+ "PaymentAutomaticallyApplied": { "@id": "schema:PaymentAutomaticallyApplied" },
1716
+ "PaymentCard": { "@id": "schema:PaymentCard" },
1717
+ "PaymentChargeSpecification": { "@id": "schema:PaymentChargeSpecification" },
1718
+ "PaymentComplete": { "@id": "schema:PaymentComplete" },
1719
+ "PaymentDeclined": { "@id": "schema:PaymentDeclined" },
1720
+ "PaymentDue": { "@id": "schema:PaymentDue" },
1721
+ "PaymentMethod": { "@id": "schema:PaymentMethod" },
1722
+ "PaymentMethodType": { "@id": "schema:PaymentMethodType" },
1723
+ "PaymentPastDue": { "@id": "schema:PaymentPastDue" },
1724
+ "PaymentService": { "@id": "schema:PaymentService" },
1725
+ "PaymentStatusType": { "@id": "schema:PaymentStatusType" },
1726
+ "Pediatric": { "@id": "schema:Pediatric" },
1727
+ "PeopleAudience": { "@id": "schema:PeopleAudience" },
1728
+ "PercutaneousProcedure": { "@id": "schema:PercutaneousProcedure" },
1729
+ "PerformAction": { "@id": "schema:PerformAction" },
1730
+ "PerformanceRole": { "@id": "schema:PerformanceRole" },
1731
+ "PerformingArtsTheater": { "@id": "schema:PerformingArtsTheater" },
1732
+ "PerformingGroup": { "@id": "schema:PerformingGroup" },
1733
+ "Periodical": { "@id": "schema:Periodical" },
1734
+ "Permit": { "@id": "schema:Permit" },
1735
+ "Person": { "@id": "schema:Person" },
1736
+ "PetStore": { "@id": "schema:PetStore" },
1737
+ "Pharmacy": { "@id": "schema:Pharmacy" },
1738
+ "PharmacySpecialty": { "@id": "schema:PharmacySpecialty" },
1739
+ "PhoneCarrierPayment": { "@id": "schema:PhoneCarrierPayment" },
1740
+ "Photograph": { "@id": "schema:Photograph" },
1741
+ "PhotographAction": { "@id": "schema:PhotographAction" },
1742
+ "PhysicalActivity": { "@id": "schema:PhysicalActivity" },
1743
+ "PhysicalActivityCategory": { "@id": "schema:PhysicalActivityCategory" },
1744
+ "PhysicalExam": { "@id": "schema:PhysicalExam" },
1745
+ "PhysicalTherapy": { "@id": "schema:PhysicalTherapy" },
1746
+ "Physician": { "@id": "schema:Physician" },
1747
+ "PhysiciansOffice": { "@id": "schema:PhysiciansOffice" },
1748
+ "Physiotherapy": { "@id": "schema:Physiotherapy" },
1749
+ "Place": { "@id": "schema:Place" },
1750
+ "PlaceOfWorship": { "@id": "schema:PlaceOfWorship" },
1751
+ "PlaceboControlledTrial": { "@id": "schema:PlaceboControlledTrial" },
1752
+ "PlanAction": { "@id": "schema:PlanAction" },
1753
+ "PlasticSurgery": { "@id": "schema:PlasticSurgery" },
1754
+ "Play": { "@id": "schema:Play" },
1755
+ "PlayAction": { "@id": "schema:PlayAction" },
1756
+ "PlayGameAction": { "@id": "schema:PlayGameAction" },
1757
+ "Playground": { "@id": "schema:Playground" },
1758
+ "Plumber": { "@id": "schema:Plumber" },
1759
+ "PodcastEpisode": { "@id": "schema:PodcastEpisode" },
1760
+ "PodcastSeason": { "@id": "schema:PodcastSeason" },
1761
+ "PodcastSeries": { "@id": "schema:PodcastSeries" },
1762
+ "Podiatric": { "@id": "schema:Podiatric" },
1763
+ "PoliceStation": { "@id": "schema:PoliceStation" },
1764
+ "PoliticalParty": { "@id": "schema:PoliticalParty" },
1765
+ "Pond": { "@id": "schema:Pond" },
1766
+ "PositiveFilmDigitalSource": { "@id": "schema:PositiveFilmDigitalSource" },
1767
+ "PostOffice": { "@id": "schema:PostOffice" },
1768
+ "PostalAddress": { "@id": "schema:PostalAddress" },
1769
+ "PostalCodeRangeSpecification": { "@id": "schema:PostalCodeRangeSpecification" },
1770
+ "Poster": { "@id": "schema:Poster" },
1771
+ "PotentialActionStatus": { "@id": "schema:PotentialActionStatus" },
1772
+ "PreOrder": { "@id": "schema:PreOrder" },
1773
+ "PreOrderAction": { "@id": "schema:PreOrderAction" },
1774
+ "PreSale": { "@id": "schema:PreSale" },
1775
+ "PregnancyHealthAspect": { "@id": "schema:PregnancyHealthAspect" },
1776
+ "PrependAction": { "@id": "schema:PrependAction" },
1777
+ "Preschool": { "@id": "schema:Preschool" },
1778
+ "PrescriptionOnly": { "@id": "schema:PrescriptionOnly" },
1779
+ "PresentationDigitalDocument": { "@id": "schema:PresentationDigitalDocument" },
1780
+ "PreventionHealthAspect": { "@id": "schema:PreventionHealthAspect" },
1781
+ "PreventionIndication": { "@id": "schema:PreventionIndication" },
1782
+ "PriceComponentTypeEnumeration": { "@id": "schema:PriceComponentTypeEnumeration" },
1783
+ "PriceSpecification": { "@id": "schema:PriceSpecification" },
1784
+ "PriceTypeEnumeration": { "@id": "schema:PriceTypeEnumeration" },
1785
+ "PrimaryCare": { "@id": "schema:PrimaryCare" },
1786
+ "PrintDigitalSource": { "@id": "schema:PrintDigitalSource" },
1787
+ "Prion": { "@id": "schema:Prion" },
1788
+ "Product": { "@id": "schema:Product" },
1789
+ "ProductCollection": { "@id": "schema:ProductCollection" },
1790
+ "ProductGroup": { "@id": "schema:ProductGroup" },
1791
+ "ProductModel": { "@id": "schema:ProductModel" },
1792
+ "ProductReturnEnumeration": { "@id": "schema:ProductReturnEnumeration" },
1793
+ "ProductReturnFiniteReturnWindow": { "@id": "schema:ProductReturnFiniteReturnWindow" },
1794
+ "ProductReturnNotPermitted": { "@id": "schema:ProductReturnNotPermitted" },
1795
+ "ProductReturnPolicy": { "@id": "schema:ProductReturnPolicy" },
1796
+ "ProductReturnUnlimitedWindow": { "@id": "schema:ProductReturnUnlimitedWindow" },
1797
+ "ProductReturnUnspecified": { "@id": "schema:ProductReturnUnspecified" },
1798
+ "ProfessionalService": { "@id": "schema:ProfessionalService" },
1799
+ "ProfilePage": { "@id": "schema:ProfilePage" },
1800
+ "PrognosisHealthAspect": { "@id": "schema:PrognosisHealthAspect" },
1801
+ "ProgramMembership": { "@id": "schema:ProgramMembership" },
1802
+ "Project": { "@id": "schema:Project" },
1803
+ "PronounceableText": { "@id": "schema:PronounceableText" },
1804
+ "Property": { "@id": "schema:Property" },
1805
+ "PropertyValue": { "@id": "schema:PropertyValue" },
1806
+ "PropertyValueSpecification": { "@id": "schema:PropertyValueSpecification" },
1807
+ "Protein": { "@id": "schema:Protein" },
1808
+ "Protozoa": { "@id": "schema:Protozoa" },
1809
+ "Psychiatric": { "@id": "schema:Psychiatric" },
1810
+ "PsychologicalTreatment": { "@id": "schema:PsychologicalTreatment" },
1811
+ "PublicHealth": { "@id": "schema:PublicHealth" },
1812
+ "PublicHolidays": { "@id": "schema:PublicHolidays" },
1813
+ "PublicSwimmingPool": { "@id": "schema:PublicSwimmingPool" },
1814
+ "PublicToilet": { "@id": "schema:PublicToilet" },
1815
+ "PublicationEvent": { "@id": "schema:PublicationEvent" },
1816
+ "PublicationIssue": { "@id": "schema:PublicationIssue" },
1817
+ "PublicationVolume": { "@id": "schema:PublicationVolume" },
1818
+ "Pulmonary": { "@id": "schema:Pulmonary" },
1819
+ "QAPage": { "@id": "schema:QAPage" },
1820
+ "QualitativeValue": { "@id": "schema:QualitativeValue" },
1821
+ "QuantitativeValue": { "@id": "schema:QuantitativeValue" },
1822
+ "QuantitativeValueDistribution": { "@id": "schema:QuantitativeValueDistribution" },
1823
+ "Quantity": { "@id": "schema:Quantity" },
1824
+ "Question": { "@id": "schema:Question" },
1825
+ "Quiz": { "@id": "schema:Quiz" },
1826
+ "Quotation": { "@id": "schema:Quotation" },
1827
+ "QuoteAction": { "@id": "schema:QuoteAction" },
1828
+ "RVPark": { "@id": "schema:RVPark" },
1829
+ "RadiationTherapy": { "@id": "schema:RadiationTherapy" },
1830
+ "RadioBroadcastService": { "@id": "schema:RadioBroadcastService" },
1831
+ "RadioChannel": { "@id": "schema:RadioChannel" },
1832
+ "RadioClip": { "@id": "schema:RadioClip" },
1833
+ "RadioEpisode": { "@id": "schema:RadioEpisode" },
1834
+ "RadioSeason": { "@id": "schema:RadioSeason" },
1835
+ "RadioSeries": { "@id": "schema:RadioSeries" },
1836
+ "RadioStation": { "@id": "schema:RadioStation" },
1837
+ "Radiography": { "@id": "schema:Radiography" },
1838
+ "RandomizedTrial": { "@id": "schema:RandomizedTrial" },
1839
+ "Rating": { "@id": "schema:Rating" },
1840
+ "ReactAction": { "@id": "schema:ReactAction" },
1841
+ "ReadAction": { "@id": "schema:ReadAction" },
1842
+ "ReadPermission": { "@id": "schema:ReadPermission" },
1843
+ "RealEstateAgent": { "@id": "schema:RealEstateAgent" },
1844
+ "RealEstateListing": { "@id": "schema:RealEstateListing" },
1845
+ "RearWheelDriveConfiguration": { "@id": "schema:RearWheelDriveConfiguration" },
1846
+ "ReceiveAction": { "@id": "schema:ReceiveAction" },
1847
+ "Recipe": { "@id": "schema:Recipe" },
1848
+ "Recommendation": { "@id": "schema:Recommendation" },
1849
+ "RecommendedDoseSchedule": { "@id": "schema:RecommendedDoseSchedule" },
1850
+ "Recruiting": { "@id": "schema:Recruiting" },
1851
+ "RecyclingCenter": { "@id": "schema:RecyclingCenter" },
1852
+ "ReducedRelevanceForChildrenConsideration": { "@id": "schema:ReducedRelevanceForChildrenConsideration" },
1853
+ "RefundTypeEnumeration": { "@id": "schema:RefundTypeEnumeration" },
1854
+ "RefurbishedCondition": { "@id": "schema:RefurbishedCondition" },
1855
+ "RegisterAction": { "@id": "schema:RegisterAction" },
1856
+ "Registry": { "@id": "schema:Registry" },
1857
+ "RegularPrice": { "@id": "schema:RegularPrice" },
1858
+ "ReimbursementCap": { "@id": "schema:ReimbursementCap" },
1859
+ "RejectAction": { "@id": "schema:RejectAction" },
1860
+ "RelatedTopicsHealthAspect": { "@id": "schema:RelatedTopicsHealthAspect" },
1861
+ "RemixAlbum": { "@id": "schema:RemixAlbum" },
1862
+ "Renal": { "@id": "schema:Renal" },
1863
+ "RentAction": { "@id": "schema:RentAction" },
1864
+ "RentalCarReservation": { "@id": "schema:RentalCarReservation" },
1865
+ "RentalVehicleUsage": { "@id": "schema:RentalVehicleUsage" },
1866
+ "RepaymentSpecification": { "@id": "schema:RepaymentSpecification" },
1867
+ "ReplaceAction": { "@id": "schema:ReplaceAction" },
1868
+ "ReplyAction": { "@id": "schema:ReplyAction" },
1869
+ "Report": { "@id": "schema:Report" },
1870
+ "ReportageNewsArticle": { "@id": "schema:ReportageNewsArticle" },
1871
+ "ReportedDoseSchedule": { "@id": "schema:ReportedDoseSchedule" },
1872
+ "ResearchOrganization": { "@id": "schema:ResearchOrganization" },
1873
+ "ResearchProject": { "@id": "schema:ResearchProject" },
1874
+ "Researcher": { "@id": "schema:Researcher" },
1875
+ "Reservation": { "@id": "schema:Reservation" },
1876
+ "ReservationCancelled": { "@id": "schema:ReservationCancelled" },
1877
+ "ReservationConfirmed": { "@id": "schema:ReservationConfirmed" },
1878
+ "ReservationHold": { "@id": "schema:ReservationHold" },
1879
+ "ReservationPackage": { "@id": "schema:ReservationPackage" },
1880
+ "ReservationPending": { "@id": "schema:ReservationPending" },
1881
+ "ReservationStatusType": { "@id": "schema:ReservationStatusType" },
1882
+ "ReserveAction": { "@id": "schema:ReserveAction" },
1883
+ "Reserved": { "@id": "schema:Reserved" },
1884
+ "Reservoir": { "@id": "schema:Reservoir" },
1885
+ "Residence": { "@id": "schema:Residence" },
1886
+ "Resort": { "@id": "schema:Resort" },
1887
+ "RespiratoryTherapy": { "@id": "schema:RespiratoryTherapy" },
1888
+ "Restaurant": { "@id": "schema:Restaurant" },
1889
+ "RestockingFees": { "@id": "schema:RestockingFees" },
1890
+ "RestrictedDiet": { "@id": "schema:RestrictedDiet" },
1891
+ "ResultsAvailable": { "@id": "schema:ResultsAvailable" },
1892
+ "ResultsNotAvailable": { "@id": "schema:ResultsNotAvailable" },
1893
+ "ResumeAction": { "@id": "schema:ResumeAction" },
1894
+ "Retail": { "@id": "schema:Retail" },
1895
+ "ReturnAction": { "@id": "schema:ReturnAction" },
1896
+ "ReturnAtKiosk": { "@id": "schema:ReturnAtKiosk" },
1897
+ "ReturnByMail": { "@id": "schema:ReturnByMail" },
1898
+ "ReturnFeesCustomerResponsibility": { "@id": "schema:ReturnFeesCustomerResponsibility" },
1899
+ "ReturnFeesEnumeration": { "@id": "schema:ReturnFeesEnumeration" },
1900
+ "ReturnInStore": { "@id": "schema:ReturnInStore" },
1901
+ "ReturnLabelCustomerResponsibility": { "@id": "schema:ReturnLabelCustomerResponsibility" },
1902
+ "ReturnLabelDownloadAndPrint": { "@id": "schema:ReturnLabelDownloadAndPrint" },
1903
+ "ReturnLabelInBox": { "@id": "schema:ReturnLabelInBox" },
1904
+ "ReturnLabelSourceEnumeration": { "@id": "schema:ReturnLabelSourceEnumeration" },
1905
+ "ReturnMethodEnumeration": { "@id": "schema:ReturnMethodEnumeration" },
1906
+ "ReturnShippingFees": { "@id": "schema:ReturnShippingFees" },
1907
+ "Review": { "@id": "schema:Review" },
1908
+ "ReviewAction": { "@id": "schema:ReviewAction" },
1909
+ "ReviewNewsArticle": { "@id": "schema:ReviewNewsArticle" },
1910
+ "Rheumatologic": { "@id": "schema:Rheumatologic" },
1911
+ "RightHandDriving": { "@id": "schema:RightHandDriving" },
1912
+ "RisksOrComplicationsHealthAspect": { "@id": "schema:RisksOrComplicationsHealthAspect" },
1913
+ "RiverBodyOfWater": { "@id": "schema:RiverBodyOfWater" },
1914
+ "Role": { "@id": "schema:Role" },
1915
+ "RoofingContractor": { "@id": "schema:RoofingContractor" },
1916
+ "Room": { "@id": "schema:Room" },
1917
+ "RsvpAction": { "@id": "schema:RsvpAction" },
1918
+ "RsvpResponseMaybe": { "@id": "schema:RsvpResponseMaybe" },
1919
+ "RsvpResponseNo": { "@id": "schema:RsvpResponseNo" },
1920
+ "RsvpResponseType": { "@id": "schema:RsvpResponseType" },
1921
+ "RsvpResponseYes": { "@id": "schema:RsvpResponseYes" },
1922
+ "SRP": { "@id": "schema:SRP" },
1923
+ "SafetyHealthAspect": { "@id": "schema:SafetyHealthAspect" },
1924
+ "SaleEvent": { "@id": "schema:SaleEvent" },
1925
+ "SalePrice": { "@id": "schema:SalePrice" },
1926
+ "SatireOrParodyContent": { "@id": "schema:SatireOrParodyContent" },
1927
+ "SatiricalArticle": { "@id": "schema:SatiricalArticle" },
1928
+ "Saturday": { "@id": "schema:Saturday" },
1929
+ "Schedule": { "@id": "schema:Schedule" },
1930
+ "ScheduleAction": { "@id": "schema:ScheduleAction" },
1931
+ "ScholarlyArticle": { "@id": "schema:ScholarlyArticle" },
1932
+ "School": { "@id": "schema:School" },
1933
+ "SchoolDistrict": { "@id": "schema:SchoolDistrict" },
1934
+ "ScreeningEvent": { "@id": "schema:ScreeningEvent" },
1935
+ "ScreeningHealthAspect": { "@id": "schema:ScreeningHealthAspect" },
1936
+ "Sculpture": { "@id": "schema:Sculpture" },
1937
+ "SeaBodyOfWater": { "@id": "schema:SeaBodyOfWater" },
1938
+ "SearchAction": { "@id": "schema:SearchAction" },
1939
+ "SearchRescueOrganization": { "@id": "schema:SearchRescueOrganization" },
1940
+ "SearchResultsPage": { "@id": "schema:SearchResultsPage" },
1941
+ "Season": { "@id": "schema:Season" },
1942
+ "Seat": { "@id": "schema:Seat" },
1943
+ "SeatingMap": { "@id": "schema:SeatingMap" },
1944
+ "SeeDoctorHealthAspect": { "@id": "schema:SeeDoctorHealthAspect" },
1945
+ "SeekToAction": { "@id": "schema:SeekToAction" },
1946
+ "SelfCareHealthAspect": { "@id": "schema:SelfCareHealthAspect" },
1947
+ "SelfStorage": { "@id": "schema:SelfStorage" },
1948
+ "SellAction": { "@id": "schema:SellAction" },
1949
+ "SendAction": { "@id": "schema:SendAction" },
1950
+ "Series": { "@id": "schema:Series" },
1951
+ "Service": { "@id": "schema:Service" },
1952
+ "ServiceChannel": { "@id": "schema:ServiceChannel" },
1953
+ "SexualContentConsideration": { "@id": "schema:SexualContentConsideration" },
1954
+ "ShareAction": { "@id": "schema:ShareAction" },
1955
+ "SheetMusic": { "@id": "schema:SheetMusic" },
1956
+ "ShippingDeliveryTime": { "@id": "schema:ShippingDeliveryTime" },
1957
+ "ShippingRateSettings": { "@id": "schema:ShippingRateSettings" },
1958
+ "ShoeStore": { "@id": "schema:ShoeStore" },
1959
+ "ShoppingCenter": { "@id": "schema:ShoppingCenter" },
1960
+ "ShortStory": { "@id": "schema:ShortStory" },
1961
+ "SideEffectsHealthAspect": { "@id": "schema:SideEffectsHealthAspect" },
1962
+ "SingleBlindedTrial": { "@id": "schema:SingleBlindedTrial" },
1963
+ "SingleCenterTrial": { "@id": "schema:SingleCenterTrial" },
1964
+ "SingleFamilyResidence": { "@id": "schema:SingleFamilyResidence" },
1965
+ "SinglePlayer": { "@id": "schema:SinglePlayer" },
1966
+ "SingleRelease": { "@id": "schema:SingleRelease" },
1967
+ "SiteNavigationElement": { "@id": "schema:SiteNavigationElement" },
1968
+ "SizeGroupEnumeration": { "@id": "schema:SizeGroupEnumeration" },
1969
+ "SizeSpecification": { "@id": "schema:SizeSpecification" },
1970
+ "SizeSystemEnumeration": { "@id": "schema:SizeSystemEnumeration" },
1971
+ "SizeSystemImperial": { "@id": "schema:SizeSystemImperial" },
1972
+ "SizeSystemMetric": { "@id": "schema:SizeSystemMetric" },
1973
+ "SkiResort": { "@id": "schema:SkiResort" },
1974
+ "Skin": { "@id": "schema:Skin" },
1975
+ "SocialEvent": { "@id": "schema:SocialEvent" },
1976
+ "SocialMediaPosting": { "@id": "schema:SocialMediaPosting" },
1977
+ "SoftwareApplication": { "@id": "schema:SoftwareApplication" },
1978
+ "SoftwareSourceCode": { "@id": "schema:SoftwareSourceCode" },
1979
+ "SoldOut": { "@id": "schema:SoldOut" },
1980
+ "SolveMathAction": { "@id": "schema:SolveMathAction" },
1981
+ "SomeProducts": { "@id": "schema:SomeProducts" },
1982
+ "SoundtrackAlbum": { "@id": "schema:SoundtrackAlbum" },
1983
+ "SpeakableSpecification": { "@id": "schema:SpeakableSpecification" },
1984
+ "SpecialAnnouncement": { "@id": "schema:SpecialAnnouncement" },
1985
+ "Specialty": { "@id": "schema:Specialty" },
1986
+ "SpeechPathology": { "@id": "schema:SpeechPathology" },
1987
+ "SpokenWordAlbum": { "@id": "schema:SpokenWordAlbum" },
1988
+ "SportingGoodsStore": { "@id": "schema:SportingGoodsStore" },
1989
+ "SportsActivityLocation": { "@id": "schema:SportsActivityLocation" },
1990
+ "SportsClub": { "@id": "schema:SportsClub" },
1991
+ "SportsEvent": { "@id": "schema:SportsEvent" },
1992
+ "SportsOrganization": { "@id": "schema:SportsOrganization" },
1993
+ "SportsTeam": { "@id": "schema:SportsTeam" },
1994
+ "SpreadsheetDigitalDocument": { "@id": "schema:SpreadsheetDigitalDocument" },
1995
+ "StadiumOrArena": { "@id": "schema:StadiumOrArena" },
1996
+ "StagedContent": { "@id": "schema:StagedContent" },
1997
+ "StagesHealthAspect": { "@id": "schema:StagesHealthAspect" },
1998
+ "State": { "@id": "schema:State" },
1999
+ "Statement": { "@id": "schema:Statement" },
2000
+ "StatisticalPopulation": { "@id": "schema:StatisticalPopulation" },
2001
+ "StatisticalVariable": { "@id": "schema:StatisticalVariable" },
2002
+ "StatusEnumeration": { "@id": "schema:StatusEnumeration" },
2003
+ "SteeringPositionValue": { "@id": "schema:SteeringPositionValue" },
2004
+ "Store": { "@id": "schema:Store" },
2005
+ "StoreCreditRefund": { "@id": "schema:StoreCreditRefund" },
2006
+ "StrengthTraining": { "@id": "schema:StrengthTraining" },
2007
+ "StructuredValue": { "@id": "schema:StructuredValue" },
2008
+ "StudioAlbum": { "@id": "schema:StudioAlbum" },
2009
+ "StupidType": { "@id": "schema:StupidType" },
2010
+ "SubscribeAction": { "@id": "schema:SubscribeAction" },
2011
+ "Subscription": { "@id": "schema:Subscription" },
2012
+ "Substance": { "@id": "schema:Substance" },
2013
+ "SubwayStation": { "@id": "schema:SubwayStation" },
2014
+ "Suite": { "@id": "schema:Suite" },
2015
+ "Sunday": { "@id": "schema:Sunday" },
2016
+ "SuperficialAnatomy": { "@id": "schema:SuperficialAnatomy" },
2017
+ "Surgical": { "@id": "schema:Surgical" },
2018
+ "SurgicalProcedure": { "@id": "schema:SurgicalProcedure" },
2019
+ "SuspendAction": { "@id": "schema:SuspendAction" },
2020
+ "Suspended": { "@id": "schema:Suspended" },
2021
+ "Syllabus": { "@id": "schema:Syllabus" },
2022
+ "SymptomsHealthAspect": { "@id": "schema:SymptomsHealthAspect" },
2023
+ "Synagogue": { "@id": "schema:Synagogue" },
2024
+ "TVClip": { "@id": "schema:TVClip" },
2025
+ "TVEpisode": { "@id": "schema:TVEpisode" },
2026
+ "TVSeason": { "@id": "schema:TVSeason" },
2027
+ "TVSeries": { "@id": "schema:TVSeries" },
2028
+ "Table": { "@id": "schema:Table" },
2029
+ "TakeAction": { "@id": "schema:TakeAction" },
2030
+ "TattooParlor": { "@id": "schema:TattooParlor" },
2031
+ "Taxi": { "@id": "schema:Taxi" },
2032
+ "TaxiReservation": { "@id": "schema:TaxiReservation" },
2033
+ "TaxiService": { "@id": "schema:TaxiService" },
2034
+ "TaxiStand": { "@id": "schema:TaxiStand" },
2035
+ "TaxiVehicleUsage": { "@id": "schema:TaxiVehicleUsage" },
2036
+ "Taxon": { "@id": "schema:Taxon" },
2037
+ "TechArticle": { "@id": "schema:TechArticle" },
2038
+ "TelevisionChannel": { "@id": "schema:TelevisionChannel" },
2039
+ "TelevisionStation": { "@id": "schema:TelevisionStation" },
2040
+ "TennisComplex": { "@id": "schema:TennisComplex" },
2041
+ "Terminated": { "@id": "schema:Terminated" },
2042
+ "Text": { "@id": "schema:Text" },
2043
+ "TextDigitalDocument": { "@id": "schema:TextDigitalDocument" },
2044
+ "TextObject": { "@id": "schema:TextObject" },
2045
+ "TheaterEvent": { "@id": "schema:TheaterEvent" },
2046
+ "TheaterGroup": { "@id": "schema:TheaterGroup" },
2047
+ "Therapeutic": { "@id": "schema:Therapeutic" },
2048
+ "TherapeuticProcedure": { "@id": "schema:TherapeuticProcedure" },
2049
+ "Thesis": { "@id": "schema:Thesis" },
2050
+ "Thing": { "@id": "schema:Thing" },
2051
+ "Throat": { "@id": "schema:Throat" },
2052
+ "Thursday": { "@id": "schema:Thursday" },
2053
+ "Ticket": { "@id": "schema:Ticket" },
2054
+ "TieAction": { "@id": "schema:TieAction" },
2055
+ "TierBenefitEnumeration": { "@id": "schema:TierBenefitEnumeration" },
2056
+ "TierBenefitLoyaltyPoints": { "@id": "schema:TierBenefitLoyaltyPoints" },
2057
+ "TierBenefitLoyaltyPrice": { "@id": "schema:TierBenefitLoyaltyPrice" },
2058
+ "TierBenefitLoyaltyReturns": { "@id": "schema:TierBenefitLoyaltyReturns" },
2059
+ "TierBenefitLoyaltyShipping": { "@id": "schema:TierBenefitLoyaltyShipping" },
2060
+ "Time": { "@id": "schema:Time" },
2061
+ "TipAction": { "@id": "schema:TipAction" },
2062
+ "TireShop": { "@id": "schema:TireShop" },
2063
+ "TobaccoNicotineConsideration": { "@id": "schema:TobaccoNicotineConsideration" },
2064
+ "TollFree": { "@id": "schema:TollFree" },
2065
+ "TouristAttraction": { "@id": "schema:TouristAttraction" },
2066
+ "TouristDestination": { "@id": "schema:TouristDestination" },
2067
+ "TouristInformationCenter": { "@id": "schema:TouristInformationCenter" },
2068
+ "TouristTrip": { "@id": "schema:TouristTrip" },
2069
+ "Toxicologic": { "@id": "schema:Toxicologic" },
2070
+ "ToyStore": { "@id": "schema:ToyStore" },
2071
+ "TrackAction": { "@id": "schema:TrackAction" },
2072
+ "TradeAction": { "@id": "schema:TradeAction" },
2073
+ "TraditionalChinese": { "@id": "schema:TraditionalChinese" },
2074
+ "TrainReservation": { "@id": "schema:TrainReservation" },
2075
+ "TrainStation": { "@id": "schema:TrainStation" },
2076
+ "TrainTrip": { "@id": "schema:TrainTrip" },
2077
+ "TrainedAlgorithmicMediaDigitalSource": { "@id": "schema:TrainedAlgorithmicMediaDigitalSource" },
2078
+ "TransferAction": { "@id": "schema:TransferAction" },
2079
+ "TransformedContent": { "@id": "schema:TransformedContent" },
2080
+ "TransitMap": { "@id": "schema:TransitMap" },
2081
+ "TravelAction": { "@id": "schema:TravelAction" },
2082
+ "TravelAgency": { "@id": "schema:TravelAgency" },
2083
+ "TreatmentIndication": { "@id": "schema:TreatmentIndication" },
2084
+ "TreatmentsHealthAspect": { "@id": "schema:TreatmentsHealthAspect" },
2085
+ "Trip": { "@id": "schema:Trip" },
2086
+ "TripleBlindedTrial": { "@id": "schema:TripleBlindedTrial" },
2087
+ "True": { "@id": "schema:True" },
2088
+ "Tuesday": { "@id": "schema:Tuesday" },
2089
+ "TypeAndQuantityNode": { "@id": "schema:TypeAndQuantityNode" },
2090
+ "TypesHealthAspect": { "@id": "schema:TypesHealthAspect" },
2091
+ "UKNonprofitType": { "@id": "schema:UKNonprofitType" },
2092
+ "UKTrust": { "@id": "schema:UKTrust" },
2093
+ "URL": { "@id": "schema:URL" },
2094
+ "USNonprofitType": { "@id": "schema:USNonprofitType" },
2095
+ "Ultrasound": { "@id": "schema:Ultrasound" },
2096
+ "UnRegisterAction": { "@id": "schema:UnRegisterAction" },
2097
+ "UnclassifiedAdultConsideration": { "@id": "schema:UnclassifiedAdultConsideration" },
2098
+ "UnemploymentSupport": { "@id": "schema:UnemploymentSupport" },
2099
+ "UnincorporatedAssociationCharity": { "@id": "schema:UnincorporatedAssociationCharity" },
2100
+ "UnitPriceSpecification": { "@id": "schema:UnitPriceSpecification" },
2101
+ "UnofficialLegalValue": { "@id": "schema:UnofficialLegalValue" },
2102
+ "UpdateAction": { "@id": "schema:UpdateAction" },
2103
+ "Urologic": { "@id": "schema:Urologic" },
2104
+ "UsageOrScheduleHealthAspect": { "@id": "schema:UsageOrScheduleHealthAspect" },
2105
+ "UseAction": { "@id": "schema:UseAction" },
2106
+ "UsedCondition": { "@id": "schema:UsedCondition" },
2107
+ "UserBlocks": { "@id": "schema:UserBlocks" },
2108
+ "UserCheckins": { "@id": "schema:UserCheckins" },
2109
+ "UserComments": { "@id": "schema:UserComments" },
2110
+ "UserDownloads": { "@id": "schema:UserDownloads" },
2111
+ "UserInteraction": { "@id": "schema:UserInteraction" },
2112
+ "UserLikes": { "@id": "schema:UserLikes" },
2113
+ "UserPageVisits": { "@id": "schema:UserPageVisits" },
2114
+ "UserPlays": { "@id": "schema:UserPlays" },
2115
+ "UserPlusOnes": { "@id": "schema:UserPlusOnes" },
2116
+ "UserReview": { "@id": "schema:UserReview" },
2117
+ "UserTweets": { "@id": "schema:UserTweets" },
2118
+ "VacationRental": { "@id": "schema:VacationRental" },
2119
+ "VeganDiet": { "@id": "schema:VeganDiet" },
2120
+ "VegetarianDiet": { "@id": "schema:VegetarianDiet" },
2121
+ "Vehicle": { "@id": "schema:Vehicle" },
2122
+ "Vein": { "@id": "schema:Vein" },
2123
+ "VenueMap": { "@id": "schema:VenueMap" },
2124
+ "Vessel": { "@id": "schema:Vessel" },
2125
+ "VeterinaryCare": { "@id": "schema:VeterinaryCare" },
2126
+ "VideoGallery": { "@id": "schema:VideoGallery" },
2127
+ "VideoGame": { "@id": "schema:VideoGame" },
2128
+ "VideoGameClip": { "@id": "schema:VideoGameClip" },
2129
+ "VideoGameSeries": { "@id": "schema:VideoGameSeries" },
2130
+ "VideoObject": { "@id": "schema:VideoObject" },
2131
+ "VideoObjectSnapshot": { "@id": "schema:VideoObjectSnapshot" },
2132
+ "ViewAction": { "@id": "schema:ViewAction" },
2133
+ "VinylFormat": { "@id": "schema:VinylFormat" },
2134
+ "ViolenceConsideration": { "@id": "schema:ViolenceConsideration" },
2135
+ "VirtualLocation": { "@id": "schema:VirtualLocation" },
2136
+ "VirtualRecordingDigitalSource": { "@id": "schema:VirtualRecordingDigitalSource" },
2137
+ "Virus": { "@id": "schema:Virus" },
2138
+ "VisualArtsEvent": { "@id": "schema:VisualArtsEvent" },
2139
+ "VisualArtwork": { "@id": "schema:VisualArtwork" },
2140
+ "VitalSign": { "@id": "schema:VitalSign" },
2141
+ "Volcano": { "@id": "schema:Volcano" },
2142
+ "VoteAction": { "@id": "schema:VoteAction" },
2143
+ "WPAdBlock": { "@id": "schema:WPAdBlock" },
2144
+ "WPFooter": { "@id": "schema:WPFooter" },
2145
+ "WPHeader": { "@id": "schema:WPHeader" },
2146
+ "WPSideBar": { "@id": "schema:WPSideBar" },
2147
+ "WantAction": { "@id": "schema:WantAction" },
2148
+ "WarrantyPromise": { "@id": "schema:WarrantyPromise" },
2149
+ "WarrantyScope": { "@id": "schema:WarrantyScope" },
2150
+ "WatchAction": { "@id": "schema:WatchAction" },
2151
+ "Waterfall": { "@id": "schema:Waterfall" },
2152
+ "WeaponConsideration": { "@id": "schema:WeaponConsideration" },
2153
+ "WearAction": { "@id": "schema:WearAction" },
2154
+ "WearableMeasurementBack": { "@id": "schema:WearableMeasurementBack" },
2155
+ "WearableMeasurementChestOrBust": { "@id": "schema:WearableMeasurementChestOrBust" },
2156
+ "WearableMeasurementCollar": { "@id": "schema:WearableMeasurementCollar" },
2157
+ "WearableMeasurementCup": { "@id": "schema:WearableMeasurementCup" },
2158
+ "WearableMeasurementHeight": { "@id": "schema:WearableMeasurementHeight" },
2159
+ "WearableMeasurementHips": { "@id": "schema:WearableMeasurementHips" },
2160
+ "WearableMeasurementInseam": { "@id": "schema:WearableMeasurementInseam" },
2161
+ "WearableMeasurementLength": { "@id": "schema:WearableMeasurementLength" },
2162
+ "WearableMeasurementOutsideLeg": { "@id": "schema:WearableMeasurementOutsideLeg" },
2163
+ "WearableMeasurementSleeve": { "@id": "schema:WearableMeasurementSleeve" },
2164
+ "WearableMeasurementTypeEnumeration": { "@id": "schema:WearableMeasurementTypeEnumeration" },
2165
+ "WearableMeasurementWaist": { "@id": "schema:WearableMeasurementWaist" },
2166
+ "WearableMeasurementWidth": { "@id": "schema:WearableMeasurementWidth" },
2167
+ "WearableSizeGroupBig": { "@id": "schema:WearableSizeGroupBig" },
2168
+ "WearableSizeGroupBoys": { "@id": "schema:WearableSizeGroupBoys" },
2169
+ "WearableSizeGroupEnumeration": { "@id": "schema:WearableSizeGroupEnumeration" },
2170
+ "WearableSizeGroupExtraShort": { "@id": "schema:WearableSizeGroupExtraShort" },
2171
+ "WearableSizeGroupExtraTall": { "@id": "schema:WearableSizeGroupExtraTall" },
2172
+ "WearableSizeGroupGirls": { "@id": "schema:WearableSizeGroupGirls" },
2173
+ "WearableSizeGroupHusky": { "@id": "schema:WearableSizeGroupHusky" },
2174
+ "WearableSizeGroupInfants": { "@id": "schema:WearableSizeGroupInfants" },
2175
+ "WearableSizeGroupJuniors": { "@id": "schema:WearableSizeGroupJuniors" },
2176
+ "WearableSizeGroupMaternity": { "@id": "schema:WearableSizeGroupMaternity" },
2177
+ "WearableSizeGroupMens": { "@id": "schema:WearableSizeGroupMens" },
2178
+ "WearableSizeGroupMisses": { "@id": "schema:WearableSizeGroupMisses" },
2179
+ "WearableSizeGroupPetite": { "@id": "schema:WearableSizeGroupPetite" },
2180
+ "WearableSizeGroupPlus": { "@id": "schema:WearableSizeGroupPlus" },
2181
+ "WearableSizeGroupRegular": { "@id": "schema:WearableSizeGroupRegular" },
2182
+ "WearableSizeGroupShort": { "@id": "schema:WearableSizeGroupShort" },
2183
+ "WearableSizeGroupTall": { "@id": "schema:WearableSizeGroupTall" },
2184
+ "WearableSizeGroupWomens": { "@id": "schema:WearableSizeGroupWomens" },
2185
+ "WearableSizeSystemAU": { "@id": "schema:WearableSizeSystemAU" },
2186
+ "WearableSizeSystemBR": { "@id": "schema:WearableSizeSystemBR" },
2187
+ "WearableSizeSystemCN": { "@id": "schema:WearableSizeSystemCN" },
2188
+ "WearableSizeSystemContinental": { "@id": "schema:WearableSizeSystemContinental" },
2189
+ "WearableSizeSystemDE": { "@id": "schema:WearableSizeSystemDE" },
2190
+ "WearableSizeSystemEN13402": { "@id": "schema:WearableSizeSystemEN13402" },
2191
+ "WearableSizeSystemEnumeration": { "@id": "schema:WearableSizeSystemEnumeration" },
2192
+ "WearableSizeSystemEurope": { "@id": "schema:WearableSizeSystemEurope" },
2193
+ "WearableSizeSystemFR": { "@id": "schema:WearableSizeSystemFR" },
2194
+ "WearableSizeSystemGS1": { "@id": "schema:WearableSizeSystemGS1" },
2195
+ "WearableSizeSystemIT": { "@id": "schema:WearableSizeSystemIT" },
2196
+ "WearableSizeSystemJP": { "@id": "schema:WearableSizeSystemJP" },
2197
+ "WearableSizeSystemMX": { "@id": "schema:WearableSizeSystemMX" },
2198
+ "WearableSizeSystemUK": { "@id": "schema:WearableSizeSystemUK" },
2199
+ "WearableSizeSystemUS": { "@id": "schema:WearableSizeSystemUS" },
2200
+ "WebAPI": { "@id": "schema:WebAPI" },
2201
+ "WebApplication": { "@id": "schema:WebApplication" },
2202
+ "WebContent": { "@id": "schema:WebContent" },
2203
+ "WebPage": { "@id": "schema:WebPage" },
2204
+ "WebPageElement": { "@id": "schema:WebPageElement" },
2205
+ "WebSite": { "@id": "schema:WebSite" },
2206
+ "Wednesday": { "@id": "schema:Wednesday" },
2207
+ "WesternConventional": { "@id": "schema:WesternConventional" },
2208
+ "Wholesale": { "@id": "schema:Wholesale" },
2209
+ "WholesaleStore": { "@id": "schema:WholesaleStore" },
2210
+ "WinAction": { "@id": "schema:WinAction" },
2211
+ "Winery": { "@id": "schema:Winery" },
2212
+ "Withdrawn": { "@id": "schema:Withdrawn" },
2213
+ "WorkBasedProgram": { "@id": "schema:WorkBasedProgram" },
2214
+ "WorkersUnion": { "@id": "schema:WorkersUnion" },
2215
+ "WriteAction": { "@id": "schema:WriteAction" },
2216
+ "WritePermission": { "@id": "schema:WritePermission" },
2217
+ "XPathType": { "@id": "schema:XPathType" },
2218
+ "XRay": { "@id": "schema:XRay" },
2219
+ "ZoneBoardingPolicy": { "@id": "schema:ZoneBoardingPolicy" },
2220
+ "Zoo": { "@id": "schema:Zoo" },
2221
+ "about": { "@id": "schema:about" },
2222
+ "abridged": { "@id": "schema:abridged" },
2223
+ "abstract": { "@id": "schema:abstract" },
2224
+ "accelerationTime": { "@id": "schema:accelerationTime" },
2225
+ "acceptedAnswer": { "@id": "schema:acceptedAnswer" },
2226
+ "acceptedOffer": { "@id": "schema:acceptedOffer" },
2227
+ "acceptedPaymentMethod": { "@id": "schema:acceptedPaymentMethod" },
2228
+ "acceptsReservations": { "@id": "schema:acceptsReservations" },
2229
+ "accessCode": { "@id": "schema:accessCode" },
2230
+ "accessMode": { "@id": "schema:accessMode" },
2231
+ "accessModeSufficient": { "@id": "schema:accessModeSufficient" },
2232
+ "accessibilityAPI": { "@id": "schema:accessibilityAPI" },
2233
+ "accessibilityControl": { "@id": "schema:accessibilityControl" },
2234
+ "accessibilityFeature": { "@id": "schema:accessibilityFeature" },
2235
+ "accessibilityHazard": { "@id": "schema:accessibilityHazard" },
2236
+ "accessibilitySummary": { "@id": "schema:accessibilitySummary" },
2237
+ "accommodationCategory": { "@id": "schema:accommodationCategory" },
2238
+ "accommodationFloorPlan": { "@id": "schema:accommodationFloorPlan" },
2239
+ "accountId": { "@id": "schema:accountId" },
2240
+ "accountMinimumInflow": { "@id": "schema:accountMinimumInflow" },
2241
+ "accountOverdraftLimit": { "@id": "schema:accountOverdraftLimit" },
2242
+ "accountablePerson": { "@id": "schema:accountablePerson" },
2243
+ "acquireLicensePage": {
2244
+ "@id": "schema:acquireLicensePage",
2245
+ "@type": "@id"
2246
+ },
2247
+ "acquiredFrom": { "@id": "schema:acquiredFrom" },
2248
+ "acrissCode": { "@id": "schema:acrissCode" },
2249
+ "actionAccessibilityRequirement": { "@id": "schema:actionAccessibilityRequirement" },
2250
+ "actionApplication": { "@id": "schema:actionApplication" },
2251
+ "actionOption": { "@id": "schema:actionOption" },
2252
+ "actionPlatform": { "@id": "schema:actionPlatform" },
2253
+ "actionStatus": { "@id": "schema:actionStatus" },
2254
+ "actionableFeedbackPolicy": {
2255
+ "@id": "schema:actionableFeedbackPolicy",
2256
+ "@type": "@id"
2257
+ },
2258
+ "activeIngredient": { "@id": "schema:activeIngredient" },
2259
+ "activityDuration": { "@id": "schema:activityDuration" },
2260
+ "activityFrequency": { "@id": "schema:activityFrequency" },
2261
+ "actor": { "@id": "schema:actor" },
2262
+ "actors": { "@id": "schema:actors" },
2263
+ "addOn": { "@id": "schema:addOn" },
2264
+ "additionalName": { "@id": "schema:additionalName" },
2265
+ "additionalNumberOfGuests": { "@id": "schema:additionalNumberOfGuests" },
2266
+ "additionalProperty": { "@id": "schema:additionalProperty" },
2267
+ "additionalType": { "@id": "schema:additionalType" },
2268
+ "additionalVariable": { "@id": "schema:additionalVariable" },
2269
+ "address": { "@id": "schema:address" },
2270
+ "addressCountry": { "@id": "schema:addressCountry" },
2271
+ "addressLocality": { "@id": "schema:addressLocality" },
2272
+ "addressRegion": { "@id": "schema:addressRegion" },
2273
+ "administrationRoute": { "@id": "schema:administrationRoute" },
2274
+ "advanceBookingRequirement": { "@id": "schema:advanceBookingRequirement" },
2275
+ "adverseOutcome": { "@id": "schema:adverseOutcome" },
2276
+ "affectedBy": { "@id": "schema:affectedBy" },
2277
+ "affiliation": { "@id": "schema:affiliation" },
2278
+ "afterMedia": {
2279
+ "@id": "schema:afterMedia",
2280
+ "@type": "@id"
2281
+ },
2282
+ "agent": { "@id": "schema:agent" },
2283
+ "agentInteractionStatistic": { "@id": "schema:agentInteractionStatistic" },
2284
+ "aggregateRating": { "@id": "schema:aggregateRating" },
2285
+ "aircraft": { "@id": "schema:aircraft" },
2286
+ "album": { "@id": "schema:album" },
2287
+ "albumProductionType": { "@id": "schema:albumProductionType" },
2288
+ "albumRelease": { "@id": "schema:albumRelease" },
2289
+ "albumReleaseType": { "@id": "schema:albumReleaseType" },
2290
+ "albums": { "@id": "schema:albums" },
2291
+ "alcoholWarning": { "@id": "schema:alcoholWarning" },
2292
+ "algorithm": { "@id": "schema:algorithm" },
2293
+ "alignmentType": { "@id": "schema:alignmentType" },
2294
+ "alternateName": { "@id": "schema:alternateName" },
2295
+ "alternativeHeadline": { "@id": "schema:alternativeHeadline" },
2296
+ "alternativeOf": { "@id": "schema:alternativeOf" },
2297
+ "alumni": { "@id": "schema:alumni" },
2298
+ "alumniOf": { "@id": "schema:alumniOf" },
2299
+ "amenityFeature": { "@id": "schema:amenityFeature" },
2300
+ "amount": { "@id": "schema:amount" },
2301
+ "amountOfThisGood": { "@id": "schema:amountOfThisGood" },
2302
+ "announcementLocation": { "@id": "schema:announcementLocation" },
2303
+ "annualPercentageRate": { "@id": "schema:annualPercentageRate" },
2304
+ "answerCount": { "@id": "schema:answerCount" },
2305
+ "answerExplanation": { "@id": "schema:answerExplanation" },
2306
+ "antagonist": { "@id": "schema:antagonist" },
2307
+ "appearance": { "@id": "schema:appearance" },
2308
+ "applicableCountry": { "@id": "schema:applicableCountry" },
2309
+ "applicableLocation": { "@id": "schema:applicableLocation" },
2310
+ "applicantLocationRequirements": { "@id": "schema:applicantLocationRequirements" },
2311
+ "application": { "@id": "schema:application" },
2312
+ "applicationCategory": { "@id": "schema:applicationCategory" },
2313
+ "applicationContact": { "@id": "schema:applicationContact" },
2314
+ "applicationDeadline": {
2315
+ "@id": "schema:applicationDeadline",
2316
+ "@type": "Date"
2317
+ },
2318
+ "applicationStartDate": {
2319
+ "@id": "schema:applicationStartDate",
2320
+ "@type": "Date"
2321
+ },
2322
+ "applicationSubCategory": { "@id": "schema:applicationSubCategory" },
2323
+ "applicationSuite": { "@id": "schema:applicationSuite" },
2324
+ "appliesToDeliveryMethod": { "@id": "schema:appliesToDeliveryMethod" },
2325
+ "appliesToPaymentMethod": { "@id": "schema:appliesToPaymentMethod" },
2326
+ "archiveHeld": { "@id": "schema:archiveHeld" },
2327
+ "archivedAt": {
2328
+ "@id": "schema:archivedAt",
2329
+ "@type": "@id"
2330
+ },
2331
+ "area": { "@id": "schema:area" },
2332
+ "areaServed": { "@id": "schema:areaServed" },
2333
+ "arrivalAirport": { "@id": "schema:arrivalAirport" },
2334
+ "arrivalBoatTerminal": { "@id": "schema:arrivalBoatTerminal" },
2335
+ "arrivalBusStop": { "@id": "schema:arrivalBusStop" },
2336
+ "arrivalGate": { "@id": "schema:arrivalGate" },
2337
+ "arrivalPlatform": { "@id": "schema:arrivalPlatform" },
2338
+ "arrivalStation": { "@id": "schema:arrivalStation" },
2339
+ "arrivalTerminal": { "@id": "schema:arrivalTerminal" },
2340
+ "arrivalTime": { "@id": "schema:arrivalTime" },
2341
+ "artEdition": { "@id": "schema:artEdition" },
2342
+ "artMedium": { "@id": "schema:artMedium" },
2343
+ "arterialBranch": { "@id": "schema:arterialBranch" },
2344
+ "artform": { "@id": "schema:artform" },
2345
+ "articleBody": { "@id": "schema:articleBody" },
2346
+ "articleSection": { "@id": "schema:articleSection" },
2347
+ "artist": { "@id": "schema:artist" },
2348
+ "artworkSurface": { "@id": "schema:artworkSurface" },
2349
+ "asin": { "@id": "schema:asin" },
2350
+ "aspect": { "@id": "schema:aspect" },
2351
+ "assembly": { "@id": "schema:assembly" },
2352
+ "assemblyVersion": { "@id": "schema:assemblyVersion" },
2353
+ "assesses": { "@id": "schema:assesses" },
2354
+ "associatedAnatomy": { "@id": "schema:associatedAnatomy" },
2355
+ "associatedArticle": { "@id": "schema:associatedArticle" },
2356
+ "associatedClaimReview": { "@id": "schema:associatedClaimReview" },
2357
+ "associatedDisease": {
2358
+ "@id": "schema:associatedDisease",
2359
+ "@type": "@id"
2360
+ },
2361
+ "associatedMedia": { "@id": "schema:associatedMedia" },
2362
+ "associatedMediaReview": { "@id": "schema:associatedMediaReview" },
2363
+ "associatedPathophysiology": { "@id": "schema:associatedPathophysiology" },
2364
+ "associatedReview": { "@id": "schema:associatedReview" },
2365
+ "athlete": { "@id": "schema:athlete" },
2366
+ "attendee": { "@id": "schema:attendee" },
2367
+ "attendees": { "@id": "schema:attendees" },
2368
+ "audience": { "@id": "schema:audience" },
2369
+ "audienceType": { "@id": "schema:audienceType" },
2370
+ "audio": { "@id": "schema:audio" },
2371
+ "auditDate": {
2372
+ "@id": "schema:auditDate",
2373
+ "@type": "Date"
2374
+ },
2375
+ "authenticator": { "@id": "schema:authenticator" },
2376
+ "author": { "@id": "schema:author" },
2377
+ "availability": { "@id": "schema:availability" },
2378
+ "availabilityEnds": {
2379
+ "@id": "schema:availabilityEnds",
2380
+ "@type": "Date"
2381
+ },
2382
+ "availabilityStarts": {
2383
+ "@id": "schema:availabilityStarts",
2384
+ "@type": "Date"
2385
+ },
2386
+ "availableAtOrFrom": { "@id": "schema:availableAtOrFrom" },
2387
+ "availableChannel": { "@id": "schema:availableChannel" },
2388
+ "availableDeliveryMethod": { "@id": "schema:availableDeliveryMethod" },
2389
+ "availableFrom": { "@id": "schema:availableFrom" },
2390
+ "availableIn": { "@id": "schema:availableIn" },
2391
+ "availableLanguage": { "@id": "schema:availableLanguage" },
2392
+ "availableOnDevice": { "@id": "schema:availableOnDevice" },
2393
+ "availableService": { "@id": "schema:availableService" },
2394
+ "availableStrength": { "@id": "schema:availableStrength" },
2395
+ "availableTest": { "@id": "schema:availableTest" },
2396
+ "availableThrough": { "@id": "schema:availableThrough" },
2397
+ "award": { "@id": "schema:award" },
2398
+ "awards": { "@id": "schema:awards" },
2399
+ "awayTeam": { "@id": "schema:awayTeam" },
2400
+ "backstory": { "@id": "schema:backstory" },
2401
+ "bankAccountType": { "@id": "schema:bankAccountType" },
2402
+ "baseSalary": { "@id": "schema:baseSalary" },
2403
+ "bccRecipient": { "@id": "schema:bccRecipient" },
2404
+ "bed": { "@id": "schema:bed" },
2405
+ "beforeMedia": {
2406
+ "@id": "schema:beforeMedia",
2407
+ "@type": "@id"
2408
+ },
2409
+ "beneficiaryBank": { "@id": "schema:beneficiaryBank" },
2410
+ "benefits": { "@id": "schema:benefits" },
2411
+ "benefitsSummaryUrl": {
2412
+ "@id": "schema:benefitsSummaryUrl",
2413
+ "@type": "@id"
2414
+ },
2415
+ "bestRating": { "@id": "schema:bestRating" },
2416
+ "billingAddress": { "@id": "schema:billingAddress" },
2417
+ "billingDuration": { "@id": "schema:billingDuration" },
2418
+ "billingIncrement": { "@id": "schema:billingIncrement" },
2419
+ "billingPeriod": { "@id": "schema:billingPeriod" },
2420
+ "billingStart": { "@id": "schema:billingStart" },
2421
+ "bioChemInteraction": { "@id": "schema:bioChemInteraction" },
2422
+ "bioChemSimilarity": { "@id": "schema:bioChemSimilarity" },
2423
+ "biologicalRole": { "@id": "schema:biologicalRole" },
2424
+ "biomechnicalClass": { "@id": "schema:biomechnicalClass" },
2425
+ "birthDate": {
2426
+ "@id": "schema:birthDate",
2427
+ "@type": "Date"
2428
+ },
2429
+ "birthPlace": { "@id": "schema:birthPlace" },
2430
+ "bitrate": { "@id": "schema:bitrate" },
2431
+ "blogPost": { "@id": "schema:blogPost" },
2432
+ "blogPosts": { "@id": "schema:blogPosts" },
2433
+ "bloodSupply": { "@id": "schema:bloodSupply" },
2434
+ "boardingGroup": { "@id": "schema:boardingGroup" },
2435
+ "boardingPolicy": { "@id": "schema:boardingPolicy" },
2436
+ "bodyLocation": { "@id": "schema:bodyLocation" },
2437
+ "bodyType": { "@id": "schema:bodyType" },
2438
+ "bookEdition": { "@id": "schema:bookEdition" },
2439
+ "bookFormat": { "@id": "schema:bookFormat" },
2440
+ "bookingAgent": { "@id": "schema:bookingAgent" },
2441
+ "bookingTime": { "@id": "schema:bookingTime" },
2442
+ "borrower": { "@id": "schema:borrower" },
2443
+ "box": { "@id": "schema:box" },
2444
+ "branch": { "@id": "schema:branch" },
2445
+ "branchCode": { "@id": "schema:branchCode" },
2446
+ "branchOf": { "@id": "schema:branchOf" },
2447
+ "brand": { "@id": "schema:brand" },
2448
+ "breadcrumb": { "@id": "schema:breadcrumb" },
2449
+ "breastfeedingWarning": { "@id": "schema:breastfeedingWarning" },
2450
+ "broadcastAffiliateOf": { "@id": "schema:broadcastAffiliateOf" },
2451
+ "broadcastChannelId": { "@id": "schema:broadcastChannelId" },
2452
+ "broadcastDisplayName": { "@id": "schema:broadcastDisplayName" },
2453
+ "broadcastFrequency": { "@id": "schema:broadcastFrequency" },
2454
+ "broadcastFrequencyValue": { "@id": "schema:broadcastFrequencyValue" },
2455
+ "broadcastOfEvent": { "@id": "schema:broadcastOfEvent" },
2456
+ "broadcastServiceTier": { "@id": "schema:broadcastServiceTier" },
2457
+ "broadcastSignalModulation": { "@id": "schema:broadcastSignalModulation" },
2458
+ "broadcastSubChannel": { "@id": "schema:broadcastSubChannel" },
2459
+ "broadcastTimezone": { "@id": "schema:broadcastTimezone" },
2460
+ "broadcaster": { "@id": "schema:broadcaster" },
2461
+ "broker": { "@id": "schema:broker" },
2462
+ "browserRequirements": { "@id": "schema:browserRequirements" },
2463
+ "busName": { "@id": "schema:busName" },
2464
+ "busNumber": { "@id": "schema:busNumber" },
2465
+ "businessDays": { "@id": "schema:businessDays" },
2466
+ "businessFunction": { "@id": "schema:businessFunction" },
2467
+ "buyer": { "@id": "schema:buyer" },
2468
+ "byArtist": { "@id": "schema:byArtist" },
2469
+ "byDay": { "@id": "schema:byDay" },
2470
+ "byMonth": { "@id": "schema:byMonth" },
2471
+ "byMonthDay": { "@id": "schema:byMonthDay" },
2472
+ "byMonthWeek": { "@id": "schema:byMonthWeek" },
2473
+ "callSign": { "@id": "schema:callSign" },
2474
+ "calories": { "@id": "schema:calories" },
2475
+ "candidate": { "@id": "schema:candidate" },
2476
+ "caption": { "@id": "schema:caption" },
2477
+ "carbohydrateContent": { "@id": "schema:carbohydrateContent" },
2478
+ "cargoVolume": { "@id": "schema:cargoVolume" },
2479
+ "carrier": { "@id": "schema:carrier" },
2480
+ "carrierRequirements": { "@id": "schema:carrierRequirements" },
2481
+ "cashBack": { "@id": "schema:cashBack" },
2482
+ "catalog": { "@id": "schema:catalog" },
2483
+ "catalogNumber": { "@id": "schema:catalogNumber" },
2484
+ "category": { "@id": "schema:category" },
2485
+ "causeOf": { "@id": "schema:causeOf" },
2486
+ "ccRecipient": { "@id": "schema:ccRecipient" },
2487
+ "certificationIdentification": { "@id": "schema:certificationIdentification" },
2488
+ "certificationRating": { "@id": "schema:certificationRating" },
2489
+ "certificationStatus": { "@id": "schema:certificationStatus" },
2490
+ "character": { "@id": "schema:character" },
2491
+ "characterAttribute": { "@id": "schema:characterAttribute" },
2492
+ "characterName": { "@id": "schema:characterName" },
2493
+ "cheatCode": { "@id": "schema:cheatCode" },
2494
+ "checkinTime": { "@id": "schema:checkinTime" },
2495
+ "checkoutPageURLTemplate": { "@id": "schema:checkoutPageURLTemplate" },
2496
+ "checkoutTime": { "@id": "schema:checkoutTime" },
2497
+ "chemicalComposition": { "@id": "schema:chemicalComposition" },
2498
+ "chemicalRole": { "@id": "schema:chemicalRole" },
2499
+ "childMaxAge": { "@id": "schema:childMaxAge" },
2500
+ "childMinAge": { "@id": "schema:childMinAge" },
2501
+ "childTaxon": { "@id": "schema:childTaxon" },
2502
+ "children": { "@id": "schema:children" },
2503
+ "cholesterolContent": { "@id": "schema:cholesterolContent" },
2504
+ "circle": { "@id": "schema:circle" },
2505
+ "citation": { "@id": "schema:citation" },
2506
+ "claimInterpreter": { "@id": "schema:claimInterpreter" },
2507
+ "claimReviewed": { "@id": "schema:claimReviewed" },
2508
+ "clincalPharmacology": { "@id": "schema:clincalPharmacology" },
2509
+ "clinicalPharmacology": { "@id": "schema:clinicalPharmacology" },
2510
+ "clipNumber": { "@id": "schema:clipNumber" },
2511
+ "closes": { "@id": "schema:closes" },
2512
+ "coach": { "@id": "schema:coach" },
2513
+ "code": { "@id": "schema:code" },
2514
+ "codeRepository": {
2515
+ "@id": "schema:codeRepository",
2516
+ "@type": "@id"
2517
+ },
2518
+ "codeSampleType": { "@id": "schema:codeSampleType" },
2519
+ "codeValue": { "@id": "schema:codeValue" },
2520
+ "codingSystem": { "@id": "schema:codingSystem" },
2521
+ "colleague": {
2522
+ "@id": "schema:colleague",
2523
+ "@type": "@id"
2524
+ },
2525
+ "colleagues": { "@id": "schema:colleagues" },
2526
+ "collection": { "@id": "schema:collection" },
2527
+ "collectionSize": { "@id": "schema:collectionSize" },
2528
+ "color": { "@id": "schema:color" },
2529
+ "colorSwatch": {
2530
+ "@id": "schema:colorSwatch",
2531
+ "@type": "@id"
2532
+ },
2533
+ "colorist": { "@id": "schema:colorist" },
2534
+ "comment": { "@id": "schema:comment" },
2535
+ "commentCount": { "@id": "schema:commentCount" },
2536
+ "commentText": { "@id": "schema:commentText" },
2537
+ "commentTime": {
2538
+ "@id": "schema:commentTime",
2539
+ "@type": "Date"
2540
+ },
2541
+ "competencyRequired": { "@id": "schema:competencyRequired" },
2542
+ "competitor": { "@id": "schema:competitor" },
2543
+ "composer": { "@id": "schema:composer" },
2544
+ "comprisedOf": { "@id": "schema:comprisedOf" },
2545
+ "conditionsOfAccess": { "@id": "schema:conditionsOfAccess" },
2546
+ "confirmationNumber": { "@id": "schema:confirmationNumber" },
2547
+ "connectedTo": { "@id": "schema:connectedTo" },
2548
+ "constraintProperty": {
2549
+ "@id": "schema:constraintProperty",
2550
+ "@type": "@id"
2551
+ },
2552
+ "contactOption": { "@id": "schema:contactOption" },
2553
+ "contactPoint": { "@id": "schema:contactPoint" },
2554
+ "contactPoints": { "@id": "schema:contactPoints" },
2555
+ "contactType": { "@id": "schema:contactType" },
2556
+ "contactlessPayment": { "@id": "schema:contactlessPayment" },
2557
+ "containedIn": { "@id": "schema:containedIn" },
2558
+ "containedInPlace": { "@id": "schema:containedInPlace" },
2559
+ "containsPlace": { "@id": "schema:containsPlace" },
2560
+ "containsSeason": { "@id": "schema:containsSeason" },
2561
+ "contentLocation": { "@id": "schema:contentLocation" },
2562
+ "contentRating": { "@id": "schema:contentRating" },
2563
+ "contentReferenceTime": { "@id": "schema:contentReferenceTime" },
2564
+ "contentSize": { "@id": "schema:contentSize" },
2565
+ "contentType": { "@id": "schema:contentType" },
2566
+ "contentUrl": {
2567
+ "@id": "schema:contentUrl",
2568
+ "@type": "@id"
2569
+ },
2570
+ "contraindication": { "@id": "schema:contraindication" },
2571
+ "contributor": { "@id": "schema:contributor" },
2572
+ "cookTime": { "@id": "schema:cookTime" },
2573
+ "cookingMethod": { "@id": "schema:cookingMethod" },
2574
+ "copyrightHolder": { "@id": "schema:copyrightHolder" },
2575
+ "copyrightNotice": { "@id": "schema:copyrightNotice" },
2576
+ "copyrightYear": { "@id": "schema:copyrightYear" },
2577
+ "correction": { "@id": "schema:correction" },
2578
+ "correctionsPolicy": {
2579
+ "@id": "schema:correctionsPolicy",
2580
+ "@type": "@id"
2581
+ },
2582
+ "costCategory": { "@id": "schema:costCategory" },
2583
+ "costCurrency": { "@id": "schema:costCurrency" },
2584
+ "costOrigin": { "@id": "schema:costOrigin" },
2585
+ "costPerUnit": { "@id": "schema:costPerUnit" },
2586
+ "countriesNotSupported": { "@id": "schema:countriesNotSupported" },
2587
+ "countriesSupported": { "@id": "schema:countriesSupported" },
2588
+ "countryOfAssembly": { "@id": "schema:countryOfAssembly" },
2589
+ "countryOfLastProcessing": { "@id": "schema:countryOfLastProcessing" },
2590
+ "countryOfOrigin": { "@id": "schema:countryOfOrigin" },
2591
+ "course": { "@id": "schema:course" },
2592
+ "courseCode": { "@id": "schema:courseCode" },
2593
+ "courseMode": { "@id": "schema:courseMode" },
2594
+ "coursePrerequisites": { "@id": "schema:coursePrerequisites" },
2595
+ "courseSchedule": { "@id": "schema:courseSchedule" },
2596
+ "courseWorkload": { "@id": "schema:courseWorkload" },
2597
+ "coverageEndTime": { "@id": "schema:coverageEndTime" },
2598
+ "coverageStartTime": { "@id": "schema:coverageStartTime" },
2599
+ "creativeWorkStatus": { "@id": "schema:creativeWorkStatus" },
2600
+ "creator": { "@id": "schema:creator" },
2601
+ "credentialCategory": { "@id": "schema:credentialCategory" },
2602
+ "creditText": { "@id": "schema:creditText" },
2603
+ "creditedTo": { "@id": "schema:creditedTo" },
2604
+ "cssSelector": { "@id": "schema:cssSelector" },
2605
+ "currenciesAccepted": { "@id": "schema:currenciesAccepted" },
2606
+ "currency": { "@id": "schema:currency" },
2607
+ "currentExchangeRate": { "@id": "schema:currentExchangeRate" },
2608
+ "customer": { "@id": "schema:customer" },
2609
+ "customerRemorseReturnFees": { "@id": "schema:customerRemorseReturnFees" },
2610
+ "customerRemorseReturnLabelSource": { "@id": "schema:customerRemorseReturnLabelSource" },
2611
+ "customerRemorseReturnShippingFeesAmount": { "@id": "schema:customerRemorseReturnShippingFeesAmount" },
2612
+ "cutoffTime": { "@id": "schema:cutoffTime" },
2613
+ "cvdCollectionDate": { "@id": "schema:cvdCollectionDate" },
2614
+ "cvdFacilityCounty": { "@id": "schema:cvdFacilityCounty" },
2615
+ "cvdFacilityId": { "@id": "schema:cvdFacilityId" },
2616
+ "cvdNumBeds": { "@id": "schema:cvdNumBeds" },
2617
+ "cvdNumBedsOcc": { "@id": "schema:cvdNumBedsOcc" },
2618
+ "cvdNumC19Died": { "@id": "schema:cvdNumC19Died" },
2619
+ "cvdNumC19HOPats": { "@id": "schema:cvdNumC19HOPats" },
2620
+ "cvdNumC19HospPats": { "@id": "schema:cvdNumC19HospPats" },
2621
+ "cvdNumC19MechVentPats": { "@id": "schema:cvdNumC19MechVentPats" },
2622
+ "cvdNumC19OFMechVentPats": { "@id": "schema:cvdNumC19OFMechVentPats" },
2623
+ "cvdNumC19OverflowPats": { "@id": "schema:cvdNumC19OverflowPats" },
2624
+ "cvdNumICUBeds": { "@id": "schema:cvdNumICUBeds" },
2625
+ "cvdNumICUBedsOcc": { "@id": "schema:cvdNumICUBedsOcc" },
2626
+ "cvdNumTotBeds": { "@id": "schema:cvdNumTotBeds" },
2627
+ "cvdNumVent": { "@id": "schema:cvdNumVent" },
2628
+ "cvdNumVentUse": { "@id": "schema:cvdNumVentUse" },
2629
+ "dataFeedElement": { "@id": "schema:dataFeedElement" },
2630
+ "dataset": { "@id": "schema:dataset" },
2631
+ "datasetTimeInterval": { "@id": "schema:datasetTimeInterval" },
2632
+ "dateCreated": {
2633
+ "@id": "schema:dateCreated",
2634
+ "@type": "Date"
2635
+ },
2636
+ "dateDeleted": {
2637
+ "@id": "schema:dateDeleted",
2638
+ "@type": "Date"
2639
+ },
2640
+ "dateIssued": {
2641
+ "@id": "schema:dateIssued",
2642
+ "@type": "Date"
2643
+ },
2644
+ "dateModified": {
2645
+ "@id": "schema:dateModified",
2646
+ "@type": "Date"
2647
+ },
2648
+ "datePosted": {
2649
+ "@id": "schema:datePosted",
2650
+ "@type": "Date"
2651
+ },
2652
+ "datePublished": {
2653
+ "@id": "schema:datePublished",
2654
+ "@type": "Date"
2655
+ },
2656
+ "dateRead": {
2657
+ "@id": "schema:dateRead",
2658
+ "@type": "Date"
2659
+ },
2660
+ "dateReceived": { "@id": "schema:dateReceived" },
2661
+ "dateSent": { "@id": "schema:dateSent" },
2662
+ "dateVehicleFirstRegistered": {
2663
+ "@id": "schema:dateVehicleFirstRegistered",
2664
+ "@type": "Date"
2665
+ },
2666
+ "dateline": { "@id": "schema:dateline" },
2667
+ "dayOfWeek": { "@id": "schema:dayOfWeek" },
2668
+ "deathDate": {
2669
+ "@id": "schema:deathDate",
2670
+ "@type": "Date"
2671
+ },
2672
+ "deathPlace": { "@id": "schema:deathPlace" },
2673
+ "defaultValue": { "@id": "schema:defaultValue" },
2674
+ "deliveryAddress": { "@id": "schema:deliveryAddress" },
2675
+ "deliveryLeadTime": { "@id": "schema:deliveryLeadTime" },
2676
+ "deliveryMethod": { "@id": "schema:deliveryMethod" },
2677
+ "deliveryStatus": { "@id": "schema:deliveryStatus" },
2678
+ "deliveryTime": { "@id": "schema:deliveryTime" },
2679
+ "department": { "@id": "schema:department" },
2680
+ "departureAirport": { "@id": "schema:departureAirport" },
2681
+ "departureBoatTerminal": { "@id": "schema:departureBoatTerminal" },
2682
+ "departureBusStop": { "@id": "schema:departureBusStop" },
2683
+ "departureGate": { "@id": "schema:departureGate" },
2684
+ "departurePlatform": { "@id": "schema:departurePlatform" },
2685
+ "departureStation": { "@id": "schema:departureStation" },
2686
+ "departureTerminal": { "@id": "schema:departureTerminal" },
2687
+ "departureTime": { "@id": "schema:departureTime" },
2688
+ "dependencies": { "@id": "schema:dependencies" },
2689
+ "depth": { "@id": "schema:depth" },
2690
+ "description": { "@id": "schema:description" },
2691
+ "device": { "@id": "schema:device" },
2692
+ "diagnosis": { "@id": "schema:diagnosis" },
2693
+ "diagram": { "@id": "schema:diagram" },
2694
+ "diet": { "@id": "schema:diet" },
2695
+ "dietFeatures": { "@id": "schema:dietFeatures" },
2696
+ "differentialDiagnosis": { "@id": "schema:differentialDiagnosis" },
2697
+ "digitalSourceType": { "@id": "schema:digitalSourceType" },
2698
+ "directApply": { "@id": "schema:directApply" },
2699
+ "director": { "@id": "schema:director" },
2700
+ "directors": { "@id": "schema:directors" },
2701
+ "disambiguatingDescription": { "@id": "schema:disambiguatingDescription" },
2702
+ "discount": { "@id": "schema:discount" },
2703
+ "discountCode": { "@id": "schema:discountCode" },
2704
+ "discountCurrency": { "@id": "schema:discountCurrency" },
2705
+ "discusses": { "@id": "schema:discusses" },
2706
+ "discussionUrl": {
2707
+ "@id": "schema:discussionUrl",
2708
+ "@type": "@id"
2709
+ },
2710
+ "diseasePreventionInfo": {
2711
+ "@id": "schema:diseasePreventionInfo",
2712
+ "@type": "@id"
2713
+ },
2714
+ "diseaseSpreadStatistics": {
2715
+ "@id": "schema:diseaseSpreadStatistics",
2716
+ "@type": "@id"
2717
+ },
2718
+ "dissolutionDate": {
2719
+ "@id": "schema:dissolutionDate",
2720
+ "@type": "Date"
2721
+ },
2722
+ "distance": { "@id": "schema:distance" },
2723
+ "distinguishingSign": { "@id": "schema:distinguishingSign" },
2724
+ "distribution": { "@id": "schema:distribution" },
2725
+ "diversityPolicy": {
2726
+ "@id": "schema:diversityPolicy",
2727
+ "@type": "@id"
2728
+ },
2729
+ "diversityStaffingReport": {
2730
+ "@id": "schema:diversityStaffingReport",
2731
+ "@type": "@id"
2732
+ },
2733
+ "documentation": {
2734
+ "@id": "schema:documentation",
2735
+ "@type": "@id"
2736
+ },
2737
+ "doesNotShip": { "@id": "schema:doesNotShip" },
2738
+ "domainIncludes": { "@id": "schema:domainIncludes" },
2739
+ "domiciledMortgage": { "@id": "schema:domiciledMortgage" },
2740
+ "doorTime": { "@id": "schema:doorTime" },
2741
+ "dosageForm": { "@id": "schema:dosageForm" },
2742
+ "doseSchedule": { "@id": "schema:doseSchedule" },
2743
+ "doseUnit": { "@id": "schema:doseUnit" },
2744
+ "doseValue": { "@id": "schema:doseValue" },
2745
+ "downPayment": { "@id": "schema:downPayment" },
2746
+ "downloadUrl": {
2747
+ "@id": "schema:downloadUrl",
2748
+ "@type": "@id"
2749
+ },
2750
+ "downvoteCount": { "@id": "schema:downvoteCount" },
2751
+ "drainsTo": { "@id": "schema:drainsTo" },
2752
+ "driveWheelConfiguration": { "@id": "schema:driveWheelConfiguration" },
2753
+ "dropoffLocation": { "@id": "schema:dropoffLocation" },
2754
+ "dropoffTime": { "@id": "schema:dropoffTime" },
2755
+ "drug": { "@id": "schema:drug" },
2756
+ "drugClass": { "@id": "schema:drugClass" },
2757
+ "drugUnit": { "@id": "schema:drugUnit" },
2758
+ "duns": { "@id": "schema:duns" },
2759
+ "duplicateTherapy": { "@id": "schema:duplicateTherapy" },
2760
+ "duration": { "@id": "schema:duration" },
2761
+ "durationOfWarranty": { "@id": "schema:durationOfWarranty" },
2762
+ "duringMedia": {
2763
+ "@id": "schema:duringMedia",
2764
+ "@type": "@id"
2765
+ },
2766
+ "earlyPrepaymentPenalty": { "@id": "schema:earlyPrepaymentPenalty" },
2767
+ "editEIDR": { "@id": "schema:editEIDR" },
2768
+ "editor": { "@id": "schema:editor" },
2769
+ "eduQuestionType": { "@id": "schema:eduQuestionType" },
2770
+ "educationRequirements": { "@id": "schema:educationRequirements" },
2771
+ "educationalAlignment": { "@id": "schema:educationalAlignment" },
2772
+ "educationalCredentialAwarded": { "@id": "schema:educationalCredentialAwarded" },
2773
+ "educationalFramework": { "@id": "schema:educationalFramework" },
2774
+ "educationalLevel": { "@id": "schema:educationalLevel" },
2775
+ "educationalProgramMode": { "@id": "schema:educationalProgramMode" },
2776
+ "educationalRole": { "@id": "schema:educationalRole" },
2777
+ "educationalUse": { "@id": "schema:educationalUse" },
2778
+ "elevation": { "@id": "schema:elevation" },
2779
+ "eligibilityToWorkRequirement": { "@id": "schema:eligibilityToWorkRequirement" },
2780
+ "eligibleCustomerType": { "@id": "schema:eligibleCustomerType" },
2781
+ "eligibleDuration": { "@id": "schema:eligibleDuration" },
2782
+ "eligibleQuantity": { "@id": "schema:eligibleQuantity" },
2783
+ "eligibleRegion": { "@id": "schema:eligibleRegion" },
2784
+ "eligibleTransactionVolume": { "@id": "schema:eligibleTransactionVolume" },
2785
+ "email": { "@id": "schema:email" },
2786
+ "embedUrl": {
2787
+ "@id": "schema:embedUrl",
2788
+ "@type": "@id"
2789
+ },
2790
+ "embeddedTextCaption": { "@id": "schema:embeddedTextCaption" },
2791
+ "emissionsCO2": { "@id": "schema:emissionsCO2" },
2792
+ "employee": { "@id": "schema:employee" },
2793
+ "employees": { "@id": "schema:employees" },
2794
+ "employerOverview": { "@id": "schema:employerOverview" },
2795
+ "employmentType": { "@id": "schema:employmentType" },
2796
+ "employmentUnit": { "@id": "schema:employmentUnit" },
2797
+ "encodesBioChemEntity": { "@id": "schema:encodesBioChemEntity" },
2798
+ "encodesCreativeWork": { "@id": "schema:encodesCreativeWork" },
2799
+ "encoding": { "@id": "schema:encoding" },
2800
+ "encodingFormat": { "@id": "schema:encodingFormat" },
2801
+ "encodingType": { "@id": "schema:encodingType" },
2802
+ "encodings": { "@id": "schema:encodings" },
2803
+ "endDate": {
2804
+ "@id": "schema:endDate",
2805
+ "@type": "Date"
2806
+ },
2807
+ "endOffset": { "@id": "schema:endOffset" },
2808
+ "endTime": { "@id": "schema:endTime" },
2809
+ "endorsee": { "@id": "schema:endorsee" },
2810
+ "endorsers": { "@id": "schema:endorsers" },
2811
+ "energyEfficiencyScaleMax": { "@id": "schema:energyEfficiencyScaleMax" },
2812
+ "energyEfficiencyScaleMin": { "@id": "schema:energyEfficiencyScaleMin" },
2813
+ "engineDisplacement": { "@id": "schema:engineDisplacement" },
2814
+ "enginePower": { "@id": "schema:enginePower" },
2815
+ "engineType": { "@id": "schema:engineType" },
2816
+ "entertainmentBusiness": { "@id": "schema:entertainmentBusiness" },
2817
+ "epidemiology": { "@id": "schema:epidemiology" },
2818
+ "episode": { "@id": "schema:episode" },
2819
+ "episodeNumber": { "@id": "schema:episodeNumber" },
2820
+ "episodes": { "@id": "schema:episodes" },
2821
+ "equal": { "@id": "schema:equal" },
2822
+ "error": { "@id": "schema:error" },
2823
+ "estimatedCost": { "@id": "schema:estimatedCost" },
2824
+ "estimatedFlightDuration": { "@id": "schema:estimatedFlightDuration" },
2825
+ "estimatedSalary": { "@id": "schema:estimatedSalary" },
2826
+ "estimatesRiskOf": { "@id": "schema:estimatesRiskOf" },
2827
+ "ethicsPolicy": {
2828
+ "@id": "schema:ethicsPolicy",
2829
+ "@type": "@id"
2830
+ },
2831
+ "event": { "@id": "schema:event" },
2832
+ "eventAttendanceMode": { "@id": "schema:eventAttendanceMode" },
2833
+ "eventSchedule": { "@id": "schema:eventSchedule" },
2834
+ "eventStatus": { "@id": "schema:eventStatus" },
2835
+ "events": { "@id": "schema:events" },
2836
+ "evidenceLevel": { "@id": "schema:evidenceLevel" },
2837
+ "evidenceOrigin": { "@id": "schema:evidenceOrigin" },
2838
+ "exampleOfWork": { "@id": "schema:exampleOfWork" },
2839
+ "exceptDate": {
2840
+ "@id": "schema:exceptDate",
2841
+ "@type": "Date"
2842
+ },
2843
+ "exchangeRateSpread": { "@id": "schema:exchangeRateSpread" },
2844
+ "executableLibraryName": { "@id": "schema:executableLibraryName" },
2845
+ "exerciseCourse": { "@id": "schema:exerciseCourse" },
2846
+ "exercisePlan": { "@id": "schema:exercisePlan" },
2847
+ "exerciseRelatedDiet": { "@id": "schema:exerciseRelatedDiet" },
2848
+ "exerciseType": { "@id": "schema:exerciseType" },
2849
+ "exifData": { "@id": "schema:exifData" },
2850
+ "expectedArrivalFrom": {
2851
+ "@id": "schema:expectedArrivalFrom",
2852
+ "@type": "Date"
2853
+ },
2854
+ "expectedArrivalUntil": {
2855
+ "@id": "schema:expectedArrivalUntil",
2856
+ "@type": "Date"
2857
+ },
2858
+ "expectedPrognosis": { "@id": "schema:expectedPrognosis" },
2859
+ "expectsAcceptanceOf": { "@id": "schema:expectsAcceptanceOf" },
2860
+ "experienceInPlaceOfEducation": { "@id": "schema:experienceInPlaceOfEducation" },
2861
+ "experienceRequirements": { "@id": "schema:experienceRequirements" },
2862
+ "expertConsiderations": { "@id": "schema:expertConsiderations" },
2863
+ "expires": {
2864
+ "@id": "schema:expires",
2865
+ "@type": "Date"
2866
+ },
2867
+ "expressedIn": { "@id": "schema:expressedIn" },
2868
+ "familyName": { "@id": "schema:familyName" },
2869
+ "fatContent": { "@id": "schema:fatContent" },
2870
+ "faxNumber": { "@id": "schema:faxNumber" },
2871
+ "featureList": { "@id": "schema:featureList" },
2872
+ "feesAndCommissionsSpecification": { "@id": "schema:feesAndCommissionsSpecification" },
2873
+ "fiberContent": { "@id": "schema:fiberContent" },
2874
+ "fileFormat": { "@id": "schema:fileFormat" },
2875
+ "fileSize": { "@id": "schema:fileSize" },
2876
+ "financialAidEligible": { "@id": "schema:financialAidEligible" },
2877
+ "firstAppearance": { "@id": "schema:firstAppearance" },
2878
+ "firstPerformance": { "@id": "schema:firstPerformance" },
2879
+ "flightDistance": { "@id": "schema:flightDistance" },
2880
+ "flightNumber": { "@id": "schema:flightNumber" },
2881
+ "floorLevel": { "@id": "schema:floorLevel" },
2882
+ "floorLimit": { "@id": "schema:floorLimit" },
2883
+ "floorSize": { "@id": "schema:floorSize" },
2884
+ "followee": { "@id": "schema:followee" },
2885
+ "follows": { "@id": "schema:follows" },
2886
+ "followup": { "@id": "schema:followup" },
2887
+ "foodEstablishment": { "@id": "schema:foodEstablishment" },
2888
+ "foodEvent": { "@id": "schema:foodEvent" },
2889
+ "foodWarning": { "@id": "schema:foodWarning" },
2890
+ "founder": { "@id": "schema:founder" },
2891
+ "founders": { "@id": "schema:founders" },
2892
+ "foundingDate": {
2893
+ "@id": "schema:foundingDate",
2894
+ "@type": "Date"
2895
+ },
2896
+ "foundingLocation": { "@id": "schema:foundingLocation" },
2897
+ "free": { "@id": "schema:free" },
2898
+ "freeShippingThreshold": { "@id": "schema:freeShippingThreshold" },
2899
+ "frequency": { "@id": "schema:frequency" },
2900
+ "fromLocation": { "@id": "schema:fromLocation" },
2901
+ "fuelCapacity": { "@id": "schema:fuelCapacity" },
2902
+ "fuelConsumption": { "@id": "schema:fuelConsumption" },
2903
+ "fuelEfficiency": { "@id": "schema:fuelEfficiency" },
2904
+ "fuelType": { "@id": "schema:fuelType" },
2905
+ "functionalClass": { "@id": "schema:functionalClass" },
2906
+ "fundedItem": { "@id": "schema:fundedItem" },
2907
+ "funder": { "@id": "schema:funder" },
2908
+ "funding": { "@id": "schema:funding" },
2909
+ "game": { "@id": "schema:game" },
2910
+ "gameAvailabilityType": { "@id": "schema:gameAvailabilityType" },
2911
+ "gameEdition": { "@id": "schema:gameEdition" },
2912
+ "gameItem": { "@id": "schema:gameItem" },
2913
+ "gameLocation": {
2914
+ "@id": "schema:gameLocation",
2915
+ "@type": "@id"
2916
+ },
2917
+ "gamePlatform": { "@id": "schema:gamePlatform" },
2918
+ "gameServer": { "@id": "schema:gameServer" },
2919
+ "gameTip": { "@id": "schema:gameTip" },
2920
+ "gender": { "@id": "schema:gender" },
2921
+ "genre": { "@id": "schema:genre" },
2922
+ "geo": { "@id": "schema:geo" },
2923
+ "geoContains": { "@id": "schema:geoContains" },
2924
+ "geoCoveredBy": { "@id": "schema:geoCoveredBy" },
2925
+ "geoCovers": { "@id": "schema:geoCovers" },
2926
+ "geoCrosses": { "@id": "schema:geoCrosses" },
2927
+ "geoDisjoint": { "@id": "schema:geoDisjoint" },
2928
+ "geoEquals": { "@id": "schema:geoEquals" },
2929
+ "geoIntersects": { "@id": "schema:geoIntersects" },
2930
+ "geoMidpoint": { "@id": "schema:geoMidpoint" },
2931
+ "geoOverlaps": { "@id": "schema:geoOverlaps" },
2932
+ "geoRadius": { "@id": "schema:geoRadius" },
2933
+ "geoTouches": { "@id": "schema:geoTouches" },
2934
+ "geoWithin": { "@id": "schema:geoWithin" },
2935
+ "geographicArea": { "@id": "schema:geographicArea" },
2936
+ "gettingTestedInfo": {
2937
+ "@id": "schema:gettingTestedInfo",
2938
+ "@type": "@id"
2939
+ },
2940
+ "givenName": { "@id": "schema:givenName" },
2941
+ "globalLocationNumber": { "@id": "schema:globalLocationNumber" },
2942
+ "governmentBenefitsInfo": { "@id": "schema:governmentBenefitsInfo" },
2943
+ "gracePeriod": { "@id": "schema:gracePeriod" },
2944
+ "grantee": { "@id": "schema:grantee" },
2945
+ "greater": { "@id": "schema:greater" },
2946
+ "greaterOrEqual": { "@id": "schema:greaterOrEqual" },
2947
+ "gtin": { "@id": "schema:gtin" },
2948
+ "gtin12": { "@id": "schema:gtin12" },
2949
+ "gtin13": { "@id": "schema:gtin13" },
2950
+ "gtin14": { "@id": "schema:gtin14" },
2951
+ "gtin8": { "@id": "schema:gtin8" },
2952
+ "guideline": { "@id": "schema:guideline" },
2953
+ "guidelineDate": {
2954
+ "@id": "schema:guidelineDate",
2955
+ "@type": "Date"
2956
+ },
2957
+ "guidelineSubject": { "@id": "schema:guidelineSubject" },
2958
+ "handlingTime": { "@id": "schema:handlingTime" },
2959
+ "hasAdultConsideration": { "@id": "schema:hasAdultConsideration" },
2960
+ "hasBioChemEntityPart": { "@id": "schema:hasBioChemEntityPart" },
2961
+ "hasBioPolymerSequence": { "@id": "schema:hasBioPolymerSequence" },
2962
+ "hasBroadcastChannel": { "@id": "schema:hasBroadcastChannel" },
2963
+ "hasCategoryCode": { "@id": "schema:hasCategoryCode" },
2964
+ "hasCertification": { "@id": "schema:hasCertification" },
2965
+ "hasCourse": { "@id": "schema:hasCourse" },
2966
+ "hasCourseInstance": { "@id": "schema:hasCourseInstance" },
2967
+ "hasCredential": { "@id": "schema:hasCredential" },
2968
+ "hasDefinedTerm": { "@id": "schema:hasDefinedTerm" },
2969
+ "hasDeliveryMethod": { "@id": "schema:hasDeliveryMethod" },
2970
+ "hasDigitalDocumentPermission": { "@id": "schema:hasDigitalDocumentPermission" },
2971
+ "hasDriveThroughService": { "@id": "schema:hasDriveThroughService" },
2972
+ "hasEnergyConsumptionDetails": { "@id": "schema:hasEnergyConsumptionDetails" },
2973
+ "hasEnergyEfficiencyCategory": { "@id": "schema:hasEnergyEfficiencyCategory" },
2974
+ "hasGS1DigitalLink": {
2975
+ "@id": "schema:hasGS1DigitalLink",
2976
+ "@type": "@id"
2977
+ },
2978
+ "hasHealthAspect": { "@id": "schema:hasHealthAspect" },
2979
+ "hasMap": {
2980
+ "@id": "schema:hasMap",
2981
+ "@type": "@id"
2982
+ },
2983
+ "hasMeasurement": { "@id": "schema:hasMeasurement" },
2984
+ "hasMemberProgram": { "@id": "schema:hasMemberProgram" },
2985
+ "hasMenu": { "@id": "schema:hasMenu" },
2986
+ "hasMenuItem": { "@id": "schema:hasMenuItem" },
2987
+ "hasMenuSection": { "@id": "schema:hasMenuSection" },
2988
+ "hasMerchantReturnPolicy": { "@id": "schema:hasMerchantReturnPolicy" },
2989
+ "hasMolecularFunction": {
2990
+ "@id": "schema:hasMolecularFunction",
2991
+ "@type": "@id"
2992
+ },
2993
+ "hasOccupation": { "@id": "schema:hasOccupation" },
2994
+ "hasOfferCatalog": { "@id": "schema:hasOfferCatalog" },
2995
+ "hasPOS": { "@id": "schema:hasPOS" },
2996
+ "hasPart": { "@id": "schema:hasPart" },
2997
+ "hasProductReturnPolicy": { "@id": "schema:hasProductReturnPolicy" },
2998
+ "hasRepresentation": { "@id": "schema:hasRepresentation" },
2999
+ "hasTierBenefit": { "@id": "schema:hasTierBenefit" },
3000
+ "hasTierRequirement": { "@id": "schema:hasTierRequirement" },
3001
+ "hasTiers": { "@id": "schema:hasTiers" },
3002
+ "hasVariant": { "@id": "schema:hasVariant" },
3003
+ "headline": { "@id": "schema:headline" },
3004
+ "healthCondition": { "@id": "schema:healthCondition" },
3005
+ "healthPlanCoinsuranceOption": { "@id": "schema:healthPlanCoinsuranceOption" },
3006
+ "healthPlanCoinsuranceRate": { "@id": "schema:healthPlanCoinsuranceRate" },
3007
+ "healthPlanCopay": { "@id": "schema:healthPlanCopay" },
3008
+ "healthPlanCopayOption": { "@id": "schema:healthPlanCopayOption" },
3009
+ "healthPlanCostSharing": { "@id": "schema:healthPlanCostSharing" },
3010
+ "healthPlanDrugOption": { "@id": "schema:healthPlanDrugOption" },
3011
+ "healthPlanDrugTier": { "@id": "schema:healthPlanDrugTier" },
3012
+ "healthPlanId": { "@id": "schema:healthPlanId" },
3013
+ "healthPlanMarketingUrl": {
3014
+ "@id": "schema:healthPlanMarketingUrl",
3015
+ "@type": "@id"
3016
+ },
3017
+ "healthPlanNetworkId": { "@id": "schema:healthPlanNetworkId" },
3018
+ "healthPlanNetworkTier": { "@id": "schema:healthPlanNetworkTier" },
3019
+ "healthPlanPharmacyCategory": { "@id": "schema:healthPlanPharmacyCategory" },
3020
+ "healthcareReportingData": { "@id": "schema:healthcareReportingData" },
3021
+ "height": { "@id": "schema:height" },
3022
+ "highPrice": { "@id": "schema:highPrice" },
3023
+ "hiringOrganization": { "@id": "schema:hiringOrganization" },
3024
+ "holdingArchive": { "@id": "schema:holdingArchive" },
3025
+ "homeLocation": { "@id": "schema:homeLocation" },
3026
+ "homeTeam": { "@id": "schema:homeTeam" },
3027
+ "honorificPrefix": { "@id": "schema:honorificPrefix" },
3028
+ "honorificSuffix": { "@id": "schema:honorificSuffix" },
3029
+ "hospitalAffiliation": { "@id": "schema:hospitalAffiliation" },
3030
+ "hostingOrganization": { "@id": "schema:hostingOrganization" },
3031
+ "hoursAvailable": { "@id": "schema:hoursAvailable" },
3032
+ "howPerformed": { "@id": "schema:howPerformed" },
3033
+ "httpMethod": { "@id": "schema:httpMethod" },
3034
+ "iataCode": { "@id": "schema:iataCode" },
3035
+ "icaoCode": { "@id": "schema:icaoCode" },
3036
+ "identifier": { "@id": "schema:identifier" },
3037
+ "identifyingExam": { "@id": "schema:identifyingExam" },
3038
+ "identifyingTest": { "@id": "schema:identifyingTest" },
3039
+ "illustrator": { "@id": "schema:illustrator" },
3040
+ "image": {
3041
+ "@id": "schema:image",
3042
+ "@type": "@id"
3043
+ },
3044
+ "imagingTechnique": { "@id": "schema:imagingTechnique" },
3045
+ "inAlbum": { "@id": "schema:inAlbum" },
3046
+ "inBroadcastLineup": { "@id": "schema:inBroadcastLineup" },
3047
+ "inChI": { "@id": "schema:inChI" },
3048
+ "inChIKey": { "@id": "schema:inChIKey" },
3049
+ "inCodeSet": {
3050
+ "@id": "schema:inCodeSet",
3051
+ "@type": "@id"
3052
+ },
3053
+ "inDefinedTermSet": {
3054
+ "@id": "schema:inDefinedTermSet",
3055
+ "@type": "@id"
3056
+ },
3057
+ "inLanguage": { "@id": "schema:inLanguage" },
3058
+ "inPlaylist": { "@id": "schema:inPlaylist" },
3059
+ "inProductGroupWithID": { "@id": "schema:inProductGroupWithID" },
3060
+ "inStoreReturnsOffered": { "@id": "schema:inStoreReturnsOffered" },
3061
+ "inSupportOf": { "@id": "schema:inSupportOf" },
3062
+ "incentiveCompensation": { "@id": "schema:incentiveCompensation" },
3063
+ "incentives": { "@id": "schema:incentives" },
3064
+ "includedComposition": { "@id": "schema:includedComposition" },
3065
+ "includedDataCatalog": { "@id": "schema:includedDataCatalog" },
3066
+ "includedInDataCatalog": { "@id": "schema:includedInDataCatalog" },
3067
+ "includedInHealthInsurancePlan": { "@id": "schema:includedInHealthInsurancePlan" },
3068
+ "includedRiskFactor": { "@id": "schema:includedRiskFactor" },
3069
+ "includesAttraction": { "@id": "schema:includesAttraction" },
3070
+ "includesHealthPlanFormulary": { "@id": "schema:includesHealthPlanFormulary" },
3071
+ "includesHealthPlanNetwork": { "@id": "schema:includesHealthPlanNetwork" },
3072
+ "includesObject": { "@id": "schema:includesObject" },
3073
+ "increasesRiskOf": { "@id": "schema:increasesRiskOf" },
3074
+ "industry": { "@id": "schema:industry" },
3075
+ "ineligibleRegion": { "@id": "schema:ineligibleRegion" },
3076
+ "infectiousAgent": { "@id": "schema:infectiousAgent" },
3077
+ "infectiousAgentClass": { "@id": "schema:infectiousAgentClass" },
3078
+ "ingredients": { "@id": "schema:ingredients" },
3079
+ "inker": { "@id": "schema:inker" },
3080
+ "insertion": { "@id": "schema:insertion" },
3081
+ "installUrl": {
3082
+ "@id": "schema:installUrl",
3083
+ "@type": "@id"
3084
+ },
3085
+ "instructor": { "@id": "schema:instructor" },
3086
+ "instrument": { "@id": "schema:instrument" },
3087
+ "intensity": { "@id": "schema:intensity" },
3088
+ "interactingDrug": { "@id": "schema:interactingDrug" },
3089
+ "interactionCount": { "@id": "schema:interactionCount" },
3090
+ "interactionService": { "@id": "schema:interactionService" },
3091
+ "interactionStatistic": { "@id": "schema:interactionStatistic" },
3092
+ "interactionType": { "@id": "schema:interactionType" },
3093
+ "interactivityType": { "@id": "schema:interactivityType" },
3094
+ "interestRate": { "@id": "schema:interestRate" },
3095
+ "interpretedAsClaim": { "@id": "schema:interpretedAsClaim" },
3096
+ "inventoryLevel": { "@id": "schema:inventoryLevel" },
3097
+ "inverseOf": { "@id": "schema:inverseOf" },
3098
+ "isAcceptingNewPatients": { "@id": "schema:isAcceptingNewPatients" },
3099
+ "isAccessibleForFree": { "@id": "schema:isAccessibleForFree" },
3100
+ "isAccessoryOrSparePartFor": { "@id": "schema:isAccessoryOrSparePartFor" },
3101
+ "isAvailableGenerically": { "@id": "schema:isAvailableGenerically" },
3102
+ "isBasedOn": {
3103
+ "@id": "schema:isBasedOn",
3104
+ "@type": "@id"
3105
+ },
3106
+ "isBasedOnUrl": {
3107
+ "@id": "schema:isBasedOnUrl",
3108
+ "@type": "@id"
3109
+ },
3110
+ "isConsumableFor": { "@id": "schema:isConsumableFor" },
3111
+ "isEncodedByBioChemEntity": { "@id": "schema:isEncodedByBioChemEntity" },
3112
+ "isFamilyFriendly": { "@id": "schema:isFamilyFriendly" },
3113
+ "isGift": { "@id": "schema:isGift" },
3114
+ "isInvolvedInBiologicalProcess": {
3115
+ "@id": "schema:isInvolvedInBiologicalProcess",
3116
+ "@type": "@id"
3117
+ },
3118
+ "isLiveBroadcast": { "@id": "schema:isLiveBroadcast" },
3119
+ "isLocatedInSubcellularLocation": {
3120
+ "@id": "schema:isLocatedInSubcellularLocation",
3121
+ "@type": "@id"
3122
+ },
3123
+ "isPartOf": {
3124
+ "@id": "schema:isPartOf",
3125
+ "@type": "@id"
3126
+ },
3127
+ "isPartOfBioChemEntity": { "@id": "schema:isPartOfBioChemEntity" },
3128
+ "isPlanForApartment": { "@id": "schema:isPlanForApartment" },
3129
+ "isProprietary": { "@id": "schema:isProprietary" },
3130
+ "isRelatedTo": { "@id": "schema:isRelatedTo" },
3131
+ "isResizable": { "@id": "schema:isResizable" },
3132
+ "isSimilarTo": { "@id": "schema:isSimilarTo" },
3133
+ "isTierOf": { "@id": "schema:isTierOf" },
3134
+ "isUnlabelledFallback": { "@id": "schema:isUnlabelledFallback" },
3135
+ "isVariantOf": { "@id": "schema:isVariantOf" },
3136
+ "isbn": { "@id": "schema:isbn" },
3137
+ "isicV4": { "@id": "schema:isicV4" },
3138
+ "iso6523Code": { "@id": "schema:iso6523Code" },
3139
+ "isrcCode": { "@id": "schema:isrcCode" },
3140
+ "issn": { "@id": "schema:issn" },
3141
+ "issueNumber": { "@id": "schema:issueNumber" },
3142
+ "issuedBy": { "@id": "schema:issuedBy" },
3143
+ "issuedThrough": { "@id": "schema:issuedThrough" },
3144
+ "iswcCode": { "@id": "schema:iswcCode" },
3145
+ "item": { "@id": "schema:item" },
3146
+ "itemCondition": { "@id": "schema:itemCondition" },
3147
+ "itemDefectReturnFees": { "@id": "schema:itemDefectReturnFees" },
3148
+ "itemDefectReturnLabelSource": { "@id": "schema:itemDefectReturnLabelSource" },
3149
+ "itemDefectReturnShippingFeesAmount": { "@id": "schema:itemDefectReturnShippingFeesAmount" },
3150
+ "itemListElement": { "@id": "schema:itemListElement" },
3151
+ "itemListOrder": { "@id": "schema:itemListOrder" },
3152
+ "itemLocation": { "@id": "schema:itemLocation" },
3153
+ "itemOffered": { "@id": "schema:itemOffered" },
3154
+ "itemReviewed": { "@id": "schema:itemReviewed" },
3155
+ "itemShipped": { "@id": "schema:itemShipped" },
3156
+ "itinerary": { "@id": "schema:itinerary" },
3157
+ "iupacName": { "@id": "schema:iupacName" },
3158
+ "jobBenefits": { "@id": "schema:jobBenefits" },
3159
+ "jobImmediateStart": { "@id": "schema:jobImmediateStart" },
3160
+ "jobLocation": { "@id": "schema:jobLocation" },
3161
+ "jobLocationType": { "@id": "schema:jobLocationType" },
3162
+ "jobStartDate": { "@id": "schema:jobStartDate" },
3163
+ "jobTitle": { "@id": "schema:jobTitle" },
3164
+ "jurisdiction": { "@id": "schema:jurisdiction" },
3165
+ "keywords": { "@id": "schema:keywords" },
3166
+ "knownVehicleDamages": { "@id": "schema:knownVehicleDamages" },
3167
+ "knows": { "@id": "schema:knows" },
3168
+ "knowsAbout": { "@id": "schema:knowsAbout" },
3169
+ "knowsLanguage": { "@id": "schema:knowsLanguage" },
3170
+ "labelDetails": {
3171
+ "@id": "schema:labelDetails",
3172
+ "@type": "@id"
3173
+ },
3174
+ "landlord": { "@id": "schema:landlord" },
3175
+ "language": { "@id": "schema:language" },
3176
+ "lastReviewed": {
3177
+ "@id": "schema:lastReviewed",
3178
+ "@type": "Date"
3179
+ },
3180
+ "latitude": { "@id": "schema:latitude" },
3181
+ "layoutImage": {
3182
+ "@id": "schema:layoutImage",
3183
+ "@type": "@id"
3184
+ },
3185
+ "learningResourceType": { "@id": "schema:learningResourceType" },
3186
+ "leaseLength": { "@id": "schema:leaseLength" },
3187
+ "legalName": { "@id": "schema:legalName" },
3188
+ "legalStatus": { "@id": "schema:legalStatus" },
3189
+ "legislationApplies": { "@id": "schema:legislationApplies" },
3190
+ "legislationChanges": { "@id": "schema:legislationChanges" },
3191
+ "legislationConsolidates": { "@id": "schema:legislationConsolidates" },
3192
+ "legislationDate": {
3193
+ "@id": "schema:legislationDate",
3194
+ "@type": "Date"
3195
+ },
3196
+ "legislationDateVersion": {
3197
+ "@id": "schema:legislationDateVersion",
3198
+ "@type": "Date"
3199
+ },
3200
+ "legislationIdentifier": { "@id": "schema:legislationIdentifier" },
3201
+ "legislationJurisdiction": { "@id": "schema:legislationJurisdiction" },
3202
+ "legislationLegalForce": { "@id": "schema:legislationLegalForce" },
3203
+ "legislationLegalValue": { "@id": "schema:legislationLegalValue" },
3204
+ "legislationPassedBy": { "@id": "schema:legislationPassedBy" },
3205
+ "legislationResponsible": { "@id": "schema:legislationResponsible" },
3206
+ "legislationTransposes": { "@id": "schema:legislationTransposes" },
3207
+ "legislationType": { "@id": "schema:legislationType" },
3208
+ "leiCode": { "@id": "schema:leiCode" },
3209
+ "lender": { "@id": "schema:lender" },
3210
+ "lesser": { "@id": "schema:lesser" },
3211
+ "lesserOrEqual": { "@id": "schema:lesserOrEqual" },
3212
+ "letterer": { "@id": "schema:letterer" },
3213
+ "license": {
3214
+ "@id": "schema:license",
3215
+ "@type": "@id"
3216
+ },
3217
+ "line": { "@id": "schema:line" },
3218
+ "linkRelationship": { "@id": "schema:linkRelationship" },
3219
+ "liveBlogUpdate": { "@id": "schema:liveBlogUpdate" },
3220
+ "loanMortgageMandateAmount": { "@id": "schema:loanMortgageMandateAmount" },
3221
+ "loanPaymentAmount": { "@id": "schema:loanPaymentAmount" },
3222
+ "loanPaymentFrequency": { "@id": "schema:loanPaymentFrequency" },
3223
+ "loanRepaymentForm": { "@id": "schema:loanRepaymentForm" },
3224
+ "loanTerm": { "@id": "schema:loanTerm" },
3225
+ "loanType": { "@id": "schema:loanType" },
3226
+ "location": { "@id": "schema:location" },
3227
+ "locationCreated": { "@id": "schema:locationCreated" },
3228
+ "lodgingUnitDescription": { "@id": "schema:lodgingUnitDescription" },
3229
+ "lodgingUnitType": { "@id": "schema:lodgingUnitType" },
3230
+ "logo": {
3231
+ "@id": "schema:logo",
3232
+ "@type": "@id"
3233
+ },
3234
+ "longitude": { "@id": "schema:longitude" },
3235
+ "loser": { "@id": "schema:loser" },
3236
+ "lowPrice": { "@id": "schema:lowPrice" },
3237
+ "lyricist": { "@id": "schema:lyricist" },
3238
+ "lyrics": { "@id": "schema:lyrics" },
3239
+ "mainContentOfPage": { "@id": "schema:mainContentOfPage" },
3240
+ "mainEntity": { "@id": "schema:mainEntity" },
3241
+ "mainEntityOfPage": {
3242
+ "@id": "schema:mainEntityOfPage",
3243
+ "@type": "@id"
3244
+ },
3245
+ "maintainer": { "@id": "schema:maintainer" },
3246
+ "makesOffer": { "@id": "schema:makesOffer" },
3247
+ "manufacturer": { "@id": "schema:manufacturer" },
3248
+ "map": {
3249
+ "@id": "schema:map",
3250
+ "@type": "@id"
3251
+ },
3252
+ "mapType": { "@id": "schema:mapType" },
3253
+ "maps": {
3254
+ "@id": "schema:maps",
3255
+ "@type": "@id"
3256
+ },
3257
+ "marginOfError": { "@id": "schema:marginOfError" },
3258
+ "masthead": {
3259
+ "@id": "schema:masthead",
3260
+ "@type": "@id"
3261
+ },
3262
+ "material": { "@id": "schema:material" },
3263
+ "materialExtent": { "@id": "schema:materialExtent" },
3264
+ "mathExpression": { "@id": "schema:mathExpression" },
3265
+ "maxPrice": { "@id": "schema:maxPrice" },
3266
+ "maxValue": { "@id": "schema:maxValue" },
3267
+ "maximumAttendeeCapacity": { "@id": "schema:maximumAttendeeCapacity" },
3268
+ "maximumEnrollment": { "@id": "schema:maximumEnrollment" },
3269
+ "maximumIntake": { "@id": "schema:maximumIntake" },
3270
+ "maximumPhysicalAttendeeCapacity": { "@id": "schema:maximumPhysicalAttendeeCapacity" },
3271
+ "maximumVirtualAttendeeCapacity": { "@id": "schema:maximumVirtualAttendeeCapacity" },
3272
+ "mealService": { "@id": "schema:mealService" },
3273
+ "measuredProperty": { "@id": "schema:measuredProperty" },
3274
+ "measurementDenominator": { "@id": "schema:measurementDenominator" },
3275
+ "measurementMethod": { "@id": "schema:measurementMethod" },
3276
+ "measurementQualifier": { "@id": "schema:measurementQualifier" },
3277
+ "measurementTechnique": { "@id": "schema:measurementTechnique" },
3278
+ "mechanismOfAction": { "@id": "schema:mechanismOfAction" },
3279
+ "mediaAuthenticityCategory": { "@id": "schema:mediaAuthenticityCategory" },
3280
+ "mediaItemAppearance": { "@id": "schema:mediaItemAppearance" },
3281
+ "median": { "@id": "schema:median" },
3282
+ "medicalAudience": { "@id": "schema:medicalAudience" },
3283
+ "medicalSpecialty": { "@id": "schema:medicalSpecialty" },
3284
+ "medicineSystem": { "@id": "schema:medicineSystem" },
3285
+ "meetsEmissionStandard": { "@id": "schema:meetsEmissionStandard" },
3286
+ "member": { "@id": "schema:member" },
3287
+ "memberOf": { "@id": "schema:memberOf" },
3288
+ "members": { "@id": "schema:members" },
3289
+ "membershipNumber": { "@id": "schema:membershipNumber" },
3290
+ "membershipPointsEarned": { "@id": "schema:membershipPointsEarned" },
3291
+ "memoryRequirements": { "@id": "schema:memoryRequirements" },
3292
+ "mentions": { "@id": "schema:mentions" },
3293
+ "menu": { "@id": "schema:menu" },
3294
+ "menuAddOn": { "@id": "schema:menuAddOn" },
3295
+ "merchant": { "@id": "schema:merchant" },
3296
+ "merchantReturnDays": {
3297
+ "@id": "schema:merchantReturnDays",
3298
+ "@type": "Date"
3299
+ },
3300
+ "merchantReturnLink": {
3301
+ "@id": "schema:merchantReturnLink",
3302
+ "@type": "@id"
3303
+ },
3304
+ "messageAttachment": { "@id": "schema:messageAttachment" },
3305
+ "mileageFromOdometer": { "@id": "schema:mileageFromOdometer" },
3306
+ "minPrice": { "@id": "schema:minPrice" },
3307
+ "minValue": { "@id": "schema:minValue" },
3308
+ "minimumPaymentDue": { "@id": "schema:minimumPaymentDue" },
3309
+ "missionCoveragePrioritiesPolicy": {
3310
+ "@id": "schema:missionCoveragePrioritiesPolicy",
3311
+ "@type": "@id"
3312
+ },
3313
+ "mobileUrl": { "@id": "schema:mobileUrl" },
3314
+ "model": { "@id": "schema:model" },
3315
+ "modelDate": {
3316
+ "@id": "schema:modelDate",
3317
+ "@type": "Date"
3318
+ },
3319
+ "modifiedTime": { "@id": "schema:modifiedTime" },
3320
+ "molecularFormula": { "@id": "schema:molecularFormula" },
3321
+ "molecularWeight": { "@id": "schema:molecularWeight" },
3322
+ "monoisotopicMolecularWeight": { "@id": "schema:monoisotopicMolecularWeight" },
3323
+ "monthlyMinimumRepaymentAmount": { "@id": "schema:monthlyMinimumRepaymentAmount" },
3324
+ "monthsOfExperience": { "@id": "schema:monthsOfExperience" },
3325
+ "mpn": { "@id": "schema:mpn" },
3326
+ "multipleValues": { "@id": "schema:multipleValues" },
3327
+ "muscleAction": { "@id": "schema:muscleAction" },
3328
+ "musicArrangement": { "@id": "schema:musicArrangement" },
3329
+ "musicBy": { "@id": "schema:musicBy" },
3330
+ "musicCompositionForm": { "@id": "schema:musicCompositionForm" },
3331
+ "musicGroupMember": { "@id": "schema:musicGroupMember" },
3332
+ "musicReleaseFormat": { "@id": "schema:musicReleaseFormat" },
3333
+ "musicalKey": { "@id": "schema:musicalKey" },
3334
+ "naics": { "@id": "schema:naics" },
3335
+ "name": { "@id": "schema:name" },
3336
+ "namedPosition": { "@id": "schema:namedPosition" },
3337
+ "nationality": { "@id": "schema:nationality" },
3338
+ "naturalProgression": { "@id": "schema:naturalProgression" },
3339
+ "negativeNotes": { "@id": "schema:negativeNotes" },
3340
+ "nerve": { "@id": "schema:nerve" },
3341
+ "nerveMotor": { "@id": "schema:nerveMotor" },
3342
+ "netWorth": { "@id": "schema:netWorth" },
3343
+ "newsUpdatesAndGuidelines": {
3344
+ "@id": "schema:newsUpdatesAndGuidelines",
3345
+ "@type": "@id"
3346
+ },
3347
+ "nextItem": { "@id": "schema:nextItem" },
3348
+ "noBylinesPolicy": {
3349
+ "@id": "schema:noBylinesPolicy",
3350
+ "@type": "@id"
3351
+ },
3352
+ "nonEqual": { "@id": "schema:nonEqual" },
3353
+ "nonProprietaryName": { "@id": "schema:nonProprietaryName" },
3354
+ "nonprofitStatus": { "@id": "schema:nonprofitStatus" },
3355
+ "normalRange": { "@id": "schema:normalRange" },
3356
+ "nsn": { "@id": "schema:nsn" },
3357
+ "numAdults": { "@id": "schema:numAdults" },
3358
+ "numChildren": { "@id": "schema:numChildren" },
3359
+ "numConstraints": { "@id": "schema:numConstraints" },
3360
+ "numTracks": { "@id": "schema:numTracks" },
3361
+ "numberOfAccommodationUnits": { "@id": "schema:numberOfAccommodationUnits" },
3362
+ "numberOfAirbags": { "@id": "schema:numberOfAirbags" },
3363
+ "numberOfAvailableAccommodationUnits": { "@id": "schema:numberOfAvailableAccommodationUnits" },
3364
+ "numberOfAxles": { "@id": "schema:numberOfAxles" },
3365
+ "numberOfBathroomsTotal": { "@id": "schema:numberOfBathroomsTotal" },
3366
+ "numberOfBedrooms": { "@id": "schema:numberOfBedrooms" },
3367
+ "numberOfBeds": { "@id": "schema:numberOfBeds" },
3368
+ "numberOfCredits": { "@id": "schema:numberOfCredits" },
3369
+ "numberOfDoors": { "@id": "schema:numberOfDoors" },
3370
+ "numberOfEmployees": { "@id": "schema:numberOfEmployees" },
3371
+ "numberOfEpisodes": { "@id": "schema:numberOfEpisodes" },
3372
+ "numberOfForwardGears": { "@id": "schema:numberOfForwardGears" },
3373
+ "numberOfFullBathrooms": { "@id": "schema:numberOfFullBathrooms" },
3374
+ "numberOfItems": { "@id": "schema:numberOfItems" },
3375
+ "numberOfLoanPayments": { "@id": "schema:numberOfLoanPayments" },
3376
+ "numberOfPages": { "@id": "schema:numberOfPages" },
3377
+ "numberOfPartialBathrooms": { "@id": "schema:numberOfPartialBathrooms" },
3378
+ "numberOfPlayers": { "@id": "schema:numberOfPlayers" },
3379
+ "numberOfPreviousOwners": { "@id": "schema:numberOfPreviousOwners" },
3380
+ "numberOfRooms": { "@id": "schema:numberOfRooms" },
3381
+ "numberOfSeasons": { "@id": "schema:numberOfSeasons" },
3382
+ "numberedPosition": { "@id": "schema:numberedPosition" },
3383
+ "nutrition": { "@id": "schema:nutrition" },
3384
+ "object": { "@id": "schema:object" },
3385
+ "observationAbout": { "@id": "schema:observationAbout" },
3386
+ "observationDate": { "@id": "schema:observationDate" },
3387
+ "observationPeriod": { "@id": "schema:observationPeriod" },
3388
+ "occupancy": { "@id": "schema:occupancy" },
3389
+ "occupationLocation": { "@id": "schema:occupationLocation" },
3390
+ "occupationalCategory": { "@id": "schema:occupationalCategory" },
3391
+ "occupationalCredentialAwarded": { "@id": "schema:occupationalCredentialAwarded" },
3392
+ "offerCount": { "@id": "schema:offerCount" },
3393
+ "offeredBy": { "@id": "schema:offeredBy" },
3394
+ "offers": { "@id": "schema:offers" },
3395
+ "offersPrescriptionByMail": { "@id": "schema:offersPrescriptionByMail" },
3396
+ "openingHours": { "@id": "schema:openingHours" },
3397
+ "openingHoursSpecification": { "@id": "schema:openingHoursSpecification" },
3398
+ "opens": { "@id": "schema:opens" },
3399
+ "operatingSystem": { "@id": "schema:operatingSystem" },
3400
+ "opponent": { "@id": "schema:opponent" },
3401
+ "option": { "@id": "schema:option" },
3402
+ "orderDate": {
3403
+ "@id": "schema:orderDate",
3404
+ "@type": "Date"
3405
+ },
3406
+ "orderDelivery": { "@id": "schema:orderDelivery" },
3407
+ "orderItemNumber": { "@id": "schema:orderItemNumber" },
3408
+ "orderItemStatus": { "@id": "schema:orderItemStatus" },
3409
+ "orderNumber": { "@id": "schema:orderNumber" },
3410
+ "orderQuantity": { "@id": "schema:orderQuantity" },
3411
+ "orderStatus": { "@id": "schema:orderStatus" },
3412
+ "orderedItem": { "@id": "schema:orderedItem" },
3413
+ "organizer": { "@id": "schema:organizer" },
3414
+ "originAddress": { "@id": "schema:originAddress" },
3415
+ "originalMediaContextDescription": { "@id": "schema:originalMediaContextDescription" },
3416
+ "originalMediaLink": {
3417
+ "@id": "schema:originalMediaLink",
3418
+ "@type": "@id"
3419
+ },
3420
+ "originatesFrom": { "@id": "schema:originatesFrom" },
3421
+ "overdosage": { "@id": "schema:overdosage" },
3422
+ "ownedFrom": { "@id": "schema:ownedFrom" },
3423
+ "ownedThrough": { "@id": "schema:ownedThrough" },
3424
+ "ownershipFundingInfo": { "@id": "schema:ownershipFundingInfo" },
3425
+ "owns": { "@id": "schema:owns" },
3426
+ "pageEnd": { "@id": "schema:pageEnd" },
3427
+ "pageStart": { "@id": "schema:pageStart" },
3428
+ "pagination": { "@id": "schema:pagination" },
3429
+ "parent": { "@id": "schema:parent" },
3430
+ "parentItem": { "@id": "schema:parentItem" },
3431
+ "parentOrganization": { "@id": "schema:parentOrganization" },
3432
+ "parentService": { "@id": "schema:parentService" },
3433
+ "parentTaxon": { "@id": "schema:parentTaxon" },
3434
+ "parents": { "@id": "schema:parents" },
3435
+ "partOfEpisode": { "@id": "schema:partOfEpisode" },
3436
+ "partOfInvoice": { "@id": "schema:partOfInvoice" },
3437
+ "partOfOrder": { "@id": "schema:partOfOrder" },
3438
+ "partOfSeason": { "@id": "schema:partOfSeason" },
3439
+ "partOfSeries": { "@id": "schema:partOfSeries" },
3440
+ "partOfSystem": { "@id": "schema:partOfSystem" },
3441
+ "partOfTVSeries": { "@id": "schema:partOfTVSeries" },
3442
+ "partOfTrip": { "@id": "schema:partOfTrip" },
3443
+ "participant": { "@id": "schema:participant" },
3444
+ "partySize": { "@id": "schema:partySize" },
3445
+ "passengerPriorityStatus": { "@id": "schema:passengerPriorityStatus" },
3446
+ "passengerSequenceNumber": { "@id": "schema:passengerSequenceNumber" },
3447
+ "pathophysiology": { "@id": "schema:pathophysiology" },
3448
+ "pattern": { "@id": "schema:pattern" },
3449
+ "payload": { "@id": "schema:payload" },
3450
+ "paymentAccepted": { "@id": "schema:paymentAccepted" },
3451
+ "paymentDue": { "@id": "schema:paymentDue" },
3452
+ "paymentDueDate": {
3453
+ "@id": "schema:paymentDueDate",
3454
+ "@type": "Date"
3455
+ },
3456
+ "paymentMethod": { "@id": "schema:paymentMethod" },
3457
+ "paymentMethodId": { "@id": "schema:paymentMethodId" },
3458
+ "paymentMethodType": { "@id": "schema:paymentMethodType" },
3459
+ "paymentStatus": { "@id": "schema:paymentStatus" },
3460
+ "paymentUrl": {
3461
+ "@id": "schema:paymentUrl",
3462
+ "@type": "@id"
3463
+ },
3464
+ "penciler": { "@id": "schema:penciler" },
3465
+ "percentile10": { "@id": "schema:percentile10" },
3466
+ "percentile25": { "@id": "schema:percentile25" },
3467
+ "percentile75": { "@id": "schema:percentile75" },
3468
+ "percentile90": { "@id": "schema:percentile90" },
3469
+ "performTime": { "@id": "schema:performTime" },
3470
+ "performer": { "@id": "schema:performer" },
3471
+ "performerIn": { "@id": "schema:performerIn" },
3472
+ "performers": { "@id": "schema:performers" },
3473
+ "permissionType": { "@id": "schema:permissionType" },
3474
+ "permissions": { "@id": "schema:permissions" },
3475
+ "permitAudience": { "@id": "schema:permitAudience" },
3476
+ "permittedUsage": { "@id": "schema:permittedUsage" },
3477
+ "petsAllowed": { "@id": "schema:petsAllowed" },
3478
+ "phoneticText": { "@id": "schema:phoneticText" },
3479
+ "photo": { "@id": "schema:photo" },
3480
+ "photos": { "@id": "schema:photos" },
3481
+ "physicalRequirement": { "@id": "schema:physicalRequirement" },
3482
+ "physiologicalBenefits": { "@id": "schema:physiologicalBenefits" },
3483
+ "pickupLocation": { "@id": "schema:pickupLocation" },
3484
+ "pickupTime": { "@id": "schema:pickupTime" },
3485
+ "playMode": { "@id": "schema:playMode" },
3486
+ "playerType": { "@id": "schema:playerType" },
3487
+ "playersOnline": { "@id": "schema:playersOnline" },
3488
+ "polygon": { "@id": "schema:polygon" },
3489
+ "populationType": { "@id": "schema:populationType" },
3490
+ "position": { "@id": "schema:position" },
3491
+ "positiveNotes": { "@id": "schema:positiveNotes" },
3492
+ "possibleComplication": { "@id": "schema:possibleComplication" },
3493
+ "possibleTreatment": { "@id": "schema:possibleTreatment" },
3494
+ "postOfficeBoxNumber": { "@id": "schema:postOfficeBoxNumber" },
3495
+ "postOp": { "@id": "schema:postOp" },
3496
+ "postalCode": { "@id": "schema:postalCode" },
3497
+ "postalCodeBegin": { "@id": "schema:postalCodeBegin" },
3498
+ "postalCodeEnd": { "@id": "schema:postalCodeEnd" },
3499
+ "postalCodePrefix": { "@id": "schema:postalCodePrefix" },
3500
+ "postalCodeRange": { "@id": "schema:postalCodeRange" },
3501
+ "potentialAction": { "@id": "schema:potentialAction" },
3502
+ "potentialUse": { "@id": "schema:potentialUse" },
3503
+ "practicesAt": { "@id": "schema:practicesAt" },
3504
+ "preOp": { "@id": "schema:preOp" },
3505
+ "predecessorOf": { "@id": "schema:predecessorOf" },
3506
+ "pregnancyCategory": { "@id": "schema:pregnancyCategory" },
3507
+ "pregnancyWarning": { "@id": "schema:pregnancyWarning" },
3508
+ "prepTime": { "@id": "schema:prepTime" },
3509
+ "preparation": { "@id": "schema:preparation" },
3510
+ "prescribingInfo": {
3511
+ "@id": "schema:prescribingInfo",
3512
+ "@type": "@id"
3513
+ },
3514
+ "prescriptionStatus": { "@id": "schema:prescriptionStatus" },
3515
+ "previousItem": { "@id": "schema:previousItem" },
3516
+ "previousStartDate": {
3517
+ "@id": "schema:previousStartDate",
3518
+ "@type": "Date"
3519
+ },
3520
+ "price": { "@id": "schema:price" },
3521
+ "priceComponent": { "@id": "schema:priceComponent" },
3522
+ "priceComponentType": { "@id": "schema:priceComponentType" },
3523
+ "priceCurrency": { "@id": "schema:priceCurrency" },
3524
+ "priceRange": { "@id": "schema:priceRange" },
3525
+ "priceSpecification": { "@id": "schema:priceSpecification" },
3526
+ "priceType": { "@id": "schema:priceType" },
3527
+ "priceValidUntil": {
3528
+ "@id": "schema:priceValidUntil",
3529
+ "@type": "Date"
3530
+ },
3531
+ "primaryImageOfPage": { "@id": "schema:primaryImageOfPage" },
3532
+ "primaryPrevention": { "@id": "schema:primaryPrevention" },
3533
+ "printColumn": { "@id": "schema:printColumn" },
3534
+ "printEdition": { "@id": "schema:printEdition" },
3535
+ "printPage": { "@id": "schema:printPage" },
3536
+ "printSection": { "@id": "schema:printSection" },
3537
+ "procedure": { "@id": "schema:procedure" },
3538
+ "procedureType": { "@id": "schema:procedureType" },
3539
+ "processingTime": { "@id": "schema:processingTime" },
3540
+ "processorRequirements": { "@id": "schema:processorRequirements" },
3541
+ "producer": { "@id": "schema:producer" },
3542
+ "produces": { "@id": "schema:produces" },
3543
+ "productGroupID": { "@id": "schema:productGroupID" },
3544
+ "productID": { "@id": "schema:productID" },
3545
+ "productReturnDays": { "@id": "schema:productReturnDays" },
3546
+ "productReturnLink": {
3547
+ "@id": "schema:productReturnLink",
3548
+ "@type": "@id"
3549
+ },
3550
+ "productSupported": { "@id": "schema:productSupported" },
3551
+ "productionCompany": { "@id": "schema:productionCompany" },
3552
+ "productionDate": {
3553
+ "@id": "schema:productionDate",
3554
+ "@type": "Date"
3555
+ },
3556
+ "proficiencyLevel": { "@id": "schema:proficiencyLevel" },
3557
+ "program": { "@id": "schema:program" },
3558
+ "programMembershipUsed": { "@id": "schema:programMembershipUsed" },
3559
+ "programName": { "@id": "schema:programName" },
3560
+ "programPrerequisites": { "@id": "schema:programPrerequisites" },
3561
+ "programType": { "@id": "schema:programType" },
3562
+ "programmingLanguage": { "@id": "schema:programmingLanguage" },
3563
+ "programmingModel": { "@id": "schema:programmingModel" },
3564
+ "propertyID": { "@id": "schema:propertyID" },
3565
+ "proprietaryName": { "@id": "schema:proprietaryName" },
3566
+ "proteinContent": { "@id": "schema:proteinContent" },
3567
+ "provider": { "@id": "schema:provider" },
3568
+ "providerMobility": { "@id": "schema:providerMobility" },
3569
+ "providesBroadcastService": { "@id": "schema:providesBroadcastService" },
3570
+ "providesService": { "@id": "schema:providesService" },
3571
+ "publicAccess": { "@id": "schema:publicAccess" },
3572
+ "publicTransportClosuresInfo": {
3573
+ "@id": "schema:publicTransportClosuresInfo",
3574
+ "@type": "@id"
3575
+ },
3576
+ "publication": { "@id": "schema:publication" },
3577
+ "publicationType": { "@id": "schema:publicationType" },
3578
+ "publishedBy": { "@id": "schema:publishedBy" },
3579
+ "publishedOn": { "@id": "schema:publishedOn" },
3580
+ "publisher": { "@id": "schema:publisher" },
3581
+ "publisherImprint": { "@id": "schema:publisherImprint" },
3582
+ "publishingPrinciples": {
3583
+ "@id": "schema:publishingPrinciples",
3584
+ "@type": "@id"
3585
+ },
3586
+ "purchaseDate": {
3587
+ "@id": "schema:purchaseDate",
3588
+ "@type": "Date"
3589
+ },
3590
+ "qualifications": { "@id": "schema:qualifications" },
3591
+ "quarantineGuidelines": {
3592
+ "@id": "schema:quarantineGuidelines",
3593
+ "@type": "@id"
3594
+ },
3595
+ "query": { "@id": "schema:query" },
3596
+ "quest": { "@id": "schema:quest" },
3597
+ "question": { "@id": "schema:question" },
3598
+ "rangeIncludes": { "@id": "schema:rangeIncludes" },
3599
+ "ratingCount": { "@id": "schema:ratingCount" },
3600
+ "ratingExplanation": { "@id": "schema:ratingExplanation" },
3601
+ "ratingValue": { "@id": "schema:ratingValue" },
3602
+ "readBy": { "@id": "schema:readBy" },
3603
+ "readonlyValue": { "@id": "schema:readonlyValue" },
3604
+ "realEstateAgent": { "@id": "schema:realEstateAgent" },
3605
+ "recipe": { "@id": "schema:recipe" },
3606
+ "recipeCategory": { "@id": "schema:recipeCategory" },
3607
+ "recipeCuisine": { "@id": "schema:recipeCuisine" },
3608
+ "recipeIngredient": { "@id": "schema:recipeIngredient" },
3609
+ "recipeInstructions": { "@id": "schema:recipeInstructions" },
3610
+ "recipeYield": { "@id": "schema:recipeYield" },
3611
+ "recipient": { "@id": "schema:recipient" },
3612
+ "recognizedBy": { "@id": "schema:recognizedBy" },
3613
+ "recognizingAuthority": { "@id": "schema:recognizingAuthority" },
3614
+ "recommendationStrength": { "@id": "schema:recommendationStrength" },
3615
+ "recommendedIntake": { "@id": "schema:recommendedIntake" },
3616
+ "recordLabel": { "@id": "schema:recordLabel" },
3617
+ "recordedAs": { "@id": "schema:recordedAs" },
3618
+ "recordedAt": { "@id": "schema:recordedAt" },
3619
+ "recordedIn": { "@id": "schema:recordedIn" },
3620
+ "recordingOf": { "@id": "schema:recordingOf" },
3621
+ "recourseLoan": { "@id": "schema:recourseLoan" },
3622
+ "referenceQuantity": { "@id": "schema:referenceQuantity" },
3623
+ "referencesOrder": { "@id": "schema:referencesOrder" },
3624
+ "refundType": { "@id": "schema:refundType" },
3625
+ "regionDrained": { "@id": "schema:regionDrained" },
3626
+ "regionsAllowed": { "@id": "schema:regionsAllowed" },
3627
+ "relatedAnatomy": { "@id": "schema:relatedAnatomy" },
3628
+ "relatedCondition": { "@id": "schema:relatedCondition" },
3629
+ "relatedDrug": { "@id": "schema:relatedDrug" },
3630
+ "relatedLink": {
3631
+ "@id": "schema:relatedLink",
3632
+ "@type": "@id"
3633
+ },
3634
+ "relatedStructure": { "@id": "schema:relatedStructure" },
3635
+ "relatedTherapy": { "@id": "schema:relatedTherapy" },
3636
+ "relatedTo": { "@id": "schema:relatedTo" },
3637
+ "releaseDate": {
3638
+ "@id": "schema:releaseDate",
3639
+ "@type": "Date"
3640
+ },
3641
+ "releaseNotes": { "@id": "schema:releaseNotes" },
3642
+ "releaseOf": { "@id": "schema:releaseOf" },
3643
+ "releasedEvent": { "@id": "schema:releasedEvent" },
3644
+ "relevantOccupation": { "@id": "schema:relevantOccupation" },
3645
+ "relevantSpecialty": { "@id": "schema:relevantSpecialty" },
3646
+ "remainingAttendeeCapacity": { "@id": "schema:remainingAttendeeCapacity" },
3647
+ "renegotiableLoan": { "@id": "schema:renegotiableLoan" },
3648
+ "repeatCount": { "@id": "schema:repeatCount" },
3649
+ "repeatFrequency": { "@id": "schema:repeatFrequency" },
3650
+ "repetitions": { "@id": "schema:repetitions" },
3651
+ "replacee": { "@id": "schema:replacee" },
3652
+ "replacer": { "@id": "schema:replacer" },
3653
+ "replyToUrl": {
3654
+ "@id": "schema:replyToUrl",
3655
+ "@type": "@id"
3656
+ },
3657
+ "reportNumber": { "@id": "schema:reportNumber" },
3658
+ "representativeOfPage": { "@id": "schema:representativeOfPage" },
3659
+ "requiredCollateral": { "@id": "schema:requiredCollateral" },
3660
+ "requiredGender": { "@id": "schema:requiredGender" },
3661
+ "requiredMaxAge": { "@id": "schema:requiredMaxAge" },
3662
+ "requiredMinAge": { "@id": "schema:requiredMinAge" },
3663
+ "requiredQuantity": { "@id": "schema:requiredQuantity" },
3664
+ "requirements": { "@id": "schema:requirements" },
3665
+ "requiresSubscription": { "@id": "schema:requiresSubscription" },
3666
+ "reservationFor": { "@id": "schema:reservationFor" },
3667
+ "reservationId": { "@id": "schema:reservationId" },
3668
+ "reservationStatus": { "@id": "schema:reservationStatus" },
3669
+ "reservedTicket": { "@id": "schema:reservedTicket" },
3670
+ "responsibilities": { "@id": "schema:responsibilities" },
3671
+ "restPeriods": { "@id": "schema:restPeriods" },
3672
+ "restockingFee": { "@id": "schema:restockingFee" },
3673
+ "result": { "@id": "schema:result" },
3674
+ "resultComment": { "@id": "schema:resultComment" },
3675
+ "resultReview": { "@id": "schema:resultReview" },
3676
+ "returnFees": { "@id": "schema:returnFees" },
3677
+ "returnLabelSource": { "@id": "schema:returnLabelSource" },
3678
+ "returnMethod": { "@id": "schema:returnMethod" },
3679
+ "returnPolicyCategory": { "@id": "schema:returnPolicyCategory" },
3680
+ "returnPolicyCountry": { "@id": "schema:returnPolicyCountry" },
3681
+ "returnPolicySeasonalOverride": { "@id": "schema:returnPolicySeasonalOverride" },
3682
+ "returnShippingFeesAmount": { "@id": "schema:returnShippingFeesAmount" },
3683
+ "review": { "@id": "schema:review" },
3684
+ "reviewAspect": { "@id": "schema:reviewAspect" },
3685
+ "reviewBody": { "@id": "schema:reviewBody" },
3686
+ "reviewCount": { "@id": "schema:reviewCount" },
3687
+ "reviewRating": { "@id": "schema:reviewRating" },
3688
+ "reviewedBy": { "@id": "schema:reviewedBy" },
3689
+ "reviews": { "@id": "schema:reviews" },
3690
+ "riskFactor": { "@id": "schema:riskFactor" },
3691
+ "risks": { "@id": "schema:risks" },
3692
+ "roleName": { "@id": "schema:roleName" },
3693
+ "roofLoad": { "@id": "schema:roofLoad" },
3694
+ "rsvpResponse": { "@id": "schema:rsvpResponse" },
3695
+ "runsTo": { "@id": "schema:runsTo" },
3696
+ "runtime": { "@id": "schema:runtime" },
3697
+ "runtimePlatform": { "@id": "schema:runtimePlatform" },
3698
+ "rxcui": { "@id": "schema:rxcui" },
3699
+ "safetyConsideration": { "@id": "schema:safetyConsideration" },
3700
+ "salaryCurrency": { "@id": "schema:salaryCurrency" },
3701
+ "salaryUponCompletion": { "@id": "schema:salaryUponCompletion" },
3702
+ "sameAs": {
3703
+ "@id": "schema:sameAs",
3704
+ "@type": "@id"
3705
+ },
3706
+ "sampleType": { "@id": "schema:sampleType" },
3707
+ "saturatedFatContent": { "@id": "schema:saturatedFatContent" },
3708
+ "scheduleTimezone": { "@id": "schema:scheduleTimezone" },
3709
+ "scheduledPaymentDate": {
3710
+ "@id": "schema:scheduledPaymentDate",
3711
+ "@type": "Date"
3712
+ },
3713
+ "scheduledTime": {
3714
+ "@id": "schema:scheduledTime",
3715
+ "@type": "Date"
3716
+ },
3717
+ "schemaVersion": { "@id": "schema:schemaVersion" },
3718
+ "schoolClosuresInfo": {
3719
+ "@id": "schema:schoolClosuresInfo",
3720
+ "@type": "@id"
3721
+ },
3722
+ "screenCount": { "@id": "schema:screenCount" },
3723
+ "screenshot": {
3724
+ "@id": "schema:screenshot",
3725
+ "@type": "@id"
3726
+ },
3727
+ "sdDatePublished": {
3728
+ "@id": "schema:sdDatePublished",
3729
+ "@type": "Date"
3730
+ },
3731
+ "sdLicense": {
3732
+ "@id": "schema:sdLicense",
3733
+ "@type": "@id"
3734
+ },
3735
+ "sdPublisher": { "@id": "schema:sdPublisher" },
3736
+ "season": {
3737
+ "@id": "schema:season",
3738
+ "@type": "@id"
3739
+ },
3740
+ "seasonNumber": { "@id": "schema:seasonNumber" },
3741
+ "seasons": { "@id": "schema:seasons" },
3742
+ "seatNumber": { "@id": "schema:seatNumber" },
3743
+ "seatRow": { "@id": "schema:seatRow" },
3744
+ "seatSection": { "@id": "schema:seatSection" },
3745
+ "seatingCapacity": { "@id": "schema:seatingCapacity" },
3746
+ "seatingType": { "@id": "schema:seatingType" },
3747
+ "secondaryPrevention": { "@id": "schema:secondaryPrevention" },
3748
+ "securityClearanceRequirement": { "@id": "schema:securityClearanceRequirement" },
3749
+ "securityScreening": { "@id": "schema:securityScreening" },
3750
+ "seeks": { "@id": "schema:seeks" },
3751
+ "seller": { "@id": "schema:seller" },
3752
+ "sender": { "@id": "schema:sender" },
3753
+ "sensoryRequirement": { "@id": "schema:sensoryRequirement" },
3754
+ "sensoryUnit": { "@id": "schema:sensoryUnit" },
3755
+ "serialNumber": { "@id": "schema:serialNumber" },
3756
+ "seriousAdverseOutcome": { "@id": "schema:seriousAdverseOutcome" },
3757
+ "serverStatus": { "@id": "schema:serverStatus" },
3758
+ "servesCuisine": { "@id": "schema:servesCuisine" },
3759
+ "serviceArea": { "@id": "schema:serviceArea" },
3760
+ "serviceAudience": { "@id": "schema:serviceAudience" },
3761
+ "serviceLocation": { "@id": "schema:serviceLocation" },
3762
+ "serviceOperator": { "@id": "schema:serviceOperator" },
3763
+ "serviceOutput": { "@id": "schema:serviceOutput" },
3764
+ "servicePhone": { "@id": "schema:servicePhone" },
3765
+ "servicePostalAddress": { "@id": "schema:servicePostalAddress" },
3766
+ "serviceSmsNumber": { "@id": "schema:serviceSmsNumber" },
3767
+ "serviceType": { "@id": "schema:serviceType" },
3768
+ "serviceUrl": {
3769
+ "@id": "schema:serviceUrl",
3770
+ "@type": "@id"
3771
+ },
3772
+ "servingSize": { "@id": "schema:servingSize" },
3773
+ "sha256": { "@id": "schema:sha256" },
3774
+ "sharedContent": { "@id": "schema:sharedContent" },
3775
+ "shippingDestination": { "@id": "schema:shippingDestination" },
3776
+ "shippingDetails": { "@id": "schema:shippingDetails" },
3777
+ "shippingLabel": { "@id": "schema:shippingLabel" },
3778
+ "shippingOrigin": { "@id": "schema:shippingOrigin" },
3779
+ "shippingRate": { "@id": "schema:shippingRate" },
3780
+ "shippingSettingsLink": {
3781
+ "@id": "schema:shippingSettingsLink",
3782
+ "@type": "@id"
3783
+ },
3784
+ "sibling": { "@id": "schema:sibling" },
3785
+ "siblings": { "@id": "schema:siblings" },
3786
+ "signDetected": { "@id": "schema:signDetected" },
3787
+ "signOrSymptom": { "@id": "schema:signOrSymptom" },
3788
+ "significance": { "@id": "schema:significance" },
3789
+ "significantLink": {
3790
+ "@id": "schema:significantLink",
3791
+ "@type": "@id"
3792
+ },
3793
+ "significantLinks": {
3794
+ "@id": "schema:significantLinks",
3795
+ "@type": "@id"
3796
+ },
3797
+ "size": { "@id": "schema:size" },
3798
+ "sizeGroup": { "@id": "schema:sizeGroup" },
3799
+ "sizeSystem": { "@id": "schema:sizeSystem" },
3800
+ "skills": { "@id": "schema:skills" },
3801
+ "sku": { "@id": "schema:sku" },
3802
+ "slogan": { "@id": "schema:slogan" },
3803
+ "smiles": { "@id": "schema:smiles" },
3804
+ "smokingAllowed": { "@id": "schema:smokingAllowed" },
3805
+ "sodiumContent": { "@id": "schema:sodiumContent" },
3806
+ "softwareAddOn": { "@id": "schema:softwareAddOn" },
3807
+ "softwareHelp": { "@id": "schema:softwareHelp" },
3808
+ "softwareRequirements": { "@id": "schema:softwareRequirements" },
3809
+ "softwareVersion": { "@id": "schema:softwareVersion" },
3810
+ "sourceOrganization": { "@id": "schema:sourceOrganization" },
3811
+ "sourcedFrom": { "@id": "schema:sourcedFrom" },
3812
+ "spatial": { "@id": "schema:spatial" },
3813
+ "spatialCoverage": { "@id": "schema:spatialCoverage" },
3814
+ "speakable": {
3815
+ "@id": "schema:speakable",
3816
+ "@type": "@id"
3817
+ },
3818
+ "specialCommitments": { "@id": "schema:specialCommitments" },
3819
+ "specialOpeningHoursSpecification": { "@id": "schema:specialOpeningHoursSpecification" },
3820
+ "specialty": { "@id": "schema:specialty" },
3821
+ "speechToTextMarkup": { "@id": "schema:speechToTextMarkup" },
3822
+ "speed": { "@id": "schema:speed" },
3823
+ "spokenByCharacter": { "@id": "schema:spokenByCharacter" },
3824
+ "sponsor": { "@id": "schema:sponsor" },
3825
+ "sport": { "@id": "schema:sport" },
3826
+ "sportsActivityLocation": { "@id": "schema:sportsActivityLocation" },
3827
+ "sportsEvent": { "@id": "schema:sportsEvent" },
3828
+ "sportsTeam": { "@id": "schema:sportsTeam" },
3829
+ "spouse": { "@id": "schema:spouse" },
3830
+ "stage": { "@id": "schema:stage" },
3831
+ "stageAsNumber": { "@id": "schema:stageAsNumber" },
3832
+ "starRating": { "@id": "schema:starRating" },
3833
+ "startDate": {
3834
+ "@id": "schema:startDate",
3835
+ "@type": "Date"
3836
+ },
3837
+ "startOffset": { "@id": "schema:startOffset" },
3838
+ "startTime": { "@id": "schema:startTime" },
3839
+ "statType": { "@id": "schema:statType" },
3840
+ "status": { "@id": "schema:status" },
3841
+ "steeringPosition": { "@id": "schema:steeringPosition" },
3842
+ "step": { "@id": "schema:step" },
3843
+ "stepValue": { "@id": "schema:stepValue" },
3844
+ "steps": { "@id": "schema:steps" },
3845
+ "storageRequirements": { "@id": "schema:storageRequirements" },
3846
+ "streetAddress": { "@id": "schema:streetAddress" },
3847
+ "strengthUnit": { "@id": "schema:strengthUnit" },
3848
+ "strengthValue": { "@id": "schema:strengthValue" },
3849
+ "structuralClass": { "@id": "schema:structuralClass" },
3850
+ "study": { "@id": "schema:study" },
3851
+ "studyDesign": { "@id": "schema:studyDesign" },
3852
+ "studyLocation": { "@id": "schema:studyLocation" },
3853
+ "studySubject": { "@id": "schema:studySubject" },
3854
+ "stupidProperty": { "@id": "schema:stupidProperty" },
3855
+ "subEvent": { "@id": "schema:subEvent" },
3856
+ "subEvents": { "@id": "schema:subEvents" },
3857
+ "subOrganization": { "@id": "schema:subOrganization" },
3858
+ "subReservation": { "@id": "schema:subReservation" },
3859
+ "subStageSuffix": { "@id": "schema:subStageSuffix" },
3860
+ "subStructure": { "@id": "schema:subStructure" },
3861
+ "subTest": { "@id": "schema:subTest" },
3862
+ "subTrip": { "@id": "schema:subTrip" },
3863
+ "subjectOf": { "@id": "schema:subjectOf" },
3864
+ "subtitleLanguage": { "@id": "schema:subtitleLanguage" },
3865
+ "successorOf": { "@id": "schema:successorOf" },
3866
+ "sugarContent": { "@id": "schema:sugarContent" },
3867
+ "suggestedAge": { "@id": "schema:suggestedAge" },
3868
+ "suggestedAnswer": { "@id": "schema:suggestedAnswer" },
3869
+ "suggestedGender": { "@id": "schema:suggestedGender" },
3870
+ "suggestedMaxAge": { "@id": "schema:suggestedMaxAge" },
3871
+ "suggestedMeasurement": { "@id": "schema:suggestedMeasurement" },
3872
+ "suggestedMinAge": { "@id": "schema:suggestedMinAge" },
3873
+ "suitableForDiet": { "@id": "schema:suitableForDiet" },
3874
+ "superEvent": { "@id": "schema:superEvent" },
3875
+ "supersededBy": { "@id": "schema:supersededBy" },
3876
+ "supply": { "@id": "schema:supply" },
3877
+ "supplyTo": { "@id": "schema:supplyTo" },
3878
+ "supportingData": { "@id": "schema:supportingData" },
3879
+ "surface": { "@id": "schema:surface" },
3880
+ "syllabusSections": { "@id": "schema:syllabusSections" },
3881
+ "target": {
3882
+ "@id": "schema:target",
3883
+ "@type": "@id"
3884
+ },
3885
+ "targetCollection": { "@id": "schema:targetCollection" },
3886
+ "targetDescription": { "@id": "schema:targetDescription" },
3887
+ "targetName": { "@id": "schema:targetName" },
3888
+ "targetPlatform": { "@id": "schema:targetPlatform" },
3889
+ "targetPopulation": { "@id": "schema:targetPopulation" },
3890
+ "targetProduct": { "@id": "schema:targetProduct" },
3891
+ "targetUrl": {
3892
+ "@id": "schema:targetUrl",
3893
+ "@type": "@id"
3894
+ },
3895
+ "taxID": { "@id": "schema:taxID" },
3896
+ "taxonRank": { "@id": "schema:taxonRank" },
3897
+ "taxonomicRange": { "@id": "schema:taxonomicRange" },
3898
+ "teaches": { "@id": "schema:teaches" },
3899
+ "telephone": { "@id": "schema:telephone" },
3900
+ "temporal": { "@id": "schema:temporal" },
3901
+ "temporalCoverage": { "@id": "schema:temporalCoverage" },
3902
+ "termCode": { "@id": "schema:termCode" },
3903
+ "termDuration": { "@id": "schema:termDuration" },
3904
+ "termsOfService": { "@id": "schema:termsOfService" },
3905
+ "termsPerYear": { "@id": "schema:termsPerYear" },
3906
+ "text": { "@id": "schema:text" },
3907
+ "textValue": { "@id": "schema:textValue" },
3908
+ "thumbnail": { "@id": "schema:thumbnail" },
3909
+ "thumbnailUrl": {
3910
+ "@id": "schema:thumbnailUrl",
3911
+ "@type": "@id"
3912
+ },
3913
+ "tickerSymbol": { "@id": "schema:tickerSymbol" },
3914
+ "ticketNumber": { "@id": "schema:ticketNumber" },
3915
+ "ticketToken": { "@id": "schema:ticketToken" },
3916
+ "ticketedSeat": { "@id": "schema:ticketedSeat" },
3917
+ "timeOfDay": { "@id": "schema:timeOfDay" },
3918
+ "timeRequired": { "@id": "schema:timeRequired" },
3919
+ "timeToComplete": { "@id": "schema:timeToComplete" },
3920
+ "tissueSample": { "@id": "schema:tissueSample" },
3921
+ "title": { "@id": "schema:title" },
3922
+ "titleEIDR": { "@id": "schema:titleEIDR" },
3923
+ "toLocation": { "@id": "schema:toLocation" },
3924
+ "toRecipient": { "@id": "schema:toRecipient" },
3925
+ "tocContinuation": { "@id": "schema:tocContinuation" },
3926
+ "tocEntry": { "@id": "schema:tocEntry" },
3927
+ "tongueWeight": { "@id": "schema:tongueWeight" },
3928
+ "tool": { "@id": "schema:tool" },
3929
+ "torque": { "@id": "schema:torque" },
3930
+ "totalHistoricalEnrollment": { "@id": "schema:totalHistoricalEnrollment" },
3931
+ "totalJobOpenings": { "@id": "schema:totalJobOpenings" },
3932
+ "totalPaymentDue": { "@id": "schema:totalPaymentDue" },
3933
+ "totalPrice": { "@id": "schema:totalPrice" },
3934
+ "totalTime": { "@id": "schema:totalTime" },
3935
+ "tourBookingPage": {
3936
+ "@id": "schema:tourBookingPage",
3937
+ "@type": "@id"
3938
+ },
3939
+ "touristType": { "@id": "schema:touristType" },
3940
+ "track": { "@id": "schema:track" },
3941
+ "trackingNumber": { "@id": "schema:trackingNumber" },
3942
+ "trackingUrl": {
3943
+ "@id": "schema:trackingUrl",
3944
+ "@type": "@id"
3945
+ },
3946
+ "tracks": { "@id": "schema:tracks" },
3947
+ "trailer": { "@id": "schema:trailer" },
3948
+ "trailerWeight": { "@id": "schema:trailerWeight" },
3949
+ "trainName": { "@id": "schema:trainName" },
3950
+ "trainNumber": { "@id": "schema:trainNumber" },
3951
+ "trainingSalary": { "@id": "schema:trainingSalary" },
3952
+ "transFatContent": { "@id": "schema:transFatContent" },
3953
+ "transcript": { "@id": "schema:transcript" },
3954
+ "transitTime": { "@id": "schema:transitTime" },
3955
+ "transitTimeLabel": { "@id": "schema:transitTimeLabel" },
3956
+ "translationOfWork": { "@id": "schema:translationOfWork" },
3957
+ "translator": { "@id": "schema:translator" },
3958
+ "transmissionMethod": { "@id": "schema:transmissionMethod" },
3959
+ "travelBans": {
3960
+ "@id": "schema:travelBans",
3961
+ "@type": "@id"
3962
+ },
3963
+ "trialDesign": { "@id": "schema:trialDesign" },
3964
+ "tributary": { "@id": "schema:tributary" },
3965
+ "tripOrigin": { "@id": "schema:tripOrigin" },
3966
+ "typeOfBed": { "@id": "schema:typeOfBed" },
3967
+ "typeOfGood": { "@id": "schema:typeOfGood" },
3968
+ "typicalAgeRange": { "@id": "schema:typicalAgeRange" },
3969
+ "typicalCreditsPerTerm": { "@id": "schema:typicalCreditsPerTerm" },
3970
+ "typicalTest": { "@id": "schema:typicalTest" },
3971
+ "underName": { "@id": "schema:underName" },
3972
+ "unitCode": { "@id": "schema:unitCode" },
3973
+ "unitText": { "@id": "schema:unitText" },
3974
+ "unnamedSourcesPolicy": {
3975
+ "@id": "schema:unnamedSourcesPolicy",
3976
+ "@type": "@id"
3977
+ },
3978
+ "unsaturatedFatContent": { "@id": "schema:unsaturatedFatContent" },
3979
+ "uploadDate": {
3980
+ "@id": "schema:uploadDate",
3981
+ "@type": "Date"
3982
+ },
3983
+ "upvoteCount": { "@id": "schema:upvoteCount" },
3984
+ "url": {
3985
+ "@id": "schema:url",
3986
+ "@type": "@id"
3987
+ },
3988
+ "urlTemplate": { "@id": "schema:urlTemplate" },
3989
+ "usNPI": { "@id": "schema:usNPI" },
3990
+ "usageInfo": {
3991
+ "@id": "schema:usageInfo",
3992
+ "@type": "@id"
3993
+ },
3994
+ "usedToDiagnose": { "@id": "schema:usedToDiagnose" },
3995
+ "userInteractionCount": { "@id": "schema:userInteractionCount" },
3996
+ "usesDevice": { "@id": "schema:usesDevice" },
3997
+ "usesHealthPlanIdStandard": { "@id": "schema:usesHealthPlanIdStandard" },
3998
+ "utterances": { "@id": "schema:utterances" },
3999
+ "validFor": { "@id": "schema:validFor" },
4000
+ "validForMemberTier": { "@id": "schema:validForMemberTier" },
4001
+ "validFrom": {
4002
+ "@id": "schema:validFrom",
4003
+ "@type": "Date"
4004
+ },
4005
+ "validIn": { "@id": "schema:validIn" },
4006
+ "validThrough": {
4007
+ "@id": "schema:validThrough",
4008
+ "@type": "Date"
4009
+ },
4010
+ "validUntil": {
4011
+ "@id": "schema:validUntil",
4012
+ "@type": "Date"
4013
+ },
4014
+ "value": { "@id": "schema:value" },
4015
+ "valueAddedTaxIncluded": { "@id": "schema:valueAddedTaxIncluded" },
4016
+ "valueMaxLength": { "@id": "schema:valueMaxLength" },
4017
+ "valueMinLength": { "@id": "schema:valueMinLength" },
4018
+ "valueName": { "@id": "schema:valueName" },
4019
+ "valuePattern": { "@id": "schema:valuePattern" },
4020
+ "valueReference": { "@id": "schema:valueReference" },
4021
+ "valueRequired": { "@id": "schema:valueRequired" },
4022
+ "variableMeasured": { "@id": "schema:variableMeasured" },
4023
+ "variablesMeasured": { "@id": "schema:variablesMeasured" },
4024
+ "variantCover": { "@id": "schema:variantCover" },
4025
+ "variesBy": { "@id": "schema:variesBy" },
4026
+ "vatID": { "@id": "schema:vatID" },
4027
+ "vehicleConfiguration": { "@id": "schema:vehicleConfiguration" },
4028
+ "vehicleEngine": { "@id": "schema:vehicleEngine" },
4029
+ "vehicleIdentificationNumber": { "@id": "schema:vehicleIdentificationNumber" },
4030
+ "vehicleInteriorColor": { "@id": "schema:vehicleInteriorColor" },
4031
+ "vehicleInteriorType": { "@id": "schema:vehicleInteriorType" },
4032
+ "vehicleModelDate": {
4033
+ "@id": "schema:vehicleModelDate",
4034
+ "@type": "Date"
4035
+ },
4036
+ "vehicleSeatingCapacity": { "@id": "schema:vehicleSeatingCapacity" },
4037
+ "vehicleSpecialUsage": { "@id": "schema:vehicleSpecialUsage" },
4038
+ "vehicleTransmission": { "@id": "schema:vehicleTransmission" },
4039
+ "vendor": { "@id": "schema:vendor" },
4040
+ "verificationFactCheckingPolicy": {
4041
+ "@id": "schema:verificationFactCheckingPolicy",
4042
+ "@type": "@id"
4043
+ },
4044
+ "version": { "@id": "schema:version" },
4045
+ "video": { "@id": "schema:video" },
4046
+ "videoFormat": { "@id": "schema:videoFormat" },
4047
+ "videoFrameSize": { "@id": "schema:videoFrameSize" },
4048
+ "videoQuality": { "@id": "schema:videoQuality" },
4049
+ "volumeNumber": { "@id": "schema:volumeNumber" },
4050
+ "warning": { "@id": "schema:warning" },
4051
+ "warranty": { "@id": "schema:warranty" },
4052
+ "warrantyPromise": { "@id": "schema:warrantyPromise" },
4053
+ "warrantyScope": { "@id": "schema:warrantyScope" },
4054
+ "webCheckinTime": { "@id": "schema:webCheckinTime" },
4055
+ "webFeed": {
4056
+ "@id": "schema:webFeed",
4057
+ "@type": "@id"
4058
+ },
4059
+ "weight": { "@id": "schema:weight" },
4060
+ "weightTotal": { "@id": "schema:weightTotal" },
4061
+ "wheelbase": { "@id": "schema:wheelbase" },
4062
+ "width": { "@id": "schema:width" },
4063
+ "winner": { "@id": "schema:winner" },
4064
+ "wordCount": { "@id": "schema:wordCount" },
4065
+ "workExample": { "@id": "schema:workExample" },
4066
+ "workFeatured": { "@id": "schema:workFeatured" },
4067
+ "workHours": { "@id": "schema:workHours" },
4068
+ "workLocation": { "@id": "schema:workLocation" },
4069
+ "workPerformed": { "@id": "schema:workPerformed" },
4070
+ "workPresented": { "@id": "schema:workPresented" },
4071
+ "workTranslation": { "@id": "schema:workTranslation" },
4072
+ "workload": { "@id": "schema:workload" },
4073
+ "worksFor": { "@id": "schema:worksFor" },
4074
+ "worstRating": { "@id": "schema:worstRating" },
4075
+ "xpath": { "@id": "schema:xpath" },
4076
+ "yearBuilt": { "@id": "schema:yearBuilt" },
4077
+ "yearlyRevenue": { "@id": "schema:yearlyRevenue" },
4078
+ "yearsInOperation": { "@id": "schema:yearsInOperation" },
4079
+ "yield": { "@id": "schema:yield" }
4080
+ } },
4081
+ "https://gotosocial.org/ns": { "@context": {
4082
+ "gts": "https://gotosocial.org/ns#",
4083
+ "interactionPolicy": {
4084
+ "@id": "gts:interactionPolicy",
4085
+ "@type": "@id"
4086
+ },
4087
+ "canLike": {
4088
+ "@id": "gts:canLike",
4089
+ "@type": "@id"
4090
+ },
4091
+ "canReply": {
4092
+ "@id": "gts:canReply",
4093
+ "@type": "@id"
4094
+ },
4095
+ "canAnnounce": {
4096
+ "@id": "gts:canAnnounce",
4097
+ "@type": "@id"
4098
+ },
4099
+ "always": {
4100
+ "@id": "gts:always",
4101
+ "@type": "@id"
4102
+ },
4103
+ "approvalRequired": {
4104
+ "@id": "gts:approvalRequired",
4105
+ "@type": "@id"
4106
+ },
4107
+ "approvedBy": {
4108
+ "@id": "gts:approvedBy",
4109
+ "@type": "@id"
4110
+ }
4111
+ } }
4112
+ };
4113
+ var contexts_default = preloadedContexts;
4114
+
4115
+ //#endregion
4116
+ export { contexts_default };