@fedify/fedify 1.6.0-dev.814 → 1.6.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 +392 -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 +123 -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 +128 -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 +136 -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
@@ -1,4191 +0,0 @@
1
- // Preloaded context documents
2
- // https://github.com/fedify-dev/fedify/issues/74
3
- // cSpell: disable
4
- const preloadedContexts = {
5
- "https://www.w3.org/ns/activitystreams": {
6
- "@context": {
7
- "@vocab": "_:",
8
- "xsd": "http://www.w3.org/2001/XMLSchema#",
9
- "as": "https://www.w3.org/ns/activitystreams#",
10
- "ldp": "http://www.w3.org/ns/ldp#",
11
- "vcard": "http://www.w3.org/2006/vcard/ns#",
12
- "id": "@id",
13
- "type": "@type",
14
- "Accept": "as:Accept",
15
- "Activity": "as:Activity",
16
- "IntransitiveActivity": "as:IntransitiveActivity",
17
- "Add": "as:Add",
18
- "Announce": "as:Announce",
19
- "Application": "as:Application",
20
- "Arrive": "as:Arrive",
21
- "Article": "as:Article",
22
- "Audio": "as:Audio",
23
- "Block": "as:Block",
24
- "Collection": "as:Collection",
25
- "CollectionPage": "as:CollectionPage",
26
- "Relationship": "as:Relationship",
27
- "Create": "as:Create",
28
- "Delete": "as:Delete",
29
- "Dislike": "as:Dislike",
30
- "Document": "as:Document",
31
- "Event": "as:Event",
32
- "Follow": "as:Follow",
33
- "Flag": "as:Flag",
34
- "Group": "as:Group",
35
- "Ignore": "as:Ignore",
36
- "Image": "as:Image",
37
- "Invite": "as:Invite",
38
- "Join": "as:Join",
39
- "Leave": "as:Leave",
40
- "Like": "as:Like",
41
- "Link": "as:Link",
42
- "Mention": "as:Mention",
43
- "Note": "as:Note",
44
- "Object": "as:Object",
45
- "Offer": "as:Offer",
46
- "OrderedCollection": "as:OrderedCollection",
47
- "OrderedCollectionPage": "as:OrderedCollectionPage",
48
- "Organization": "as:Organization",
49
- "Page": "as:Page",
50
- "Person": "as:Person",
51
- "Place": "as:Place",
52
- "Profile": "as:Profile",
53
- "Question": "as:Question",
54
- "Reject": "as:Reject",
55
- "Remove": "as:Remove",
56
- "Service": "as:Service",
57
- "TentativeAccept": "as:TentativeAccept",
58
- "TentativeReject": "as:TentativeReject",
59
- "Tombstone": "as:Tombstone",
60
- "Undo": "as:Undo",
61
- "Update": "as:Update",
62
- "Video": "as:Video",
63
- "View": "as:View",
64
- "Listen": "as:Listen",
65
- "Read": "as:Read",
66
- "Move": "as:Move",
67
- "Travel": "as:Travel",
68
- "IsFollowing": "as:IsFollowing",
69
- "IsFollowedBy": "as:IsFollowedBy",
70
- "IsContact": "as:IsContact",
71
- "IsMember": "as:IsMember",
72
- "subject": {
73
- "@id": "as:subject",
74
- "@type": "@id",
75
- },
76
- "relationship": {
77
- "@id": "as:relationship",
78
- "@type": "@id",
79
- },
80
- "actor": {
81
- "@id": "as:actor",
82
- "@type": "@id",
83
- },
84
- "attributedTo": {
85
- "@id": "as:attributedTo",
86
- "@type": "@id",
87
- },
88
- "attachment": {
89
- "@id": "as:attachment",
90
- "@type": "@id",
91
- },
92
- "bcc": {
93
- "@id": "as:bcc",
94
- "@type": "@id",
95
- },
96
- "bto": {
97
- "@id": "as:bto",
98
- "@type": "@id",
99
- },
100
- "cc": {
101
- "@id": "as:cc",
102
- "@type": "@id",
103
- },
104
- "context": {
105
- "@id": "as:context",
106
- "@type": "@id",
107
- },
108
- "current": {
109
- "@id": "as:current",
110
- "@type": "@id",
111
- },
112
- "first": {
113
- "@id": "as:first",
114
- "@type": "@id",
115
- },
116
- "generator": {
117
- "@id": "as:generator",
118
- "@type": "@id",
119
- },
120
- "icon": {
121
- "@id": "as:icon",
122
- "@type": "@id",
123
- },
124
- "image": {
125
- "@id": "as:image",
126
- "@type": "@id",
127
- },
128
- "inReplyTo": {
129
- "@id": "as:inReplyTo",
130
- "@type": "@id",
131
- },
132
- "items": {
133
- "@id": "as:items",
134
- "@type": "@id",
135
- },
136
- "instrument": {
137
- "@id": "as:instrument",
138
- "@type": "@id",
139
- },
140
- "orderedItems": {
141
- "@id": "as:items",
142
- "@type": "@id",
143
- "@container": "@list",
144
- },
145
- "last": {
146
- "@id": "as:last",
147
- "@type": "@id",
148
- },
149
- "location": {
150
- "@id": "as:location",
151
- "@type": "@id",
152
- },
153
- "next": {
154
- "@id": "as:next",
155
- "@type": "@id",
156
- },
157
- "object": {
158
- "@id": "as:object",
159
- "@type": "@id",
160
- },
161
- "oneOf": {
162
- "@id": "as:oneOf",
163
- "@type": "@id",
164
- },
165
- "anyOf": {
166
- "@id": "as:anyOf",
167
- "@type": "@id",
168
- },
169
- "closed": {
170
- "@id": "as:closed",
171
- "@type": "xsd:dateTime",
172
- },
173
- "origin": {
174
- "@id": "as:origin",
175
- "@type": "@id",
176
- },
177
- "accuracy": {
178
- "@id": "as:accuracy",
179
- "@type": "xsd:float",
180
- },
181
- "prev": {
182
- "@id": "as:prev",
183
- "@type": "@id",
184
- },
185
- "preview": {
186
- "@id": "as:preview",
187
- "@type": "@id",
188
- },
189
- "replies": {
190
- "@id": "as:replies",
191
- "@type": "@id",
192
- },
193
- "result": {
194
- "@id": "as:result",
195
- "@type": "@id",
196
- },
197
- "audience": {
198
- "@id": "as:audience",
199
- "@type": "@id",
200
- },
201
- "partOf": {
202
- "@id": "as:partOf",
203
- "@type": "@id",
204
- },
205
- "tag": {
206
- "@id": "as:tag",
207
- "@type": "@id",
208
- },
209
- "target": {
210
- "@id": "as:target",
211
- "@type": "@id",
212
- },
213
- "to": {
214
- "@id": "as:to",
215
- "@type": "@id",
216
- },
217
- "url": {
218
- "@id": "as:url",
219
- "@type": "@id",
220
- },
221
- "altitude": {
222
- "@id": "as:altitude",
223
- "@type": "xsd:float",
224
- },
225
- "content": "as:content",
226
- "contentMap": {
227
- "@id": "as:content",
228
- "@container": "@language",
229
- },
230
- "name": "as:name",
231
- "nameMap": {
232
- "@id": "as:name",
233
- "@container": "@language",
234
- },
235
- "duration": {
236
- "@id": "as:duration",
237
- "@type": "xsd:duration",
238
- },
239
- "endTime": {
240
- "@id": "as:endTime",
241
- "@type": "xsd:dateTime",
242
- },
243
- "height": {
244
- "@id": "as:height",
245
- "@type": "xsd:nonNegativeInteger",
246
- },
247
- "href": {
248
- "@id": "as:href",
249
- "@type": "@id",
250
- },
251
- "hreflang": "as:hreflang",
252
- "latitude": {
253
- "@id": "as:latitude",
254
- "@type": "xsd:float",
255
- },
256
- "longitude": {
257
- "@id": "as:longitude",
258
- "@type": "xsd:float",
259
- },
260
- "mediaType": "as:mediaType",
261
- "published": {
262
- "@id": "as:published",
263
- "@type": "xsd:dateTime",
264
- },
265
- "radius": {
266
- "@id": "as:radius",
267
- "@type": "xsd:float",
268
- },
269
- "rel": "as:rel",
270
- "startIndex": {
271
- "@id": "as:startIndex",
272
- "@type": "xsd:nonNegativeInteger",
273
- },
274
- "startTime": {
275
- "@id": "as:startTime",
276
- "@type": "xsd:dateTime",
277
- },
278
- "summary": "as:summary",
279
- "summaryMap": {
280
- "@id": "as:summary",
281
- "@container": "@language",
282
- },
283
- "totalItems": {
284
- "@id": "as:totalItems",
285
- "@type": "xsd:nonNegativeInteger",
286
- },
287
- "units": "as:units",
288
- "updated": {
289
- "@id": "as:updated",
290
- "@type": "xsd:dateTime",
291
- },
292
- "width": {
293
- "@id": "as:width",
294
- "@type": "xsd:nonNegativeInteger",
295
- },
296
- "describes": {
297
- "@id": "as:describes",
298
- "@type": "@id",
299
- },
300
- "formerType": {
301
- "@id": "as:formerType",
302
- "@type": "@id",
303
- },
304
- "deleted": {
305
- "@id": "as:deleted",
306
- "@type": "xsd:dateTime",
307
- },
308
- "inbox": {
309
- "@id": "ldp:inbox",
310
- "@type": "@id",
311
- },
312
- "outbox": {
313
- "@id": "as:outbox",
314
- "@type": "@id",
315
- },
316
- "following": {
317
- "@id": "as:following",
318
- "@type": "@id",
319
- },
320
- "followers": {
321
- "@id": "as:followers",
322
- "@type": "@id",
323
- },
324
- "streams": {
325
- "@id": "as:streams",
326
- "@type": "@id",
327
- },
328
- "preferredUsername": "as:preferredUsername",
329
- "endpoints": {
330
- "@id": "as:endpoints",
331
- "@type": "@id",
332
- },
333
- "uploadMedia": {
334
- "@id": "as:uploadMedia",
335
- "@type": "@id",
336
- },
337
- "proxyUrl": {
338
- "@id": "as:proxyUrl",
339
- "@type": "@id",
340
- },
341
- "liked": {
342
- "@id": "as:liked",
343
- "@type": "@id",
344
- },
345
- "oauthAuthorizationEndpoint": {
346
- "@id": "as:oauthAuthorizationEndpoint",
347
- "@type": "@id",
348
- },
349
- "oauthTokenEndpoint": {
350
- "@id": "as:oauthTokenEndpoint",
351
- "@type": "@id",
352
- },
353
- "provideClientKey": {
354
- "@id": "as:provideClientKey",
355
- "@type": "@id",
356
- },
357
- "signClientKey": {
358
- "@id": "as:signClientKey",
359
- "@type": "@id",
360
- },
361
- "sharedInbox": {
362
- "@id": "as:sharedInbox",
363
- "@type": "@id",
364
- },
365
- "Public": {
366
- "@id": "as:Public",
367
- "@type": "@id",
368
- },
369
- "source": "as:source",
370
- "likes": {
371
- "@id": "as:likes",
372
- "@type": "@id",
373
- },
374
- "shares": {
375
- "@id": "as:shares",
376
- "@type": "@id",
377
- },
378
- "alsoKnownAs": {
379
- "@id": "as:alsoKnownAs",
380
- "@type": "@id",
381
- },
382
- },
383
- },
384
- "https://w3id.org/security/v1": {
385
- "@context": {
386
- "id": "@id",
387
- "type": "@type",
388
- "dc": "http://purl.org/dc/terms/",
389
- "sec": "https://w3id.org/security#",
390
- "xsd": "http://www.w3.org/2001/XMLSchema#",
391
- "EcdsaKoblitzSignature2016": "sec:EcdsaKoblitzSignature2016",
392
- "Ed25519Signature2018": "sec:Ed25519Signature2018",
393
- "EncryptedMessage": "sec:EncryptedMessage",
394
- "GraphSignature2012": "sec:GraphSignature2012",
395
- "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
396
- "LinkedDataSignature2016": "sec:LinkedDataSignature2016",
397
- "CryptographicKey": "sec:Key",
398
- "authenticationTag": "sec:authenticationTag",
399
- "canonicalizationAlgorithm": "sec:canonicalizationAlgorithm",
400
- "cipherAlgorithm": "sec:cipherAlgorithm",
401
- "cipherData": "sec:cipherData",
402
- "cipherKey": "sec:cipherKey",
403
- "created": {
404
- "@id": "dc:created",
405
- "@type": "xsd:dateTime",
406
- },
407
- "creator": {
408
- "@id": "dc:creator",
409
- "@type": "@id",
410
- },
411
- "digestAlgorithm": "sec:digestAlgorithm",
412
- "digestValue": "sec:digestValue",
413
- "domain": "sec:domain",
414
- "encryptionKey": "sec:encryptionKey",
415
- "expiration": {
416
- "@id": "sec:expiration",
417
- "@type": "xsd:dateTime",
418
- },
419
- "expires": {
420
- "@id": "sec:expiration",
421
- "@type": "xsd:dateTime",
422
- },
423
- "initializationVector": "sec:initializationVector",
424
- "iterationCount": "sec:iterationCount",
425
- "nonce": "sec:nonce",
426
- "normalizationAlgorithm": "sec:normalizationAlgorithm",
427
- "owner": {
428
- "@id": "sec:owner",
429
- "@type": "@id",
430
- },
431
- "password": "sec:password",
432
- "privateKey": {
433
- "@id": "sec:privateKey",
434
- "@type": "@id",
435
- },
436
- "privateKeyPem": "sec:privateKeyPem",
437
- "publicKey": {
438
- "@id": "sec:publicKey",
439
- "@type": "@id",
440
- },
441
- "publicKeyBase58": "sec:publicKeyBase58",
442
- "publicKeyPem": "sec:publicKeyPem",
443
- "publicKeyWif": "sec:publicKeyWif",
444
- "publicKeyService": {
445
- "@id": "sec:publicKeyService",
446
- "@type": "@id",
447
- },
448
- "revoked": {
449
- "@id": "sec:revoked",
450
- "@type": "xsd:dateTime",
451
- },
452
- "salt": "sec:salt",
453
- "signature": "sec:signature",
454
- "signatureAlgorithm": "sec:signingAlgorithm",
455
- "signatureValue": "sec:signatureValue",
456
- },
457
- },
458
- "https://w3id.org/security/data-integrity/v1": {
459
- "@context": {
460
- "id": "@id",
461
- "type": "@type",
462
- "@protected": true,
463
- "digestMultibase": {
464
- "@id": "https://w3id.org/security#digestMultibase",
465
- "@type": "https://w3id.org/security#multibase",
466
- },
467
- "proof": {
468
- "@id": "https://w3id.org/security#proof",
469
- "@type": "@id",
470
- "@container": "@graph",
471
- },
472
- "DataIntegrityProof": {
473
- "@id": "https://w3id.org/security#DataIntegrityProof",
474
- "@context": {
475
- "@protected": true,
476
- "id": "@id",
477
- "type": "@type",
478
- "challenge": "https://w3id.org/security#challenge",
479
- "created": {
480
- "@id": "http://purl.org/dc/terms/created",
481
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime",
482
- },
483
- "domain": "https://w3id.org/security#domain",
484
- "expires": {
485
- "@id": "https://w3id.org/security#expiration",
486
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime",
487
- },
488
- "nonce": "https://w3id.org/security#nonce",
489
- "proofPurpose": {
490
- "@id": "https://w3id.org/security#proofPurpose",
491
- "@type": "@vocab",
492
- "@context": {
493
- "@protected": true,
494
- "id": "@id",
495
- "type": "@type",
496
- "assertionMethod": {
497
- "@id": "https://w3id.org/security#assertionMethod",
498
- "@type": "@id",
499
- "@container": "@set",
500
- },
501
- "authentication": {
502
- "@id": "https://w3id.org/security#authenticationMethod",
503
- "@type": "@id",
504
- "@container": "@set",
505
- },
506
- "capabilityInvocation": {
507
- "@id": "https://w3id.org/security#capabilityInvocationMethod",
508
- "@type": "@id",
509
- "@container": "@set",
510
- },
511
- "capabilityDelegation": {
512
- "@id": "https://w3id.org/security#capabilityDelegationMethod",
513
- "@type": "@id",
514
- "@container": "@set",
515
- },
516
- "keyAgreement": {
517
- "@id": "https://w3id.org/security#keyAgreementMethod",
518
- "@type": "@id",
519
- "@container": "@set",
520
- },
521
- },
522
- },
523
- "cryptosuite": "https://w3id.org/security#cryptosuite",
524
- "proofValue": {
525
- "@id": "https://w3id.org/security#proofValue",
526
- "@type": "https://w3id.org/security#multibase",
527
- },
528
- "verificationMethod": {
529
- "@id": "https://w3id.org/security#verificationMethod",
530
- "@type": "@id",
531
- },
532
- },
533
- },
534
- },
535
- },
536
- "https://www.w3.org/ns/did/v1": {
537
- "@context": {
538
- "@protected": true,
539
- "id": "@id",
540
- "type": "@type",
541
- "alsoKnownAs": {
542
- "@id": "https://www.w3.org/ns/activitystreams#alsoKnownAs",
543
- "@type": "@id",
544
- },
545
- "assertionMethod": {
546
- "@id": "https://w3id.org/security#assertionMethod",
547
- "@type": "@id",
548
- "@container": "@set",
549
- },
550
- "authentication": {
551
- "@id": "https://w3id.org/security#authenticationMethod",
552
- "@type": "@id",
553
- "@container": "@set",
554
- },
555
- "capabilityDelegation": {
556
- "@id": "https://w3id.org/security#capabilityDelegationMethod",
557
- "@type": "@id",
558
- "@container": "@set",
559
- },
560
- "capabilityInvocation": {
561
- "@id": "https://w3id.org/security#capabilityInvocationMethod",
562
- "@type": "@id",
563
- "@container": "@set",
564
- },
565
- "controller": {
566
- "@id": "https://w3id.org/security#controller",
567
- "@type": "@id",
568
- },
569
- "keyAgreement": {
570
- "@id": "https://w3id.org/security#keyAgreementMethod",
571
- "@type": "@id",
572
- "@container": "@set",
573
- },
574
- "service": {
575
- "@id": "https://www.w3.org/ns/did#service",
576
- "@type": "@id",
577
- "@context": {
578
- "@protected": true,
579
- "id": "@id",
580
- "type": "@type",
581
- "serviceEndpoint": {
582
- "@id": "https://www.w3.org/ns/did#serviceEndpoint",
583
- "@type": "@id",
584
- },
585
- },
586
- },
587
- "verificationMethod": {
588
- "@id": "https://w3id.org/security#verificationMethod",
589
- "@type": "@id",
590
- },
591
- },
592
- },
593
- "https://w3id.org/security/multikey/v1": {
594
- "@context": {
595
- "id": "@id",
596
- "type": "@type",
597
- "@protected": true,
598
- "Multikey": {
599
- "@id": "https://w3id.org/security#Multikey",
600
- "@context": {
601
- "@protected": true,
602
- "id": "@id",
603
- "type": "@type",
604
- "controller": {
605
- "@id": "https://w3id.org/security#controller",
606
- "@type": "@id",
607
- },
608
- "revoked": {
609
- "@id": "https://w3id.org/security#revoked",
610
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime",
611
- },
612
- "expires": {
613
- "@id": "https://w3id.org/security#expiration",
614
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime",
615
- },
616
- "publicKeyMultibase": {
617
- "@id": "https://w3id.org/security#publicKeyMultibase",
618
- "@type": "https://w3id.org/security#multibase",
619
- },
620
- "secretKeyMultibase": {
621
- "@id": "https://w3id.org/security#secretKeyMultibase",
622
- "@type": "https://w3id.org/security#multibase",
623
- },
624
- },
625
- },
626
- },
627
- },
628
- "https://w3id.org/identity/v1": {
629
- "@context": {
630
- "id": "@id",
631
- "type": "@type",
632
- "cred": "https://w3id.org/credentials#",
633
- "dc": "http://purl.org/dc/terms/",
634
- "identity": "https://w3id.org/identity#",
635
- "perm": "https://w3id.org/permissions#",
636
- "ps": "https://w3id.org/payswarm#",
637
- "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
638
- "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
639
- "sec": "https://w3id.org/security#",
640
- "schema": "http://schema.org/",
641
- "xsd": "http://www.w3.org/2001/XMLSchema#",
642
- "Group": "https://www.w3.org/ns/activitystreams#Group",
643
- "claim": {
644
- "@id": "cred:claim",
645
- "@type": "@id",
646
- },
647
- "credential": {
648
- "@id": "cred:credential",
649
- "@type": "@id",
650
- },
651
- "issued": {
652
- "@id": "cred:issued",
653
- "@type": "xsd:dateTime",
654
- },
655
- "issuer": {
656
- "@id": "cred:issuer",
657
- "@type": "@id",
658
- },
659
- "recipient": {
660
- "@id": "cred:recipient",
661
- "@type": "@id",
662
- },
663
- "Credential": "cred:Credential",
664
- "CryptographicKeyCredential": "cred:CryptographicKeyCredential",
665
- "about": {
666
- "@id": "schema:about",
667
- "@type": "@id",
668
- },
669
- "address": {
670
- "@id": "schema:address",
671
- "@type": "@id",
672
- },
673
- "addressCountry": "schema:addressCountry",
674
- "addressLocality": "schema:addressLocality",
675
- "addressRegion": "schema:addressRegion",
676
- "comment": "rdfs:comment",
677
- "created": {
678
- "@id": "dc:created",
679
- "@type": "xsd:dateTime",
680
- },
681
- "creator": {
682
- "@id": "dc:creator",
683
- "@type": "@id",
684
- },
685
- "description": "schema:description",
686
- "email": "schema:email",
687
- "familyName": "schema:familyName",
688
- "givenName": "schema:givenName",
689
- "image": {
690
- "@id": "schema:image",
691
- "@type": "@id",
692
- },
693
- "label": "rdfs:label",
694
- "name": "schema:name",
695
- "postalCode": "schema:postalCode",
696
- "streetAddress": "schema:streetAddress",
697
- "title": "dc:title",
698
- "url": {
699
- "@id": "schema:url",
700
- "@type": "@id",
701
- },
702
- "Person": "schema:Person",
703
- "PostalAddress": "schema:PostalAddress",
704
- "Organization": "schema:Organization",
705
- "identityService": {
706
- "@id": "identity:identityService",
707
- "@type": "@id",
708
- },
709
- "idp": {
710
- "@id": "identity:idp",
711
- "@type": "@id",
712
- },
713
- "Identity": "identity:Identity",
714
- "paymentProcessor": "ps:processor",
715
- "preferences": {
716
- "@id": "ps:preferences",
717
- "@type": "@vocab",
718
- },
719
- "cipherAlgorithm": "sec:cipherAlgorithm",
720
- "cipherData": "sec:cipherData",
721
- "cipherKey": "sec:cipherKey",
722
- "digestAlgorithm": "sec:digestAlgorithm",
723
- "digestValue": "sec:digestValue",
724
- "domain": "sec:domain",
725
- "expires": {
726
- "@id": "sec:expiration",
727
- "@type": "xsd:dateTime",
728
- },
729
- "initializationVector": "sec:initializationVector",
730
- "member": {
731
- "@id": "schema:member",
732
- "@type": "@id",
733
- },
734
- "memberOf": {
735
- "@id": "schema:memberOf",
736
- "@type": "@id",
737
- },
738
- "nonce": "sec:nonce",
739
- "normalizationAlgorithm": "sec:normalizationAlgorithm",
740
- "owner": {
741
- "@id": "sec:owner",
742
- "@type": "@id",
743
- },
744
- "password": "sec:password",
745
- "privateKey": {
746
- "@id": "sec:privateKey",
747
- "@type": "@id",
748
- },
749
- "privateKeyPem": "sec:privateKeyPem",
750
- "publicKey": {
751
- "@id": "sec:publicKey",
752
- "@type": "@id",
753
- },
754
- "publicKeyPem": "sec:publicKeyPem",
755
- "publicKeyService": {
756
- "@id": "sec:publicKeyService",
757
- "@type": "@id",
758
- },
759
- "revoked": {
760
- "@id": "sec:revoked",
761
- "@type": "xsd:dateTime",
762
- },
763
- "signature": "sec:signature",
764
- "signatureAlgorithm": "sec:signatureAlgorithm",
765
- "signatureValue": "sec:signatureValue",
766
- "CryptographicKey": "sec:Key",
767
- "EncryptedMessage": "sec:EncryptedMessage",
768
- "GraphSignature2012": "sec:GraphSignature2012",
769
- "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
770
- "accessControl": {
771
- "@id": "perm:accessControl",
772
- "@type": "@id",
773
- },
774
- "writePermission": {
775
- "@id": "perm:writePermission",
776
- "@type": "@id",
777
- },
778
- },
779
- },
780
- "https://purl.archive.org/socialweb/webfinger": {
781
- "@context": {
782
- "wf": "https://purl.archive.org/socialweb/webfinger#",
783
- "xsd": "http://www.w3.org/2001/XMLSchema#",
784
- "webfinger": {
785
- "@id": "wf:webfinger",
786
- "@type": "xsd:string",
787
- },
788
- },
789
- },
790
- "http://schema.org/": {
791
- "@context": {
792
- "type": "@type",
793
- "id": "@id",
794
- "HTML": { "@id": "rdf:HTML" },
795
- "@vocab": "http://schema.org/",
796
- "csvw": "http://www.w3.org/ns/csvw#",
797
- "dc": "http://purl.org/dc/elements/1.1/",
798
- "dcat": "http://www.w3.org/ns/dcat#",
799
- "dcmitype": "http://purl.org/dc/dcmitype/",
800
- "dcterms": "http://purl.org/dc/terms/",
801
- "dcam": "http://purl.org/dc/dcam/",
802
- "doap": "http://usefulinc.com/ns/doap#",
803
- "foaf": "http://xmlns.com/foaf/0.1/",
804
- "odrl": "http://www.w3.org/ns/odrl/2/",
805
- "org": "http://www.w3.org/ns/org#",
806
- "owl": "http://www.w3.org/2002/07/owl#",
807
- "prof": "http://www.w3.org/ns/dx/prof/",
808
- "prov": "http://www.w3.org/ns/prov#",
809
- "qb": "http://purl.org/linked-data/cube#",
810
- "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
811
- "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
812
- "schema": "http://schema.org/",
813
- "sh": "http://www.w3.org/ns/shacl#",
814
- "skos": "http://www.w3.org/2004/02/skos/core#",
815
- "sosa": "http://www.w3.org/ns/sosa/",
816
- "ssn": "http://www.w3.org/ns/ssn/",
817
- "time": "http://www.w3.org/2006/time#",
818
- "vann": "http://purl.org/vocab/vann/",
819
- "void": "http://rdfs.org/ns/void#",
820
- "xsd": "http://www.w3.org/2001/XMLSchema#",
821
- "xml": "http://www.w3.org/XML/1998/namespace",
822
- "dct": "http://purl.org/dc/terms/",
823
- "dctype": "http://purl.org/dc/dcmitype/",
824
- "3DModel": { "@id": "schema:3DModel" },
825
- "AMRadioChannel": { "@id": "schema:AMRadioChannel" },
826
- "APIReference": { "@id": "schema:APIReference" },
827
- "Abdomen": { "@id": "schema:Abdomen" },
828
- "AboutPage": { "@id": "schema:AboutPage" },
829
- "AcceptAction": { "@id": "schema:AcceptAction" },
830
- "Accommodation": { "@id": "schema:Accommodation" },
831
- "AccountingService": { "@id": "schema:AccountingService" },
832
- "AchieveAction": { "@id": "schema:AchieveAction" },
833
- "Action": { "@id": "schema:Action" },
834
- "ActionAccessSpecification": {
835
- "@id": "schema:ActionAccessSpecification",
836
- },
837
- "ActionStatusType": { "@id": "schema:ActionStatusType" },
838
- "ActivateAction": { "@id": "schema:ActivateAction" },
839
- "ActivationFee": { "@id": "schema:ActivationFee" },
840
- "ActiveActionStatus": { "@id": "schema:ActiveActionStatus" },
841
- "ActiveNotRecruiting": { "@id": "schema:ActiveNotRecruiting" },
842
- "AddAction": { "@id": "schema:AddAction" },
843
- "AdministrativeArea": { "@id": "schema:AdministrativeArea" },
844
- "AdultEntertainment": { "@id": "schema:AdultEntertainment" },
845
- "AdultOrientedEnumeration": { "@id": "schema:AdultOrientedEnumeration" },
846
- "AdvertiserContentArticle": { "@id": "schema:AdvertiserContentArticle" },
847
- "AerobicActivity": { "@id": "schema:AerobicActivity" },
848
- "AggregateOffer": { "@id": "schema:AggregateOffer" },
849
- "AggregateRating": { "@id": "schema:AggregateRating" },
850
- "AgreeAction": { "@id": "schema:AgreeAction" },
851
- "Airline": { "@id": "schema:Airline" },
852
- "Airport": { "@id": "schema:Airport" },
853
- "AlbumRelease": { "@id": "schema:AlbumRelease" },
854
- "AlcoholConsideration": { "@id": "schema:AlcoholConsideration" },
855
- "AlgorithmicMediaDigitalSource": {
856
- "@id": "schema:AlgorithmicMediaDigitalSource",
857
- },
858
- "AlgorithmicallyEnhancedDigitalSource": {
859
- "@id": "schema:AlgorithmicallyEnhancedDigitalSource",
860
- },
861
- "AlignmentObject": { "@id": "schema:AlignmentObject" },
862
- "AllWheelDriveConfiguration": {
863
- "@id": "schema:AllWheelDriveConfiguration",
864
- },
865
- "AllergiesHealthAspect": { "@id": "schema:AllergiesHealthAspect" },
866
- "AllocateAction": { "@id": "schema:AllocateAction" },
867
- "AmpStory": { "@id": "schema:AmpStory" },
868
- "AmusementPark": { "@id": "schema:AmusementPark" },
869
- "AnaerobicActivity": { "@id": "schema:AnaerobicActivity" },
870
- "AnalysisNewsArticle": { "@id": "schema:AnalysisNewsArticle" },
871
- "AnatomicalStructure": { "@id": "schema:AnatomicalStructure" },
872
- "AnatomicalSystem": { "@id": "schema:AnatomicalSystem" },
873
- "AndroidPlatform": { "@id": "schema:AndroidPlatform" },
874
- "Anesthesia": { "@id": "schema:Anesthesia" },
875
- "AnimalShelter": { "@id": "schema:AnimalShelter" },
876
- "Answer": { "@id": "schema:Answer" },
877
- "Apartment": { "@id": "schema:Apartment" },
878
- "ApartmentComplex": { "@id": "schema:ApartmentComplex" },
879
- "Appearance": { "@id": "schema:Appearance" },
880
- "AppendAction": { "@id": "schema:AppendAction" },
881
- "ApplyAction": { "@id": "schema:ApplyAction" },
882
- "ApprovedIndication": { "@id": "schema:ApprovedIndication" },
883
- "Aquarium": { "@id": "schema:Aquarium" },
884
- "ArchiveComponent": { "@id": "schema:ArchiveComponent" },
885
- "ArchiveOrganization": { "@id": "schema:ArchiveOrganization" },
886
- "ArriveAction": { "@id": "schema:ArriveAction" },
887
- "ArtGallery": { "@id": "schema:ArtGallery" },
888
- "Artery": { "@id": "schema:Artery" },
889
- "Article": { "@id": "schema:Article" },
890
- "AskAction": { "@id": "schema:AskAction" },
891
- "AskPublicNewsArticle": { "@id": "schema:AskPublicNewsArticle" },
892
- "AssessAction": { "@id": "schema:AssessAction" },
893
- "AssignAction": { "@id": "schema:AssignAction" },
894
- "Atlas": { "@id": "schema:Atlas" },
895
- "Attorney": { "@id": "schema:Attorney" },
896
- "Audience": { "@id": "schema:Audience" },
897
- "AudioObject": { "@id": "schema:AudioObject" },
898
- "AudioObjectSnapshot": { "@id": "schema:AudioObjectSnapshot" },
899
- "Audiobook": { "@id": "schema:Audiobook" },
900
- "AudiobookFormat": { "@id": "schema:AudiobookFormat" },
901
- "AuthoritativeLegalValue": { "@id": "schema:AuthoritativeLegalValue" },
902
- "AuthorizeAction": { "@id": "schema:AuthorizeAction" },
903
- "AutoBodyShop": { "@id": "schema:AutoBodyShop" },
904
- "AutoDealer": { "@id": "schema:AutoDealer" },
905
- "AutoPartsStore": { "@id": "schema:AutoPartsStore" },
906
- "AutoRental": { "@id": "schema:AutoRental" },
907
- "AutoRepair": { "@id": "schema:AutoRepair" },
908
- "AutoWash": { "@id": "schema:AutoWash" },
909
- "AutomatedTeller": { "@id": "schema:AutomatedTeller" },
910
- "AutomotiveBusiness": { "@id": "schema:AutomotiveBusiness" },
911
- "Ayurvedic": { "@id": "schema:Ayurvedic" },
912
- "BackOrder": { "@id": "schema:BackOrder" },
913
- "BackgroundNewsArticle": { "@id": "schema:BackgroundNewsArticle" },
914
- "Bacteria": { "@id": "schema:Bacteria" },
915
- "Bakery": { "@id": "schema:Bakery" },
916
- "Balance": { "@id": "schema:Balance" },
917
- "BankAccount": { "@id": "schema:BankAccount" },
918
- "BankOrCreditUnion": { "@id": "schema:BankOrCreditUnion" },
919
- "BarOrPub": { "@id": "schema:BarOrPub" },
920
- "Barcode": { "@id": "schema:Barcode" },
921
- "BasicIncome": { "@id": "schema:BasicIncome" },
922
- "Beach": { "@id": "schema:Beach" },
923
- "BeautySalon": { "@id": "schema:BeautySalon" },
924
- "BedAndBreakfast": { "@id": "schema:BedAndBreakfast" },
925
- "BedDetails": { "@id": "schema:BedDetails" },
926
- "BedType": { "@id": "schema:BedType" },
927
- "BefriendAction": { "@id": "schema:BefriendAction" },
928
- "BenefitsHealthAspect": { "@id": "schema:BenefitsHealthAspect" },
929
- "BikeStore": { "@id": "schema:BikeStore" },
930
- "BioChemEntity": { "@id": "schema:BioChemEntity" },
931
- "Blog": { "@id": "schema:Blog" },
932
- "BlogPosting": { "@id": "schema:BlogPosting" },
933
- "BloodTest": { "@id": "schema:BloodTest" },
934
- "BoardingPolicyType": { "@id": "schema:BoardingPolicyType" },
935
- "BoatReservation": { "@id": "schema:BoatReservation" },
936
- "BoatTerminal": { "@id": "schema:BoatTerminal" },
937
- "BoatTrip": { "@id": "schema:BoatTrip" },
938
- "BodyMeasurementArm": { "@id": "schema:BodyMeasurementArm" },
939
- "BodyMeasurementBust": { "@id": "schema:BodyMeasurementBust" },
940
- "BodyMeasurementChest": { "@id": "schema:BodyMeasurementChest" },
941
- "BodyMeasurementFoot": { "@id": "schema:BodyMeasurementFoot" },
942
- "BodyMeasurementHand": { "@id": "schema:BodyMeasurementHand" },
943
- "BodyMeasurementHead": { "@id": "schema:BodyMeasurementHead" },
944
- "BodyMeasurementHeight": { "@id": "schema:BodyMeasurementHeight" },
945
- "BodyMeasurementHips": { "@id": "schema:BodyMeasurementHips" },
946
- "BodyMeasurementInsideLeg": { "@id": "schema:BodyMeasurementInsideLeg" },
947
- "BodyMeasurementNeck": { "@id": "schema:BodyMeasurementNeck" },
948
- "BodyMeasurementTypeEnumeration": {
949
- "@id": "schema:BodyMeasurementTypeEnumeration",
950
- },
951
- "BodyMeasurementUnderbust": { "@id": "schema:BodyMeasurementUnderbust" },
952
- "BodyMeasurementWaist": { "@id": "schema:BodyMeasurementWaist" },
953
- "BodyMeasurementWeight": { "@id": "schema:BodyMeasurementWeight" },
954
- "BodyOfWater": { "@id": "schema:BodyOfWater" },
955
- "Bone": { "@id": "schema:Bone" },
956
- "Book": { "@id": "schema:Book" },
957
- "BookFormatType": { "@id": "schema:BookFormatType" },
958
- "BookSeries": { "@id": "schema:BookSeries" },
959
- "BookStore": { "@id": "schema:BookStore" },
960
- "BookmarkAction": { "@id": "schema:BookmarkAction" },
961
- "Boolean": { "@id": "schema:Boolean" },
962
- "BorrowAction": { "@id": "schema:BorrowAction" },
963
- "BowlingAlley": { "@id": "schema:BowlingAlley" },
964
- "BrainStructure": { "@id": "schema:BrainStructure" },
965
- "Brand": { "@id": "schema:Brand" },
966
- "BreadcrumbList": { "@id": "schema:BreadcrumbList" },
967
- "Brewery": { "@id": "schema:Brewery" },
968
- "Bridge": { "@id": "schema:Bridge" },
969
- "BroadcastChannel": { "@id": "schema:BroadcastChannel" },
970
- "BroadcastEvent": { "@id": "schema:BroadcastEvent" },
971
- "BroadcastFrequencySpecification": {
972
- "@id": "schema:BroadcastFrequencySpecification",
973
- },
974
- "BroadcastRelease": { "@id": "schema:BroadcastRelease" },
975
- "BroadcastService": { "@id": "schema:BroadcastService" },
976
- "BrokerageAccount": { "@id": "schema:BrokerageAccount" },
977
- "BuddhistTemple": { "@id": "schema:BuddhistTemple" },
978
- "BusOrCoach": { "@id": "schema:BusOrCoach" },
979
- "BusReservation": { "@id": "schema:BusReservation" },
980
- "BusStation": { "@id": "schema:BusStation" },
981
- "BusStop": { "@id": "schema:BusStop" },
982
- "BusTrip": { "@id": "schema:BusTrip" },
983
- "BusinessAudience": { "@id": "schema:BusinessAudience" },
984
- "BusinessEntityType": { "@id": "schema:BusinessEntityType" },
985
- "BusinessEvent": { "@id": "schema:BusinessEvent" },
986
- "BusinessFunction": { "@id": "schema:BusinessFunction" },
987
- "BusinessSupport": { "@id": "schema:BusinessSupport" },
988
- "BuyAction": { "@id": "schema:BuyAction" },
989
- "ByBankTransferInAdvance": { "@id": "schema:ByBankTransferInAdvance" },
990
- "ByInvoice": { "@id": "schema:ByInvoice" },
991
- "CDCPMDRecord": { "@id": "schema:CDCPMDRecord" },
992
- "CDFormat": { "@id": "schema:CDFormat" },
993
- "COD": { "@id": "schema:COD" },
994
- "CT": { "@id": "schema:CT" },
995
- "CableOrSatelliteService": { "@id": "schema:CableOrSatelliteService" },
996
- "CafeOrCoffeeShop": { "@id": "schema:CafeOrCoffeeShop" },
997
- "Campground": { "@id": "schema:Campground" },
998
- "CampingPitch": { "@id": "schema:CampingPitch" },
999
- "Canal": { "@id": "schema:Canal" },
1000
- "CancelAction": { "@id": "schema:CancelAction" },
1001
- "Car": { "@id": "schema:Car" },
1002
- "CarUsageType": { "@id": "schema:CarUsageType" },
1003
- "Cardiovascular": { "@id": "schema:Cardiovascular" },
1004
- "CardiovascularExam": { "@id": "schema:CardiovascularExam" },
1005
- "CaseSeries": { "@id": "schema:CaseSeries" },
1006
- "Cash": { "@id": "schema:Cash" },
1007
- "Casino": { "@id": "schema:Casino" },
1008
- "CassetteFormat": { "@id": "schema:CassetteFormat" },
1009
- "CategoryCode": { "@id": "schema:CategoryCode" },
1010
- "CategoryCodeSet": { "@id": "schema:CategoryCodeSet" },
1011
- "CatholicChurch": { "@id": "schema:CatholicChurch" },
1012
- "CausesHealthAspect": { "@id": "schema:CausesHealthAspect" },
1013
- "Cemetery": { "@id": "schema:Cemetery" },
1014
- "Certification": { "@id": "schema:Certification" },
1015
- "CertificationActive": { "@id": "schema:CertificationActive" },
1016
- "CertificationInactive": { "@id": "schema:CertificationInactive" },
1017
- "CertificationStatusEnumeration": {
1018
- "@id": "schema:CertificationStatusEnumeration",
1019
- },
1020
- "Chapter": { "@id": "schema:Chapter" },
1021
- "CharitableIncorporatedOrganization": {
1022
- "@id": "schema:CharitableIncorporatedOrganization",
1023
- },
1024
- "CheckAction": { "@id": "schema:CheckAction" },
1025
- "CheckInAction": { "@id": "schema:CheckInAction" },
1026
- "CheckInAdvance": { "@id": "schema:CheckInAdvance" },
1027
- "CheckOutAction": { "@id": "schema:CheckOutAction" },
1028
- "CheckoutPage": { "@id": "schema:CheckoutPage" },
1029
- "ChemicalSubstance": { "@id": "schema:ChemicalSubstance" },
1030
- "ChildCare": { "@id": "schema:ChildCare" },
1031
- "ChildrensEvent": { "@id": "schema:ChildrensEvent" },
1032
- "Chiropractic": { "@id": "schema:Chiropractic" },
1033
- "ChooseAction": { "@id": "schema:ChooseAction" },
1034
- "Church": { "@id": "schema:Church" },
1035
- "City": { "@id": "schema:City" },
1036
- "CityHall": { "@id": "schema:CityHall" },
1037
- "CivicStructure": { "@id": "schema:CivicStructure" },
1038
- "Claim": { "@id": "schema:Claim" },
1039
- "ClaimReview": { "@id": "schema:ClaimReview" },
1040
- "Class": { "@id": "schema:Class" },
1041
- "CleaningFee": { "@id": "schema:CleaningFee" },
1042
- "Clinician": { "@id": "schema:Clinician" },
1043
- "Clip": { "@id": "schema:Clip" },
1044
- "ClothingStore": { "@id": "schema:ClothingStore" },
1045
- "CoOp": { "@id": "schema:CoOp" },
1046
- "Code": { "@id": "schema:Code" },
1047
- "CohortStudy": { "@id": "schema:CohortStudy" },
1048
- "Collection": { "@id": "schema:Collection" },
1049
- "CollectionPage": { "@id": "schema:CollectionPage" },
1050
- "CollegeOrUniversity": { "@id": "schema:CollegeOrUniversity" },
1051
- "ComedyClub": { "@id": "schema:ComedyClub" },
1052
- "ComedyEvent": { "@id": "schema:ComedyEvent" },
1053
- "ComicCoverArt": { "@id": "schema:ComicCoverArt" },
1054
- "ComicIssue": { "@id": "schema:ComicIssue" },
1055
- "ComicSeries": { "@id": "schema:ComicSeries" },
1056
- "ComicStory": { "@id": "schema:ComicStory" },
1057
- "Comment": { "@id": "schema:Comment" },
1058
- "CommentAction": { "@id": "schema:CommentAction" },
1059
- "CommentPermission": { "@id": "schema:CommentPermission" },
1060
- "CommunicateAction": { "@id": "schema:CommunicateAction" },
1061
- "CommunityHealth": { "@id": "schema:CommunityHealth" },
1062
- "CompilationAlbum": { "@id": "schema:CompilationAlbum" },
1063
- "CompleteDataFeed": { "@id": "schema:CompleteDataFeed" },
1064
- "Completed": { "@id": "schema:Completed" },
1065
- "CompletedActionStatus": { "@id": "schema:CompletedActionStatus" },
1066
- "CompositeCaptureDigitalSource": {
1067
- "@id": "schema:CompositeCaptureDigitalSource",
1068
- },
1069
- "CompositeSyntheticDigitalSource": {
1070
- "@id": "schema:CompositeSyntheticDigitalSource",
1071
- },
1072
- "CompositeWithTrainedAlgorithmicMediaDigitalSource": {
1073
- "@id": "schema:CompositeWithTrainedAlgorithmicMediaDigitalSource",
1074
- },
1075
- "CompoundPriceSpecification": {
1076
- "@id": "schema:CompoundPriceSpecification",
1077
- },
1078
- "ComputerLanguage": { "@id": "schema:ComputerLanguage" },
1079
- "ComputerStore": { "@id": "schema:ComputerStore" },
1080
- "ConfirmAction": { "@id": "schema:ConfirmAction" },
1081
- "Consortium": { "@id": "schema:Consortium" },
1082
- "ConstraintNode": { "@id": "schema:ConstraintNode" },
1083
- "ConsumeAction": { "@id": "schema:ConsumeAction" },
1084
- "ContactPage": { "@id": "schema:ContactPage" },
1085
- "ContactPoint": { "@id": "schema:ContactPoint" },
1086
- "ContactPointOption": { "@id": "schema:ContactPointOption" },
1087
- "ContagiousnessHealthAspect": {
1088
- "@id": "schema:ContagiousnessHealthAspect",
1089
- },
1090
- "Continent": { "@id": "schema:Continent" },
1091
- "ControlAction": { "@id": "schema:ControlAction" },
1092
- "ConvenienceStore": { "@id": "schema:ConvenienceStore" },
1093
- "Conversation": { "@id": "schema:Conversation" },
1094
- "CookAction": { "@id": "schema:CookAction" },
1095
- "Corporation": { "@id": "schema:Corporation" },
1096
- "CorrectionComment": { "@id": "schema:CorrectionComment" },
1097
- "Country": { "@id": "schema:Country" },
1098
- "Course": { "@id": "schema:Course" },
1099
- "CourseInstance": { "@id": "schema:CourseInstance" },
1100
- "Courthouse": { "@id": "schema:Courthouse" },
1101
- "CoverArt": { "@id": "schema:CoverArt" },
1102
- "CovidTestingFacility": { "@id": "schema:CovidTestingFacility" },
1103
- "CreateAction": { "@id": "schema:CreateAction" },
1104
- "CreativeWork": { "@id": "schema:CreativeWork" },
1105
- "CreativeWorkSeason": { "@id": "schema:CreativeWorkSeason" },
1106
- "CreativeWorkSeries": { "@id": "schema:CreativeWorkSeries" },
1107
- "CreditCard": { "@id": "schema:CreditCard" },
1108
- "Crematorium": { "@id": "schema:Crematorium" },
1109
- "CriticReview": { "@id": "schema:CriticReview" },
1110
- "CrossSectional": { "@id": "schema:CrossSectional" },
1111
- "CssSelectorType": { "@id": "schema:CssSelectorType" },
1112
- "CurrencyConversionService": {
1113
- "@id": "schema:CurrencyConversionService",
1114
- },
1115
- "DDxElement": { "@id": "schema:DDxElement" },
1116
- "DJMixAlbum": { "@id": "schema:DJMixAlbum" },
1117
- "DVDFormat": { "@id": "schema:DVDFormat" },
1118
- "DamagedCondition": { "@id": "schema:DamagedCondition" },
1119
- "DanceEvent": { "@id": "schema:DanceEvent" },
1120
- "DanceGroup": { "@id": "schema:DanceGroup" },
1121
- "DangerousGoodConsideration": {
1122
- "@id": "schema:DangerousGoodConsideration",
1123
- },
1124
- "DataCatalog": { "@id": "schema:DataCatalog" },
1125
- "DataDownload": { "@id": "schema:DataDownload" },
1126
- "DataDrivenMediaDigitalSource": {
1127
- "@id": "schema:DataDrivenMediaDigitalSource",
1128
- },
1129
- "DataFeed": { "@id": "schema:DataFeed" },
1130
- "DataFeedItem": { "@id": "schema:DataFeedItem" },
1131
- "DataType": { "@id": "schema:DataType" },
1132
- "Dataset": { "@id": "schema:Dataset" },
1133
- "Date": { "@id": "schema:Date" },
1134
- "DateTime": { "@id": "schema:DateTime" },
1135
- "DatedMoneySpecification": { "@id": "schema:DatedMoneySpecification" },
1136
- "DayOfWeek": { "@id": "schema:DayOfWeek" },
1137
- "DaySpa": { "@id": "schema:DaySpa" },
1138
- "DeactivateAction": { "@id": "schema:DeactivateAction" },
1139
- "DecontextualizedContent": { "@id": "schema:DecontextualizedContent" },
1140
- "DefenceEstablishment": { "@id": "schema:DefenceEstablishment" },
1141
- "DefinedRegion": { "@id": "schema:DefinedRegion" },
1142
- "DefinedTerm": { "@id": "schema:DefinedTerm" },
1143
- "DefinedTermSet": { "@id": "schema:DefinedTermSet" },
1144
- "DefinitiveLegalValue": { "@id": "schema:DefinitiveLegalValue" },
1145
- "DeleteAction": { "@id": "schema:DeleteAction" },
1146
- "DeliveryChargeSpecification": {
1147
- "@id": "schema:DeliveryChargeSpecification",
1148
- },
1149
- "DeliveryEvent": { "@id": "schema:DeliveryEvent" },
1150
- "DeliveryMethod": { "@id": "schema:DeliveryMethod" },
1151
- "DeliveryTimeSettings": { "@id": "schema:DeliveryTimeSettings" },
1152
- "Demand": { "@id": "schema:Demand" },
1153
- "DemoAlbum": { "@id": "schema:DemoAlbum" },
1154
- "DemoGameAvailability": { "@id": "schema:DemoGameAvailability" },
1155
- "Dentist": { "@id": "schema:Dentist" },
1156
- "Dentistry": { "@id": "schema:Dentistry" },
1157
- "DepartAction": { "@id": "schema:DepartAction" },
1158
- "DepartmentStore": { "@id": "schema:DepartmentStore" },
1159
- "DepositAccount": { "@id": "schema:DepositAccount" },
1160
- "Dermatologic": { "@id": "schema:Dermatologic" },
1161
- "Dermatology": { "@id": "schema:Dermatology" },
1162
- "DesktopWebPlatform": { "@id": "schema:DesktopWebPlatform" },
1163
- "DiabeticDiet": { "@id": "schema:DiabeticDiet" },
1164
- "Diagnostic": { "@id": "schema:Diagnostic" },
1165
- "DiagnosticLab": { "@id": "schema:DiagnosticLab" },
1166
- "DiagnosticProcedure": { "@id": "schema:DiagnosticProcedure" },
1167
- "Diet": { "@id": "schema:Diet" },
1168
- "DietNutrition": { "@id": "schema:DietNutrition" },
1169
- "DietarySupplement": { "@id": "schema:DietarySupplement" },
1170
- "DigitalArtDigitalSource": { "@id": "schema:DigitalArtDigitalSource" },
1171
- "DigitalAudioTapeFormat": { "@id": "schema:DigitalAudioTapeFormat" },
1172
- "DigitalCaptureDigitalSource": {
1173
- "@id": "schema:DigitalCaptureDigitalSource",
1174
- },
1175
- "DigitalDocument": { "@id": "schema:DigitalDocument" },
1176
- "DigitalDocumentPermission": {
1177
- "@id": "schema:DigitalDocumentPermission",
1178
- },
1179
- "DigitalDocumentPermissionType": {
1180
- "@id": "schema:DigitalDocumentPermissionType",
1181
- },
1182
- "DigitalFormat": { "@id": "schema:DigitalFormat" },
1183
- "DigitalPlatformEnumeration": {
1184
- "@id": "schema:DigitalPlatformEnumeration",
1185
- },
1186
- "DirectDebit": { "@id": "schema:DirectDebit" },
1187
- "DisabilitySupport": { "@id": "schema:DisabilitySupport" },
1188
- "DisagreeAction": { "@id": "schema:DisagreeAction" },
1189
- "Discontinued": { "@id": "schema:Discontinued" },
1190
- "DiscoverAction": { "@id": "schema:DiscoverAction" },
1191
- "DiscussionForumPosting": { "@id": "schema:DiscussionForumPosting" },
1192
- "DislikeAction": { "@id": "schema:DislikeAction" },
1193
- "Distance": { "@id": "schema:Distance" },
1194
- "DistanceFee": { "@id": "schema:DistanceFee" },
1195
- "Distillery": { "@id": "schema:Distillery" },
1196
- "DonateAction": { "@id": "schema:DonateAction" },
1197
- "DoseSchedule": { "@id": "schema:DoseSchedule" },
1198
- "DoubleBlindedTrial": { "@id": "schema:DoubleBlindedTrial" },
1199
- "DownloadAction": { "@id": "schema:DownloadAction" },
1200
- "Downpayment": { "@id": "schema:Downpayment" },
1201
- "DrawAction": { "@id": "schema:DrawAction" },
1202
- "Drawing": { "@id": "schema:Drawing" },
1203
- "DrinkAction": { "@id": "schema:DrinkAction" },
1204
- "DriveWheelConfigurationValue": {
1205
- "@id": "schema:DriveWheelConfigurationValue",
1206
- },
1207
- "DrivingSchoolVehicleUsage": {
1208
- "@id": "schema:DrivingSchoolVehicleUsage",
1209
- },
1210
- "Drug": { "@id": "schema:Drug" },
1211
- "DrugClass": { "@id": "schema:DrugClass" },
1212
- "DrugCost": { "@id": "schema:DrugCost" },
1213
- "DrugCostCategory": { "@id": "schema:DrugCostCategory" },
1214
- "DrugLegalStatus": { "@id": "schema:DrugLegalStatus" },
1215
- "DrugPregnancyCategory": { "@id": "schema:DrugPregnancyCategory" },
1216
- "DrugPrescriptionStatus": { "@id": "schema:DrugPrescriptionStatus" },
1217
- "DrugStrength": { "@id": "schema:DrugStrength" },
1218
- "DryCleaningOrLaundry": { "@id": "schema:DryCleaningOrLaundry" },
1219
- "Duration": { "@id": "schema:Duration" },
1220
- "EBook": { "@id": "schema:EBook" },
1221
- "EPRelease": { "@id": "schema:EPRelease" },
1222
- "EUEnergyEfficiencyCategoryA": {
1223
- "@id": "schema:EUEnergyEfficiencyCategoryA",
1224
- },
1225
- "EUEnergyEfficiencyCategoryA1Plus": {
1226
- "@id": "schema:EUEnergyEfficiencyCategoryA1Plus",
1227
- },
1228
- "EUEnergyEfficiencyCategoryA2Plus": {
1229
- "@id": "schema:EUEnergyEfficiencyCategoryA2Plus",
1230
- },
1231
- "EUEnergyEfficiencyCategoryA3Plus": {
1232
- "@id": "schema:EUEnergyEfficiencyCategoryA3Plus",
1233
- },
1234
- "EUEnergyEfficiencyCategoryB": {
1235
- "@id": "schema:EUEnergyEfficiencyCategoryB",
1236
- },
1237
- "EUEnergyEfficiencyCategoryC": {
1238
- "@id": "schema:EUEnergyEfficiencyCategoryC",
1239
- },
1240
- "EUEnergyEfficiencyCategoryD": {
1241
- "@id": "schema:EUEnergyEfficiencyCategoryD",
1242
- },
1243
- "EUEnergyEfficiencyCategoryE": {
1244
- "@id": "schema:EUEnergyEfficiencyCategoryE",
1245
- },
1246
- "EUEnergyEfficiencyCategoryF": {
1247
- "@id": "schema:EUEnergyEfficiencyCategoryF",
1248
- },
1249
- "EUEnergyEfficiencyCategoryG": {
1250
- "@id": "schema:EUEnergyEfficiencyCategoryG",
1251
- },
1252
- "EUEnergyEfficiencyEnumeration": {
1253
- "@id": "schema:EUEnergyEfficiencyEnumeration",
1254
- },
1255
- "Ear": { "@id": "schema:Ear" },
1256
- "EatAction": { "@id": "schema:EatAction" },
1257
- "EditedOrCroppedContent": { "@id": "schema:EditedOrCroppedContent" },
1258
- "EducationEvent": { "@id": "schema:EducationEvent" },
1259
- "EducationalAudience": { "@id": "schema:EducationalAudience" },
1260
- "EducationalOccupationalCredential": {
1261
- "@id": "schema:EducationalOccupationalCredential",
1262
- },
1263
- "EducationalOccupationalProgram": {
1264
- "@id": "schema:EducationalOccupationalProgram",
1265
- },
1266
- "EducationalOrganization": { "@id": "schema:EducationalOrganization" },
1267
- "EffectivenessHealthAspect": {
1268
- "@id": "schema:EffectivenessHealthAspect",
1269
- },
1270
- "Electrician": { "@id": "schema:Electrician" },
1271
- "ElectronicsStore": { "@id": "schema:ElectronicsStore" },
1272
- "ElementarySchool": { "@id": "schema:ElementarySchool" },
1273
- "EmailMessage": { "@id": "schema:EmailMessage" },
1274
- "Embassy": { "@id": "schema:Embassy" },
1275
- "Emergency": { "@id": "schema:Emergency" },
1276
- "EmergencyService": { "@id": "schema:EmergencyService" },
1277
- "EmployeeRole": { "@id": "schema:EmployeeRole" },
1278
- "EmployerAggregateRating": { "@id": "schema:EmployerAggregateRating" },
1279
- "EmployerReview": { "@id": "schema:EmployerReview" },
1280
- "EmploymentAgency": { "@id": "schema:EmploymentAgency" },
1281
- "Endocrine": { "@id": "schema:Endocrine" },
1282
- "EndorseAction": { "@id": "schema:EndorseAction" },
1283
- "EndorsementRating": { "@id": "schema:EndorsementRating" },
1284
- "Energy": { "@id": "schema:Energy" },
1285
- "EnergyConsumptionDetails": { "@id": "schema:EnergyConsumptionDetails" },
1286
- "EnergyEfficiencyEnumeration": {
1287
- "@id": "schema:EnergyEfficiencyEnumeration",
1288
- },
1289
- "EnergyStarCertified": { "@id": "schema:EnergyStarCertified" },
1290
- "EnergyStarEnergyEfficiencyEnumeration": {
1291
- "@id": "schema:EnergyStarEnergyEfficiencyEnumeration",
1292
- },
1293
- "EngineSpecification": { "@id": "schema:EngineSpecification" },
1294
- "EnrollingByInvitation": { "@id": "schema:EnrollingByInvitation" },
1295
- "EntertainmentBusiness": { "@id": "schema:EntertainmentBusiness" },
1296
- "EntryPoint": { "@id": "schema:EntryPoint" },
1297
- "Enumeration": { "@id": "schema:Enumeration" },
1298
- "Episode": { "@id": "schema:Episode" },
1299
- "Event": { "@id": "schema:Event" },
1300
- "EventAttendanceModeEnumeration": {
1301
- "@id": "schema:EventAttendanceModeEnumeration",
1302
- },
1303
- "EventCancelled": { "@id": "schema:EventCancelled" },
1304
- "EventMovedOnline": { "@id": "schema:EventMovedOnline" },
1305
- "EventPostponed": { "@id": "schema:EventPostponed" },
1306
- "EventRescheduled": { "@id": "schema:EventRescheduled" },
1307
- "EventReservation": { "@id": "schema:EventReservation" },
1308
- "EventScheduled": { "@id": "schema:EventScheduled" },
1309
- "EventSeries": { "@id": "schema:EventSeries" },
1310
- "EventStatusType": { "@id": "schema:EventStatusType" },
1311
- "EventVenue": { "@id": "schema:EventVenue" },
1312
- "EvidenceLevelA": { "@id": "schema:EvidenceLevelA" },
1313
- "EvidenceLevelB": { "@id": "schema:EvidenceLevelB" },
1314
- "EvidenceLevelC": { "@id": "schema:EvidenceLevelC" },
1315
- "ExampleMeasurementMethodEnum": {
1316
- "@id": "schema:ExampleMeasurementMethodEnum",
1317
- },
1318
- "ExchangeRateSpecification": {
1319
- "@id": "schema:ExchangeRateSpecification",
1320
- },
1321
- "ExchangeRefund": { "@id": "schema:ExchangeRefund" },
1322
- "ExerciseAction": { "@id": "schema:ExerciseAction" },
1323
- "ExerciseGym": { "@id": "schema:ExerciseGym" },
1324
- "ExercisePlan": { "@id": "schema:ExercisePlan" },
1325
- "ExhibitionEvent": { "@id": "schema:ExhibitionEvent" },
1326
- "Eye": { "@id": "schema:Eye" },
1327
- "FAQPage": { "@id": "schema:FAQPage" },
1328
- "FDAcategoryA": { "@id": "schema:FDAcategoryA" },
1329
- "FDAcategoryB": { "@id": "schema:FDAcategoryB" },
1330
- "FDAcategoryC": { "@id": "schema:FDAcategoryC" },
1331
- "FDAcategoryD": { "@id": "schema:FDAcategoryD" },
1332
- "FDAcategoryX": { "@id": "schema:FDAcategoryX" },
1333
- "FDAnotEvaluated": { "@id": "schema:FDAnotEvaluated" },
1334
- "FMRadioChannel": { "@id": "schema:FMRadioChannel" },
1335
- "FailedActionStatus": { "@id": "schema:FailedActionStatus" },
1336
- "False": { "@id": "schema:False" },
1337
- "FastFoodRestaurant": { "@id": "schema:FastFoodRestaurant" },
1338
- "Female": { "@id": "schema:Female" },
1339
- "Festival": { "@id": "schema:Festival" },
1340
- "FilmAction": { "@id": "schema:FilmAction" },
1341
- "FinancialProduct": { "@id": "schema:FinancialProduct" },
1342
- "FinancialService": { "@id": "schema:FinancialService" },
1343
- "FindAction": { "@id": "schema:FindAction" },
1344
- "FireStation": { "@id": "schema:FireStation" },
1345
- "Flexibility": { "@id": "schema:Flexibility" },
1346
- "Flight": { "@id": "schema:Flight" },
1347
- "FlightReservation": { "@id": "schema:FlightReservation" },
1348
- "Float": { "@id": "schema:Float" },
1349
- "FloorPlan": { "@id": "schema:FloorPlan" },
1350
- "Florist": { "@id": "schema:Florist" },
1351
- "FollowAction": { "@id": "schema:FollowAction" },
1352
- "FoodEstablishment": { "@id": "schema:FoodEstablishment" },
1353
- "FoodEstablishmentReservation": {
1354
- "@id": "schema:FoodEstablishmentReservation",
1355
- },
1356
- "FoodEvent": { "@id": "schema:FoodEvent" },
1357
- "FoodService": { "@id": "schema:FoodService" },
1358
- "FourWheelDriveConfiguration": {
1359
- "@id": "schema:FourWheelDriveConfiguration",
1360
- },
1361
- "FreeReturn": { "@id": "schema:FreeReturn" },
1362
- "Friday": { "@id": "schema:Friday" },
1363
- "FrontWheelDriveConfiguration": {
1364
- "@id": "schema:FrontWheelDriveConfiguration",
1365
- },
1366
- "FullGameAvailability": { "@id": "schema:FullGameAvailability" },
1367
- "FullRefund": { "@id": "schema:FullRefund" },
1368
- "FundingAgency": { "@id": "schema:FundingAgency" },
1369
- "FundingScheme": { "@id": "schema:FundingScheme" },
1370
- "Fungus": { "@id": "schema:Fungus" },
1371
- "FurnitureStore": { "@id": "schema:FurnitureStore" },
1372
- "Game": { "@id": "schema:Game" },
1373
- "GameAvailabilityEnumeration": {
1374
- "@id": "schema:GameAvailabilityEnumeration",
1375
- },
1376
- "GamePlayMode": { "@id": "schema:GamePlayMode" },
1377
- "GameServer": { "@id": "schema:GameServer" },
1378
- "GameServerStatus": { "@id": "schema:GameServerStatus" },
1379
- "GardenStore": { "@id": "schema:GardenStore" },
1380
- "GasStation": { "@id": "schema:GasStation" },
1381
- "Gastroenterologic": { "@id": "schema:Gastroenterologic" },
1382
- "GatedResidenceCommunity": { "@id": "schema:GatedResidenceCommunity" },
1383
- "GenderType": { "@id": "schema:GenderType" },
1384
- "Gene": { "@id": "schema:Gene" },
1385
- "GeneralContractor": { "@id": "schema:GeneralContractor" },
1386
- "GenericWebPlatform": { "@id": "schema:GenericWebPlatform" },
1387
- "Genetic": { "@id": "schema:Genetic" },
1388
- "Genitourinary": { "@id": "schema:Genitourinary" },
1389
- "GeoCircle": { "@id": "schema:GeoCircle" },
1390
- "GeoCoordinates": { "@id": "schema:GeoCoordinates" },
1391
- "GeoShape": { "@id": "schema:GeoShape" },
1392
- "GeospatialGeometry": { "@id": "schema:GeospatialGeometry" },
1393
- "Geriatric": { "@id": "schema:Geriatric" },
1394
- "GettingAccessHealthAspect": {
1395
- "@id": "schema:GettingAccessHealthAspect",
1396
- },
1397
- "GiveAction": { "@id": "schema:GiveAction" },
1398
- "GlutenFreeDiet": { "@id": "schema:GlutenFreeDiet" },
1399
- "GolfCourse": { "@id": "schema:GolfCourse" },
1400
- "GovernmentBenefitsType": { "@id": "schema:GovernmentBenefitsType" },
1401
- "GovernmentBuilding": { "@id": "schema:GovernmentBuilding" },
1402
- "GovernmentOffice": { "@id": "schema:GovernmentOffice" },
1403
- "GovernmentOrganization": { "@id": "schema:GovernmentOrganization" },
1404
- "GovernmentPermit": { "@id": "schema:GovernmentPermit" },
1405
- "GovernmentService": { "@id": "schema:GovernmentService" },
1406
- "Grant": { "@id": "schema:Grant" },
1407
- "GraphicNovel": { "@id": "schema:GraphicNovel" },
1408
- "GroceryStore": { "@id": "schema:GroceryStore" },
1409
- "GroupBoardingPolicy": { "@id": "schema:GroupBoardingPolicy" },
1410
- "Guide": { "@id": "schema:Guide" },
1411
- "Gynecologic": { "@id": "schema:Gynecologic" },
1412
- "HVACBusiness": { "@id": "schema:HVACBusiness" },
1413
- "Hackathon": { "@id": "schema:Hackathon" },
1414
- "HairSalon": { "@id": "schema:HairSalon" },
1415
- "HalalDiet": { "@id": "schema:HalalDiet" },
1416
- "Hardcover": { "@id": "schema:Hardcover" },
1417
- "HardwareStore": { "@id": "schema:HardwareStore" },
1418
- "Head": { "@id": "schema:Head" },
1419
- "HealthAndBeautyBusiness": { "@id": "schema:HealthAndBeautyBusiness" },
1420
- "HealthAspectEnumeration": { "@id": "schema:HealthAspectEnumeration" },
1421
- "HealthCare": { "@id": "schema:HealthCare" },
1422
- "HealthClub": { "@id": "schema:HealthClub" },
1423
- "HealthInsurancePlan": { "@id": "schema:HealthInsurancePlan" },
1424
- "HealthPlanCostSharingSpecification": {
1425
- "@id": "schema:HealthPlanCostSharingSpecification",
1426
- },
1427
- "HealthPlanFormulary": { "@id": "schema:HealthPlanFormulary" },
1428
- "HealthPlanNetwork": { "@id": "schema:HealthPlanNetwork" },
1429
- "HealthTopicContent": { "@id": "schema:HealthTopicContent" },
1430
- "HealthcareConsideration": { "@id": "schema:HealthcareConsideration" },
1431
- "HearingImpairedSupported": { "@id": "schema:HearingImpairedSupported" },
1432
- "Hematologic": { "@id": "schema:Hematologic" },
1433
- "HighSchool": { "@id": "schema:HighSchool" },
1434
- "HinduDiet": { "@id": "schema:HinduDiet" },
1435
- "HinduTemple": { "@id": "schema:HinduTemple" },
1436
- "HobbyShop": { "@id": "schema:HobbyShop" },
1437
- "HomeAndConstructionBusiness": {
1438
- "@id": "schema:HomeAndConstructionBusiness",
1439
- },
1440
- "HomeGoodsStore": { "@id": "schema:HomeGoodsStore" },
1441
- "Homeopathic": { "@id": "schema:Homeopathic" },
1442
- "Hospital": { "@id": "schema:Hospital" },
1443
- "Hostel": { "@id": "schema:Hostel" },
1444
- "Hotel": { "@id": "schema:Hotel" },
1445
- "HotelRoom": { "@id": "schema:HotelRoom" },
1446
- "House": { "@id": "schema:House" },
1447
- "HousePainter": { "@id": "schema:HousePainter" },
1448
- "HowItWorksHealthAspect": { "@id": "schema:HowItWorksHealthAspect" },
1449
- "HowOrWhereHealthAspect": { "@id": "schema:HowOrWhereHealthAspect" },
1450
- "HowTo": { "@id": "schema:HowTo" },
1451
- "HowToDirection": { "@id": "schema:HowToDirection" },
1452
- "HowToItem": { "@id": "schema:HowToItem" },
1453
- "HowToSection": { "@id": "schema:HowToSection" },
1454
- "HowToStep": { "@id": "schema:HowToStep" },
1455
- "HowToSupply": { "@id": "schema:HowToSupply" },
1456
- "HowToTip": { "@id": "schema:HowToTip" },
1457
- "HowToTool": { "@id": "schema:HowToTool" },
1458
- "HyperToc": { "@id": "schema:HyperToc" },
1459
- "HyperTocEntry": { "@id": "schema:HyperTocEntry" },
1460
- "IOSPlatform": { "@id": "schema:IOSPlatform" },
1461
- "IPTCDigitalSourceEnumeration": {
1462
- "@id": "schema:IPTCDigitalSourceEnumeration",
1463
- },
1464
- "IceCreamShop": { "@id": "schema:IceCreamShop" },
1465
- "IgnoreAction": { "@id": "schema:IgnoreAction" },
1466
- "ImageGallery": { "@id": "schema:ImageGallery" },
1467
- "ImageObject": { "@id": "schema:ImageObject" },
1468
- "ImageObjectSnapshot": { "@id": "schema:ImageObjectSnapshot" },
1469
- "ImagingTest": { "@id": "schema:ImagingTest" },
1470
- "InForce": { "@id": "schema:InForce" },
1471
- "InStock": { "@id": "schema:InStock" },
1472
- "InStoreOnly": { "@id": "schema:InStoreOnly" },
1473
- "InStorePrepay": { "@id": "schema:InStorePrepay" },
1474
- "IndividualPhysician": { "@id": "schema:IndividualPhysician" },
1475
- "IndividualProduct": { "@id": "schema:IndividualProduct" },
1476
- "Infectious": { "@id": "schema:Infectious" },
1477
- "InfectiousAgentClass": { "@id": "schema:InfectiousAgentClass" },
1478
- "InfectiousDisease": { "@id": "schema:InfectiousDisease" },
1479
- "InformAction": { "@id": "schema:InformAction" },
1480
- "IngredientsHealthAspect": { "@id": "schema:IngredientsHealthAspect" },
1481
- "InsertAction": { "@id": "schema:InsertAction" },
1482
- "InstallAction": { "@id": "schema:InstallAction" },
1483
- "Installment": { "@id": "schema:Installment" },
1484
- "InsuranceAgency": { "@id": "schema:InsuranceAgency" },
1485
- "Intangible": { "@id": "schema:Intangible" },
1486
- "Integer": { "@id": "schema:Integer" },
1487
- "InteractAction": { "@id": "schema:InteractAction" },
1488
- "InteractionCounter": { "@id": "schema:InteractionCounter" },
1489
- "InternationalTrial": { "@id": "schema:InternationalTrial" },
1490
- "InternetCafe": { "@id": "schema:InternetCafe" },
1491
- "InvestmentFund": { "@id": "schema:InvestmentFund" },
1492
- "InvestmentOrDeposit": { "@id": "schema:InvestmentOrDeposit" },
1493
- "InviteAction": { "@id": "schema:InviteAction" },
1494
- "Invoice": { "@id": "schema:Invoice" },
1495
- "InvoicePrice": { "@id": "schema:InvoicePrice" },
1496
- "ItemAvailability": { "@id": "schema:ItemAvailability" },
1497
- "ItemList": { "@id": "schema:ItemList" },
1498
- "ItemListOrderAscending": { "@id": "schema:ItemListOrderAscending" },
1499
- "ItemListOrderDescending": { "@id": "schema:ItemListOrderDescending" },
1500
- "ItemListOrderType": { "@id": "schema:ItemListOrderType" },
1501
- "ItemListUnordered": { "@id": "schema:ItemListUnordered" },
1502
- "ItemPage": { "@id": "schema:ItemPage" },
1503
- "JewelryStore": { "@id": "schema:JewelryStore" },
1504
- "JobPosting": { "@id": "schema:JobPosting" },
1505
- "JoinAction": { "@id": "schema:JoinAction" },
1506
- "Joint": { "@id": "schema:Joint" },
1507
- "KeepProduct": { "@id": "schema:KeepProduct" },
1508
- "KosherDiet": { "@id": "schema:KosherDiet" },
1509
- "LaboratoryScience": { "@id": "schema:LaboratoryScience" },
1510
- "LakeBodyOfWater": { "@id": "schema:LakeBodyOfWater" },
1511
- "Landform": { "@id": "schema:Landform" },
1512
- "LandmarksOrHistoricalBuildings": {
1513
- "@id": "schema:LandmarksOrHistoricalBuildings",
1514
- },
1515
- "Language": { "@id": "schema:Language" },
1516
- "LaserDiscFormat": { "@id": "schema:LaserDiscFormat" },
1517
- "LearningResource": { "@id": "schema:LearningResource" },
1518
- "LeaveAction": { "@id": "schema:LeaveAction" },
1519
- "LeftHandDriving": { "@id": "schema:LeftHandDriving" },
1520
- "LegalForceStatus": { "@id": "schema:LegalForceStatus" },
1521
- "LegalService": { "@id": "schema:LegalService" },
1522
- "LegalValueLevel": { "@id": "schema:LegalValueLevel" },
1523
- "Legislation": { "@id": "schema:Legislation" },
1524
- "LegislationObject": { "@id": "schema:LegislationObject" },
1525
- "LegislativeBuilding": { "@id": "schema:LegislativeBuilding" },
1526
- "LeisureTimeActivity": { "@id": "schema:LeisureTimeActivity" },
1527
- "LendAction": { "@id": "schema:LendAction" },
1528
- "Library": { "@id": "schema:Library" },
1529
- "LibrarySystem": { "@id": "schema:LibrarySystem" },
1530
- "LifestyleModification": { "@id": "schema:LifestyleModification" },
1531
- "Ligament": { "@id": "schema:Ligament" },
1532
- "LikeAction": { "@id": "schema:LikeAction" },
1533
- "LimitedAvailability": { "@id": "schema:LimitedAvailability" },
1534
- "LimitedByGuaranteeCharity": {
1535
- "@id": "schema:LimitedByGuaranteeCharity",
1536
- },
1537
- "LinkRole": { "@id": "schema:LinkRole" },
1538
- "LiquorStore": { "@id": "schema:LiquorStore" },
1539
- "ListItem": { "@id": "schema:ListItem" },
1540
- "ListPrice": { "@id": "schema:ListPrice" },
1541
- "ListenAction": { "@id": "schema:ListenAction" },
1542
- "LiteraryEvent": { "@id": "schema:LiteraryEvent" },
1543
- "LiveAlbum": { "@id": "schema:LiveAlbum" },
1544
- "LiveBlogPosting": { "@id": "schema:LiveBlogPosting" },
1545
- "LivingWithHealthAspect": { "@id": "schema:LivingWithHealthAspect" },
1546
- "LoanOrCredit": { "@id": "schema:LoanOrCredit" },
1547
- "LocalBusiness": { "@id": "schema:LocalBusiness" },
1548
- "LocationFeatureSpecification": {
1549
- "@id": "schema:LocationFeatureSpecification",
1550
- },
1551
- "LockerDelivery": { "@id": "schema:LockerDelivery" },
1552
- "Locksmith": { "@id": "schema:Locksmith" },
1553
- "LodgingBusiness": { "@id": "schema:LodgingBusiness" },
1554
- "LodgingReservation": { "@id": "schema:LodgingReservation" },
1555
- "Longitudinal": { "@id": "schema:Longitudinal" },
1556
- "LoseAction": { "@id": "schema:LoseAction" },
1557
- "LowCalorieDiet": { "@id": "schema:LowCalorieDiet" },
1558
- "LowFatDiet": { "@id": "schema:LowFatDiet" },
1559
- "LowLactoseDiet": { "@id": "schema:LowLactoseDiet" },
1560
- "LowSaltDiet": { "@id": "schema:LowSaltDiet" },
1561
- "Lung": { "@id": "schema:Lung" },
1562
- "LymphaticVessel": { "@id": "schema:LymphaticVessel" },
1563
- "MRI": { "@id": "schema:MRI" },
1564
- "MSRP": { "@id": "schema:MSRP" },
1565
- "MadeToOrder": { "@id": "schema:MadeToOrder" },
1566
- "Male": { "@id": "schema:Male" },
1567
- "Manuscript": { "@id": "schema:Manuscript" },
1568
- "Map": { "@id": "schema:Map" },
1569
- "MapCategoryType": { "@id": "schema:MapCategoryType" },
1570
- "MarryAction": { "@id": "schema:MarryAction" },
1571
- "Mass": { "@id": "schema:Mass" },
1572
- "MathSolver": { "@id": "schema:MathSolver" },
1573
- "MaximumDoseSchedule": { "@id": "schema:MaximumDoseSchedule" },
1574
- "MayTreatHealthAspect": { "@id": "schema:MayTreatHealthAspect" },
1575
- "MeasurementMethodEnum": { "@id": "schema:MeasurementMethodEnum" },
1576
- "MeasurementTypeEnumeration": {
1577
- "@id": "schema:MeasurementTypeEnumeration",
1578
- },
1579
- "MediaEnumeration": { "@id": "schema:MediaEnumeration" },
1580
- "MediaGallery": { "@id": "schema:MediaGallery" },
1581
- "MediaManipulationRatingEnumeration": {
1582
- "@id": "schema:MediaManipulationRatingEnumeration",
1583
- },
1584
- "MediaObject": { "@id": "schema:MediaObject" },
1585
- "MediaReview": { "@id": "schema:MediaReview" },
1586
- "MediaReviewItem": { "@id": "schema:MediaReviewItem" },
1587
- "MediaSubscription": { "@id": "schema:MediaSubscription" },
1588
- "MedicalAudience": { "@id": "schema:MedicalAudience" },
1589
- "MedicalAudienceType": { "@id": "schema:MedicalAudienceType" },
1590
- "MedicalBusiness": { "@id": "schema:MedicalBusiness" },
1591
- "MedicalCause": { "@id": "schema:MedicalCause" },
1592
- "MedicalClinic": { "@id": "schema:MedicalClinic" },
1593
- "MedicalCode": { "@id": "schema:MedicalCode" },
1594
- "MedicalCondition": { "@id": "schema:MedicalCondition" },
1595
- "MedicalConditionStage": { "@id": "schema:MedicalConditionStage" },
1596
- "MedicalContraindication": { "@id": "schema:MedicalContraindication" },
1597
- "MedicalDevice": { "@id": "schema:MedicalDevice" },
1598
- "MedicalDevicePurpose": { "@id": "schema:MedicalDevicePurpose" },
1599
- "MedicalEntity": { "@id": "schema:MedicalEntity" },
1600
- "MedicalEnumeration": { "@id": "schema:MedicalEnumeration" },
1601
- "MedicalEvidenceLevel": { "@id": "schema:MedicalEvidenceLevel" },
1602
- "MedicalGuideline": { "@id": "schema:MedicalGuideline" },
1603
- "MedicalGuidelineContraindication": {
1604
- "@id": "schema:MedicalGuidelineContraindication",
1605
- },
1606
- "MedicalGuidelineRecommendation": {
1607
- "@id": "schema:MedicalGuidelineRecommendation",
1608
- },
1609
- "MedicalImagingTechnique": { "@id": "schema:MedicalImagingTechnique" },
1610
- "MedicalIndication": { "@id": "schema:MedicalIndication" },
1611
- "MedicalIntangible": { "@id": "schema:MedicalIntangible" },
1612
- "MedicalObservationalStudy": {
1613
- "@id": "schema:MedicalObservationalStudy",
1614
- },
1615
- "MedicalObservationalStudyDesign": {
1616
- "@id": "schema:MedicalObservationalStudyDesign",
1617
- },
1618
- "MedicalOrganization": { "@id": "schema:MedicalOrganization" },
1619
- "MedicalProcedure": { "@id": "schema:MedicalProcedure" },
1620
- "MedicalProcedureType": { "@id": "schema:MedicalProcedureType" },
1621
- "MedicalResearcher": { "@id": "schema:MedicalResearcher" },
1622
- "MedicalRiskCalculator": { "@id": "schema:MedicalRiskCalculator" },
1623
- "MedicalRiskEstimator": { "@id": "schema:MedicalRiskEstimator" },
1624
- "MedicalRiskFactor": { "@id": "schema:MedicalRiskFactor" },
1625
- "MedicalRiskScore": { "@id": "schema:MedicalRiskScore" },
1626
- "MedicalScholarlyArticle": { "@id": "schema:MedicalScholarlyArticle" },
1627
- "MedicalSign": { "@id": "schema:MedicalSign" },
1628
- "MedicalSignOrSymptom": { "@id": "schema:MedicalSignOrSymptom" },
1629
- "MedicalSpecialty": { "@id": "schema:MedicalSpecialty" },
1630
- "MedicalStudy": { "@id": "schema:MedicalStudy" },
1631
- "MedicalStudyStatus": { "@id": "schema:MedicalStudyStatus" },
1632
- "MedicalSymptom": { "@id": "schema:MedicalSymptom" },
1633
- "MedicalTest": { "@id": "schema:MedicalTest" },
1634
- "MedicalTestPanel": { "@id": "schema:MedicalTestPanel" },
1635
- "MedicalTherapy": { "@id": "schema:MedicalTherapy" },
1636
- "MedicalTrial": { "@id": "schema:MedicalTrial" },
1637
- "MedicalTrialDesign": { "@id": "schema:MedicalTrialDesign" },
1638
- "MedicalWebPage": { "@id": "schema:MedicalWebPage" },
1639
- "MedicineSystem": { "@id": "schema:MedicineSystem" },
1640
- "MeetingRoom": { "@id": "schema:MeetingRoom" },
1641
- "MemberProgram": { "@id": "schema:MemberProgram" },
1642
- "MemberProgramTier": { "@id": "schema:MemberProgramTier" },
1643
- "MensClothingStore": { "@id": "schema:MensClothingStore" },
1644
- "Menu": { "@id": "schema:Menu" },
1645
- "MenuItem": { "@id": "schema:MenuItem" },
1646
- "MenuSection": { "@id": "schema:MenuSection" },
1647
- "MerchantReturnEnumeration": {
1648
- "@id": "schema:MerchantReturnEnumeration",
1649
- },
1650
- "MerchantReturnFiniteReturnWindow": {
1651
- "@id": "schema:MerchantReturnFiniteReturnWindow",
1652
- },
1653
- "MerchantReturnNotPermitted": {
1654
- "@id": "schema:MerchantReturnNotPermitted",
1655
- },
1656
- "MerchantReturnPolicy": { "@id": "schema:MerchantReturnPolicy" },
1657
- "MerchantReturnPolicySeasonalOverride": {
1658
- "@id": "schema:MerchantReturnPolicySeasonalOverride",
1659
- },
1660
- "MerchantReturnUnlimitedWindow": {
1661
- "@id": "schema:MerchantReturnUnlimitedWindow",
1662
- },
1663
- "MerchantReturnUnspecified": {
1664
- "@id": "schema:MerchantReturnUnspecified",
1665
- },
1666
- "Message": { "@id": "schema:Message" },
1667
- "MiddleSchool": { "@id": "schema:MiddleSchool" },
1668
- "Midwifery": { "@id": "schema:Midwifery" },
1669
- "MinimumAdvertisedPrice": { "@id": "schema:MinimumAdvertisedPrice" },
1670
- "MinorHumanEditsDigitalSource": {
1671
- "@id": "schema:MinorHumanEditsDigitalSource",
1672
- },
1673
- "MisconceptionsHealthAspect": {
1674
- "@id": "schema:MisconceptionsHealthAspect",
1675
- },
1676
- "MixedEventAttendanceMode": { "@id": "schema:MixedEventAttendanceMode" },
1677
- "MixtapeAlbum": { "@id": "schema:MixtapeAlbum" },
1678
- "MobileApplication": { "@id": "schema:MobileApplication" },
1679
- "MobilePhoneStore": { "@id": "schema:MobilePhoneStore" },
1680
- "MobileWebPlatform": { "@id": "schema:MobileWebPlatform" },
1681
- "MolecularEntity": { "@id": "schema:MolecularEntity" },
1682
- "Monday": { "@id": "schema:Monday" },
1683
- "MonetaryAmount": { "@id": "schema:MonetaryAmount" },
1684
- "MonetaryAmountDistribution": {
1685
- "@id": "schema:MonetaryAmountDistribution",
1686
- },
1687
- "MonetaryGrant": { "@id": "schema:MonetaryGrant" },
1688
- "MoneyTransfer": { "@id": "schema:MoneyTransfer" },
1689
- "MortgageLoan": { "@id": "schema:MortgageLoan" },
1690
- "Mosque": { "@id": "schema:Mosque" },
1691
- "Motel": { "@id": "schema:Motel" },
1692
- "Motorcycle": { "@id": "schema:Motorcycle" },
1693
- "MotorcycleDealer": { "@id": "schema:MotorcycleDealer" },
1694
- "MotorcycleRepair": { "@id": "schema:MotorcycleRepair" },
1695
- "MotorizedBicycle": { "@id": "schema:MotorizedBicycle" },
1696
- "Mountain": { "@id": "schema:Mountain" },
1697
- "MoveAction": { "@id": "schema:MoveAction" },
1698
- "Movie": { "@id": "schema:Movie" },
1699
- "MovieClip": { "@id": "schema:MovieClip" },
1700
- "MovieRentalStore": { "@id": "schema:MovieRentalStore" },
1701
- "MovieSeries": { "@id": "schema:MovieSeries" },
1702
- "MovieTheater": { "@id": "schema:MovieTheater" },
1703
- "MovingCompany": { "@id": "schema:MovingCompany" },
1704
- "MultiCenterTrial": { "@id": "schema:MultiCenterTrial" },
1705
- "MultiPlayer": { "@id": "schema:MultiPlayer" },
1706
- "MulticellularParasite": { "@id": "schema:MulticellularParasite" },
1707
- "Muscle": { "@id": "schema:Muscle" },
1708
- "Musculoskeletal": { "@id": "schema:Musculoskeletal" },
1709
- "MusculoskeletalExam": { "@id": "schema:MusculoskeletalExam" },
1710
- "Museum": { "@id": "schema:Museum" },
1711
- "MusicAlbum": { "@id": "schema:MusicAlbum" },
1712
- "MusicAlbumProductionType": { "@id": "schema:MusicAlbumProductionType" },
1713
- "MusicAlbumReleaseType": { "@id": "schema:MusicAlbumReleaseType" },
1714
- "MusicComposition": { "@id": "schema:MusicComposition" },
1715
- "MusicEvent": { "@id": "schema:MusicEvent" },
1716
- "MusicGroup": { "@id": "schema:MusicGroup" },
1717
- "MusicPlaylist": { "@id": "schema:MusicPlaylist" },
1718
- "MusicRecording": { "@id": "schema:MusicRecording" },
1719
- "MusicRelease": { "@id": "schema:MusicRelease" },
1720
- "MusicReleaseFormatType": { "@id": "schema:MusicReleaseFormatType" },
1721
- "MusicStore": { "@id": "schema:MusicStore" },
1722
- "MusicVenue": { "@id": "schema:MusicVenue" },
1723
- "MusicVideoObject": { "@id": "schema:MusicVideoObject" },
1724
- "NGO": { "@id": "schema:NGO" },
1725
- "NLNonprofitType": { "@id": "schema:NLNonprofitType" },
1726
- "NailSalon": { "@id": "schema:NailSalon" },
1727
- "NarcoticConsideration": { "@id": "schema:NarcoticConsideration" },
1728
- "Neck": { "@id": "schema:Neck" },
1729
- "NegativeFilmDigitalSource": {
1730
- "@id": "schema:NegativeFilmDigitalSource",
1731
- },
1732
- "Nerve": { "@id": "schema:Nerve" },
1733
- "Neuro": { "@id": "schema:Neuro" },
1734
- "Neurologic": { "@id": "schema:Neurologic" },
1735
- "NewCondition": { "@id": "schema:NewCondition" },
1736
- "NewsArticle": { "@id": "schema:NewsArticle" },
1737
- "NewsMediaOrganization": { "@id": "schema:NewsMediaOrganization" },
1738
- "Newspaper": { "@id": "schema:Newspaper" },
1739
- "NightClub": { "@id": "schema:NightClub" },
1740
- "NoninvasiveProcedure": { "@id": "schema:NoninvasiveProcedure" },
1741
- "Nonprofit501a": { "@id": "schema:Nonprofit501a" },
1742
- "Nonprofit501c1": { "@id": "schema:Nonprofit501c1" },
1743
- "Nonprofit501c10": { "@id": "schema:Nonprofit501c10" },
1744
- "Nonprofit501c11": { "@id": "schema:Nonprofit501c11" },
1745
- "Nonprofit501c12": { "@id": "schema:Nonprofit501c12" },
1746
- "Nonprofit501c13": { "@id": "schema:Nonprofit501c13" },
1747
- "Nonprofit501c14": { "@id": "schema:Nonprofit501c14" },
1748
- "Nonprofit501c15": { "@id": "schema:Nonprofit501c15" },
1749
- "Nonprofit501c16": { "@id": "schema:Nonprofit501c16" },
1750
- "Nonprofit501c17": { "@id": "schema:Nonprofit501c17" },
1751
- "Nonprofit501c18": { "@id": "schema:Nonprofit501c18" },
1752
- "Nonprofit501c19": { "@id": "schema:Nonprofit501c19" },
1753
- "Nonprofit501c2": { "@id": "schema:Nonprofit501c2" },
1754
- "Nonprofit501c20": { "@id": "schema:Nonprofit501c20" },
1755
- "Nonprofit501c21": { "@id": "schema:Nonprofit501c21" },
1756
- "Nonprofit501c22": { "@id": "schema:Nonprofit501c22" },
1757
- "Nonprofit501c23": { "@id": "schema:Nonprofit501c23" },
1758
- "Nonprofit501c24": { "@id": "schema:Nonprofit501c24" },
1759
- "Nonprofit501c25": { "@id": "schema:Nonprofit501c25" },
1760
- "Nonprofit501c26": { "@id": "schema:Nonprofit501c26" },
1761
- "Nonprofit501c27": { "@id": "schema:Nonprofit501c27" },
1762
- "Nonprofit501c28": { "@id": "schema:Nonprofit501c28" },
1763
- "Nonprofit501c3": { "@id": "schema:Nonprofit501c3" },
1764
- "Nonprofit501c4": { "@id": "schema:Nonprofit501c4" },
1765
- "Nonprofit501c5": { "@id": "schema:Nonprofit501c5" },
1766
- "Nonprofit501c6": { "@id": "schema:Nonprofit501c6" },
1767
- "Nonprofit501c7": { "@id": "schema:Nonprofit501c7" },
1768
- "Nonprofit501c8": { "@id": "schema:Nonprofit501c8" },
1769
- "Nonprofit501c9": { "@id": "schema:Nonprofit501c9" },
1770
- "Nonprofit501d": { "@id": "schema:Nonprofit501d" },
1771
- "Nonprofit501e": { "@id": "schema:Nonprofit501e" },
1772
- "Nonprofit501f": { "@id": "schema:Nonprofit501f" },
1773
- "Nonprofit501k": { "@id": "schema:Nonprofit501k" },
1774
- "Nonprofit501n": { "@id": "schema:Nonprofit501n" },
1775
- "Nonprofit501q": { "@id": "schema:Nonprofit501q" },
1776
- "Nonprofit527": { "@id": "schema:Nonprofit527" },
1777
- "NonprofitANBI": { "@id": "schema:NonprofitANBI" },
1778
- "NonprofitSBBI": { "@id": "schema:NonprofitSBBI" },
1779
- "NonprofitType": { "@id": "schema:NonprofitType" },
1780
- "Nose": { "@id": "schema:Nose" },
1781
- "NotInForce": { "@id": "schema:NotInForce" },
1782
- "NotYetRecruiting": { "@id": "schema:NotYetRecruiting" },
1783
- "Notary": { "@id": "schema:Notary" },
1784
- "NoteDigitalDocument": { "@id": "schema:NoteDigitalDocument" },
1785
- "Number": { "@id": "schema:Number" },
1786
- "Nursing": { "@id": "schema:Nursing" },
1787
- "NutritionInformation": { "@id": "schema:NutritionInformation" },
1788
- "OTC": { "@id": "schema:OTC" },
1789
- "Observation": { "@id": "schema:Observation" },
1790
- "Observational": { "@id": "schema:Observational" },
1791
- "Obstetric": { "@id": "schema:Obstetric" },
1792
- "Occupation": { "@id": "schema:Occupation" },
1793
- "OccupationalActivity": { "@id": "schema:OccupationalActivity" },
1794
- "OccupationalExperienceRequirements": {
1795
- "@id": "schema:OccupationalExperienceRequirements",
1796
- },
1797
- "OccupationalTherapy": { "@id": "schema:OccupationalTherapy" },
1798
- "OceanBodyOfWater": { "@id": "schema:OceanBodyOfWater" },
1799
- "Offer": { "@id": "schema:Offer" },
1800
- "OfferCatalog": { "@id": "schema:OfferCatalog" },
1801
- "OfferForLease": { "@id": "schema:OfferForLease" },
1802
- "OfferForPurchase": { "@id": "schema:OfferForPurchase" },
1803
- "OfferItemCondition": { "@id": "schema:OfferItemCondition" },
1804
- "OfferShippingDetails": { "@id": "schema:OfferShippingDetails" },
1805
- "OfficeEquipmentStore": { "@id": "schema:OfficeEquipmentStore" },
1806
- "OfficialLegalValue": { "@id": "schema:OfficialLegalValue" },
1807
- "OfflineEventAttendanceMode": {
1808
- "@id": "schema:OfflineEventAttendanceMode",
1809
- },
1810
- "OfflinePermanently": { "@id": "schema:OfflinePermanently" },
1811
- "OfflineTemporarily": { "@id": "schema:OfflineTemporarily" },
1812
- "OnDemandEvent": { "@id": "schema:OnDemandEvent" },
1813
- "OnSitePickup": { "@id": "schema:OnSitePickup" },
1814
- "Oncologic": { "@id": "schema:Oncologic" },
1815
- "OneTimePayments": { "@id": "schema:OneTimePayments" },
1816
- "Online": { "@id": "schema:Online" },
1817
- "OnlineBusiness": { "@id": "schema:OnlineBusiness" },
1818
- "OnlineEventAttendanceMode": {
1819
- "@id": "schema:OnlineEventAttendanceMode",
1820
- },
1821
- "OnlineFull": { "@id": "schema:OnlineFull" },
1822
- "OnlineOnly": { "@id": "schema:OnlineOnly" },
1823
- "OnlineStore": { "@id": "schema:OnlineStore" },
1824
- "OpenTrial": { "@id": "schema:OpenTrial" },
1825
- "OpeningHoursSpecification": {
1826
- "@id": "schema:OpeningHoursSpecification",
1827
- },
1828
- "OpinionNewsArticle": { "@id": "schema:OpinionNewsArticle" },
1829
- "Optician": { "@id": "schema:Optician" },
1830
- "Optometric": { "@id": "schema:Optometric" },
1831
- "Order": { "@id": "schema:Order" },
1832
- "OrderAction": { "@id": "schema:OrderAction" },
1833
- "OrderCancelled": { "@id": "schema:OrderCancelled" },
1834
- "OrderDelivered": { "@id": "schema:OrderDelivered" },
1835
- "OrderInTransit": { "@id": "schema:OrderInTransit" },
1836
- "OrderItem": { "@id": "schema:OrderItem" },
1837
- "OrderPaymentDue": { "@id": "schema:OrderPaymentDue" },
1838
- "OrderPickupAvailable": { "@id": "schema:OrderPickupAvailable" },
1839
- "OrderProblem": { "@id": "schema:OrderProblem" },
1840
- "OrderProcessing": { "@id": "schema:OrderProcessing" },
1841
- "OrderReturned": { "@id": "schema:OrderReturned" },
1842
- "OrderStatus": { "@id": "schema:OrderStatus" },
1843
- "Organization": { "@id": "schema:Organization" },
1844
- "OrganizationRole": { "@id": "schema:OrganizationRole" },
1845
- "OrganizeAction": { "@id": "schema:OrganizeAction" },
1846
- "OriginalMediaContent": { "@id": "schema:OriginalMediaContent" },
1847
- "OriginalShippingFees": { "@id": "schema:OriginalShippingFees" },
1848
- "Osteopathic": { "@id": "schema:Osteopathic" },
1849
- "Otolaryngologic": { "@id": "schema:Otolaryngologic" },
1850
- "OutOfStock": { "@id": "schema:OutOfStock" },
1851
- "OutletStore": { "@id": "schema:OutletStore" },
1852
- "OverviewHealthAspect": { "@id": "schema:OverviewHealthAspect" },
1853
- "OwnershipInfo": { "@id": "schema:OwnershipInfo" },
1854
- "PET": { "@id": "schema:PET" },
1855
- "PaidLeave": { "@id": "schema:PaidLeave" },
1856
- "PaintAction": { "@id": "schema:PaintAction" },
1857
- "Painting": { "@id": "schema:Painting" },
1858
- "PalliativeProcedure": { "@id": "schema:PalliativeProcedure" },
1859
- "Paperback": { "@id": "schema:Paperback" },
1860
- "ParcelDelivery": { "@id": "schema:ParcelDelivery" },
1861
- "ParcelService": { "@id": "schema:ParcelService" },
1862
- "ParentAudience": { "@id": "schema:ParentAudience" },
1863
- "ParentalSupport": { "@id": "schema:ParentalSupport" },
1864
- "Park": { "@id": "schema:Park" },
1865
- "ParkingFacility": { "@id": "schema:ParkingFacility" },
1866
- "ParkingMap": { "@id": "schema:ParkingMap" },
1867
- "PartiallyInForce": { "@id": "schema:PartiallyInForce" },
1868
- "Pathology": { "@id": "schema:Pathology" },
1869
- "PathologyTest": { "@id": "schema:PathologyTest" },
1870
- "Patient": { "@id": "schema:Patient" },
1871
- "PatientExperienceHealthAspect": {
1872
- "@id": "schema:PatientExperienceHealthAspect",
1873
- },
1874
- "PawnShop": { "@id": "schema:PawnShop" },
1875
- "PayAction": { "@id": "schema:PayAction" },
1876
- "PaymentAutomaticallyApplied": {
1877
- "@id": "schema:PaymentAutomaticallyApplied",
1878
- },
1879
- "PaymentCard": { "@id": "schema:PaymentCard" },
1880
- "PaymentChargeSpecification": {
1881
- "@id": "schema:PaymentChargeSpecification",
1882
- },
1883
- "PaymentComplete": { "@id": "schema:PaymentComplete" },
1884
- "PaymentDeclined": { "@id": "schema:PaymentDeclined" },
1885
- "PaymentDue": { "@id": "schema:PaymentDue" },
1886
- "PaymentMethod": { "@id": "schema:PaymentMethod" },
1887
- "PaymentMethodType": { "@id": "schema:PaymentMethodType" },
1888
- "PaymentPastDue": { "@id": "schema:PaymentPastDue" },
1889
- "PaymentService": { "@id": "schema:PaymentService" },
1890
- "PaymentStatusType": { "@id": "schema:PaymentStatusType" },
1891
- "Pediatric": { "@id": "schema:Pediatric" },
1892
- "PeopleAudience": { "@id": "schema:PeopleAudience" },
1893
- "PercutaneousProcedure": { "@id": "schema:PercutaneousProcedure" },
1894
- "PerformAction": { "@id": "schema:PerformAction" },
1895
- "PerformanceRole": { "@id": "schema:PerformanceRole" },
1896
- "PerformingArtsTheater": { "@id": "schema:PerformingArtsTheater" },
1897
- "PerformingGroup": { "@id": "schema:PerformingGroup" },
1898
- "Periodical": { "@id": "schema:Periodical" },
1899
- "Permit": { "@id": "schema:Permit" },
1900
- "Person": { "@id": "schema:Person" },
1901
- "PetStore": { "@id": "schema:PetStore" },
1902
- "Pharmacy": { "@id": "schema:Pharmacy" },
1903
- "PharmacySpecialty": { "@id": "schema:PharmacySpecialty" },
1904
- "PhoneCarrierPayment": { "@id": "schema:PhoneCarrierPayment" },
1905
- "Photograph": { "@id": "schema:Photograph" },
1906
- "PhotographAction": { "@id": "schema:PhotographAction" },
1907
- "PhysicalActivity": { "@id": "schema:PhysicalActivity" },
1908
- "PhysicalActivityCategory": { "@id": "schema:PhysicalActivityCategory" },
1909
- "PhysicalExam": { "@id": "schema:PhysicalExam" },
1910
- "PhysicalTherapy": { "@id": "schema:PhysicalTherapy" },
1911
- "Physician": { "@id": "schema:Physician" },
1912
- "PhysiciansOffice": { "@id": "schema:PhysiciansOffice" },
1913
- "Physiotherapy": { "@id": "schema:Physiotherapy" },
1914
- "Place": { "@id": "schema:Place" },
1915
- "PlaceOfWorship": { "@id": "schema:PlaceOfWorship" },
1916
- "PlaceboControlledTrial": { "@id": "schema:PlaceboControlledTrial" },
1917
- "PlanAction": { "@id": "schema:PlanAction" },
1918
- "PlasticSurgery": { "@id": "schema:PlasticSurgery" },
1919
- "Play": { "@id": "schema:Play" },
1920
- "PlayAction": { "@id": "schema:PlayAction" },
1921
- "PlayGameAction": { "@id": "schema:PlayGameAction" },
1922
- "Playground": { "@id": "schema:Playground" },
1923
- "Plumber": { "@id": "schema:Plumber" },
1924
- "PodcastEpisode": { "@id": "schema:PodcastEpisode" },
1925
- "PodcastSeason": { "@id": "schema:PodcastSeason" },
1926
- "PodcastSeries": { "@id": "schema:PodcastSeries" },
1927
- "Podiatric": { "@id": "schema:Podiatric" },
1928
- "PoliceStation": { "@id": "schema:PoliceStation" },
1929
- "PoliticalParty": { "@id": "schema:PoliticalParty" },
1930
- "Pond": { "@id": "schema:Pond" },
1931
- "PositiveFilmDigitalSource": {
1932
- "@id": "schema:PositiveFilmDigitalSource",
1933
- },
1934
- "PostOffice": { "@id": "schema:PostOffice" },
1935
- "PostalAddress": { "@id": "schema:PostalAddress" },
1936
- "PostalCodeRangeSpecification": {
1937
- "@id": "schema:PostalCodeRangeSpecification",
1938
- },
1939
- "Poster": { "@id": "schema:Poster" },
1940
- "PotentialActionStatus": { "@id": "schema:PotentialActionStatus" },
1941
- "PreOrder": { "@id": "schema:PreOrder" },
1942
- "PreOrderAction": { "@id": "schema:PreOrderAction" },
1943
- "PreSale": { "@id": "schema:PreSale" },
1944
- "PregnancyHealthAspect": { "@id": "schema:PregnancyHealthAspect" },
1945
- "PrependAction": { "@id": "schema:PrependAction" },
1946
- "Preschool": { "@id": "schema:Preschool" },
1947
- "PrescriptionOnly": { "@id": "schema:PrescriptionOnly" },
1948
- "PresentationDigitalDocument": {
1949
- "@id": "schema:PresentationDigitalDocument",
1950
- },
1951
- "PreventionHealthAspect": { "@id": "schema:PreventionHealthAspect" },
1952
- "PreventionIndication": { "@id": "schema:PreventionIndication" },
1953
- "PriceComponentTypeEnumeration": {
1954
- "@id": "schema:PriceComponentTypeEnumeration",
1955
- },
1956
- "PriceSpecification": { "@id": "schema:PriceSpecification" },
1957
- "PriceTypeEnumeration": { "@id": "schema:PriceTypeEnumeration" },
1958
- "PrimaryCare": { "@id": "schema:PrimaryCare" },
1959
- "PrintDigitalSource": { "@id": "schema:PrintDigitalSource" },
1960
- "Prion": { "@id": "schema:Prion" },
1961
- "Product": { "@id": "schema:Product" },
1962
- "ProductCollection": { "@id": "schema:ProductCollection" },
1963
- "ProductGroup": { "@id": "schema:ProductGroup" },
1964
- "ProductModel": { "@id": "schema:ProductModel" },
1965
- "ProductReturnEnumeration": { "@id": "schema:ProductReturnEnumeration" },
1966
- "ProductReturnFiniteReturnWindow": {
1967
- "@id": "schema:ProductReturnFiniteReturnWindow",
1968
- },
1969
- "ProductReturnNotPermitted": {
1970
- "@id": "schema:ProductReturnNotPermitted",
1971
- },
1972
- "ProductReturnPolicy": { "@id": "schema:ProductReturnPolicy" },
1973
- "ProductReturnUnlimitedWindow": {
1974
- "@id": "schema:ProductReturnUnlimitedWindow",
1975
- },
1976
- "ProductReturnUnspecified": { "@id": "schema:ProductReturnUnspecified" },
1977
- "ProfessionalService": { "@id": "schema:ProfessionalService" },
1978
- "ProfilePage": { "@id": "schema:ProfilePage" },
1979
- "PrognosisHealthAspect": { "@id": "schema:PrognosisHealthAspect" },
1980
- "ProgramMembership": { "@id": "schema:ProgramMembership" },
1981
- "Project": { "@id": "schema:Project" },
1982
- "PronounceableText": { "@id": "schema:PronounceableText" },
1983
- "Property": { "@id": "schema:Property" },
1984
- "PropertyValue": { "@id": "schema:PropertyValue" },
1985
- "PropertyValueSpecification": {
1986
- "@id": "schema:PropertyValueSpecification",
1987
- },
1988
- "Protein": { "@id": "schema:Protein" },
1989
- "Protozoa": { "@id": "schema:Protozoa" },
1990
- "Psychiatric": { "@id": "schema:Psychiatric" },
1991
- "PsychologicalTreatment": { "@id": "schema:PsychologicalTreatment" },
1992
- "PublicHealth": { "@id": "schema:PublicHealth" },
1993
- "PublicHolidays": { "@id": "schema:PublicHolidays" },
1994
- "PublicSwimmingPool": { "@id": "schema:PublicSwimmingPool" },
1995
- "PublicToilet": { "@id": "schema:PublicToilet" },
1996
- "PublicationEvent": { "@id": "schema:PublicationEvent" },
1997
- "PublicationIssue": { "@id": "schema:PublicationIssue" },
1998
- "PublicationVolume": { "@id": "schema:PublicationVolume" },
1999
- "Pulmonary": { "@id": "schema:Pulmonary" },
2000
- "QAPage": { "@id": "schema:QAPage" },
2001
- "QualitativeValue": { "@id": "schema:QualitativeValue" },
2002
- "QuantitativeValue": { "@id": "schema:QuantitativeValue" },
2003
- "QuantitativeValueDistribution": {
2004
- "@id": "schema:QuantitativeValueDistribution",
2005
- },
2006
- "Quantity": { "@id": "schema:Quantity" },
2007
- "Question": { "@id": "schema:Question" },
2008
- "Quiz": { "@id": "schema:Quiz" },
2009
- "Quotation": { "@id": "schema:Quotation" },
2010
- "QuoteAction": { "@id": "schema:QuoteAction" },
2011
- "RVPark": { "@id": "schema:RVPark" },
2012
- "RadiationTherapy": { "@id": "schema:RadiationTherapy" },
2013
- "RadioBroadcastService": { "@id": "schema:RadioBroadcastService" },
2014
- "RadioChannel": { "@id": "schema:RadioChannel" },
2015
- "RadioClip": { "@id": "schema:RadioClip" },
2016
- "RadioEpisode": { "@id": "schema:RadioEpisode" },
2017
- "RadioSeason": { "@id": "schema:RadioSeason" },
2018
- "RadioSeries": { "@id": "schema:RadioSeries" },
2019
- "RadioStation": { "@id": "schema:RadioStation" },
2020
- "Radiography": { "@id": "schema:Radiography" },
2021
- "RandomizedTrial": { "@id": "schema:RandomizedTrial" },
2022
- "Rating": { "@id": "schema:Rating" },
2023
- "ReactAction": { "@id": "schema:ReactAction" },
2024
- "ReadAction": { "@id": "schema:ReadAction" },
2025
- "ReadPermission": { "@id": "schema:ReadPermission" },
2026
- "RealEstateAgent": { "@id": "schema:RealEstateAgent" },
2027
- "RealEstateListing": { "@id": "schema:RealEstateListing" },
2028
- "RearWheelDriveConfiguration": {
2029
- "@id": "schema:RearWheelDriveConfiguration",
2030
- },
2031
- "ReceiveAction": { "@id": "schema:ReceiveAction" },
2032
- "Recipe": { "@id": "schema:Recipe" },
2033
- "Recommendation": { "@id": "schema:Recommendation" },
2034
- "RecommendedDoseSchedule": { "@id": "schema:RecommendedDoseSchedule" },
2035
- "Recruiting": { "@id": "schema:Recruiting" },
2036
- "RecyclingCenter": { "@id": "schema:RecyclingCenter" },
2037
- "ReducedRelevanceForChildrenConsideration": {
2038
- "@id": "schema:ReducedRelevanceForChildrenConsideration",
2039
- },
2040
- "RefundTypeEnumeration": { "@id": "schema:RefundTypeEnumeration" },
2041
- "RefurbishedCondition": { "@id": "schema:RefurbishedCondition" },
2042
- "RegisterAction": { "@id": "schema:RegisterAction" },
2043
- "Registry": { "@id": "schema:Registry" },
2044
- "RegularPrice": { "@id": "schema:RegularPrice" },
2045
- "ReimbursementCap": { "@id": "schema:ReimbursementCap" },
2046
- "RejectAction": { "@id": "schema:RejectAction" },
2047
- "RelatedTopicsHealthAspect": {
2048
- "@id": "schema:RelatedTopicsHealthAspect",
2049
- },
2050
- "RemixAlbum": { "@id": "schema:RemixAlbum" },
2051
- "Renal": { "@id": "schema:Renal" },
2052
- "RentAction": { "@id": "schema:RentAction" },
2053
- "RentalCarReservation": { "@id": "schema:RentalCarReservation" },
2054
- "RentalVehicleUsage": { "@id": "schema:RentalVehicleUsage" },
2055
- "RepaymentSpecification": { "@id": "schema:RepaymentSpecification" },
2056
- "ReplaceAction": { "@id": "schema:ReplaceAction" },
2057
- "ReplyAction": { "@id": "schema:ReplyAction" },
2058
- "Report": { "@id": "schema:Report" },
2059
- "ReportageNewsArticle": { "@id": "schema:ReportageNewsArticle" },
2060
- "ReportedDoseSchedule": { "@id": "schema:ReportedDoseSchedule" },
2061
- "ResearchOrganization": { "@id": "schema:ResearchOrganization" },
2062
- "ResearchProject": { "@id": "schema:ResearchProject" },
2063
- "Researcher": { "@id": "schema:Researcher" },
2064
- "Reservation": { "@id": "schema:Reservation" },
2065
- "ReservationCancelled": { "@id": "schema:ReservationCancelled" },
2066
- "ReservationConfirmed": { "@id": "schema:ReservationConfirmed" },
2067
- "ReservationHold": { "@id": "schema:ReservationHold" },
2068
- "ReservationPackage": { "@id": "schema:ReservationPackage" },
2069
- "ReservationPending": { "@id": "schema:ReservationPending" },
2070
- "ReservationStatusType": { "@id": "schema:ReservationStatusType" },
2071
- "ReserveAction": { "@id": "schema:ReserveAction" },
2072
- "Reserved": { "@id": "schema:Reserved" },
2073
- "Reservoir": { "@id": "schema:Reservoir" },
2074
- "Residence": { "@id": "schema:Residence" },
2075
- "Resort": { "@id": "schema:Resort" },
2076
- "RespiratoryTherapy": { "@id": "schema:RespiratoryTherapy" },
2077
- "Restaurant": { "@id": "schema:Restaurant" },
2078
- "RestockingFees": { "@id": "schema:RestockingFees" },
2079
- "RestrictedDiet": { "@id": "schema:RestrictedDiet" },
2080
- "ResultsAvailable": { "@id": "schema:ResultsAvailable" },
2081
- "ResultsNotAvailable": { "@id": "schema:ResultsNotAvailable" },
2082
- "ResumeAction": { "@id": "schema:ResumeAction" },
2083
- "Retail": { "@id": "schema:Retail" },
2084
- "ReturnAction": { "@id": "schema:ReturnAction" },
2085
- "ReturnAtKiosk": { "@id": "schema:ReturnAtKiosk" },
2086
- "ReturnByMail": { "@id": "schema:ReturnByMail" },
2087
- "ReturnFeesCustomerResponsibility": {
2088
- "@id": "schema:ReturnFeesCustomerResponsibility",
2089
- },
2090
- "ReturnFeesEnumeration": { "@id": "schema:ReturnFeesEnumeration" },
2091
- "ReturnInStore": { "@id": "schema:ReturnInStore" },
2092
- "ReturnLabelCustomerResponsibility": {
2093
- "@id": "schema:ReturnLabelCustomerResponsibility",
2094
- },
2095
- "ReturnLabelDownloadAndPrint": {
2096
- "@id": "schema:ReturnLabelDownloadAndPrint",
2097
- },
2098
- "ReturnLabelInBox": { "@id": "schema:ReturnLabelInBox" },
2099
- "ReturnLabelSourceEnumeration": {
2100
- "@id": "schema:ReturnLabelSourceEnumeration",
2101
- },
2102
- "ReturnMethodEnumeration": { "@id": "schema:ReturnMethodEnumeration" },
2103
- "ReturnShippingFees": { "@id": "schema:ReturnShippingFees" },
2104
- "Review": { "@id": "schema:Review" },
2105
- "ReviewAction": { "@id": "schema:ReviewAction" },
2106
- "ReviewNewsArticle": { "@id": "schema:ReviewNewsArticle" },
2107
- "Rheumatologic": { "@id": "schema:Rheumatologic" },
2108
- "RightHandDriving": { "@id": "schema:RightHandDriving" },
2109
- "RisksOrComplicationsHealthAspect": {
2110
- "@id": "schema:RisksOrComplicationsHealthAspect",
2111
- },
2112
- "RiverBodyOfWater": { "@id": "schema:RiverBodyOfWater" },
2113
- "Role": { "@id": "schema:Role" },
2114
- "RoofingContractor": { "@id": "schema:RoofingContractor" },
2115
- "Room": { "@id": "schema:Room" },
2116
- "RsvpAction": { "@id": "schema:RsvpAction" },
2117
- "RsvpResponseMaybe": { "@id": "schema:RsvpResponseMaybe" },
2118
- "RsvpResponseNo": { "@id": "schema:RsvpResponseNo" },
2119
- "RsvpResponseType": { "@id": "schema:RsvpResponseType" },
2120
- "RsvpResponseYes": { "@id": "schema:RsvpResponseYes" },
2121
- "SRP": { "@id": "schema:SRP" },
2122
- "SafetyHealthAspect": { "@id": "schema:SafetyHealthAspect" },
2123
- "SaleEvent": { "@id": "schema:SaleEvent" },
2124
- "SalePrice": { "@id": "schema:SalePrice" },
2125
- "SatireOrParodyContent": { "@id": "schema:SatireOrParodyContent" },
2126
- "SatiricalArticle": { "@id": "schema:SatiricalArticle" },
2127
- "Saturday": { "@id": "schema:Saturday" },
2128
- "Schedule": { "@id": "schema:Schedule" },
2129
- "ScheduleAction": { "@id": "schema:ScheduleAction" },
2130
- "ScholarlyArticle": { "@id": "schema:ScholarlyArticle" },
2131
- "School": { "@id": "schema:School" },
2132
- "SchoolDistrict": { "@id": "schema:SchoolDistrict" },
2133
- "ScreeningEvent": { "@id": "schema:ScreeningEvent" },
2134
- "ScreeningHealthAspect": { "@id": "schema:ScreeningHealthAspect" },
2135
- "Sculpture": { "@id": "schema:Sculpture" },
2136
- "SeaBodyOfWater": { "@id": "schema:SeaBodyOfWater" },
2137
- "SearchAction": { "@id": "schema:SearchAction" },
2138
- "SearchRescueOrganization": { "@id": "schema:SearchRescueOrganization" },
2139
- "SearchResultsPage": { "@id": "schema:SearchResultsPage" },
2140
- "Season": { "@id": "schema:Season" },
2141
- "Seat": { "@id": "schema:Seat" },
2142
- "SeatingMap": { "@id": "schema:SeatingMap" },
2143
- "SeeDoctorHealthAspect": { "@id": "schema:SeeDoctorHealthAspect" },
2144
- "SeekToAction": { "@id": "schema:SeekToAction" },
2145
- "SelfCareHealthAspect": { "@id": "schema:SelfCareHealthAspect" },
2146
- "SelfStorage": { "@id": "schema:SelfStorage" },
2147
- "SellAction": { "@id": "schema:SellAction" },
2148
- "SendAction": { "@id": "schema:SendAction" },
2149
- "Series": { "@id": "schema:Series" },
2150
- "Service": { "@id": "schema:Service" },
2151
- "ServiceChannel": { "@id": "schema:ServiceChannel" },
2152
- "SexualContentConsideration": {
2153
- "@id": "schema:SexualContentConsideration",
2154
- },
2155
- "ShareAction": { "@id": "schema:ShareAction" },
2156
- "SheetMusic": { "@id": "schema:SheetMusic" },
2157
- "ShippingDeliveryTime": { "@id": "schema:ShippingDeliveryTime" },
2158
- "ShippingRateSettings": { "@id": "schema:ShippingRateSettings" },
2159
- "ShoeStore": { "@id": "schema:ShoeStore" },
2160
- "ShoppingCenter": { "@id": "schema:ShoppingCenter" },
2161
- "ShortStory": { "@id": "schema:ShortStory" },
2162
- "SideEffectsHealthAspect": { "@id": "schema:SideEffectsHealthAspect" },
2163
- "SingleBlindedTrial": { "@id": "schema:SingleBlindedTrial" },
2164
- "SingleCenterTrial": { "@id": "schema:SingleCenterTrial" },
2165
- "SingleFamilyResidence": { "@id": "schema:SingleFamilyResidence" },
2166
- "SinglePlayer": { "@id": "schema:SinglePlayer" },
2167
- "SingleRelease": { "@id": "schema:SingleRelease" },
2168
- "SiteNavigationElement": { "@id": "schema:SiteNavigationElement" },
2169
- "SizeGroupEnumeration": { "@id": "schema:SizeGroupEnumeration" },
2170
- "SizeSpecification": { "@id": "schema:SizeSpecification" },
2171
- "SizeSystemEnumeration": { "@id": "schema:SizeSystemEnumeration" },
2172
- "SizeSystemImperial": { "@id": "schema:SizeSystemImperial" },
2173
- "SizeSystemMetric": { "@id": "schema:SizeSystemMetric" },
2174
- "SkiResort": { "@id": "schema:SkiResort" },
2175
- "Skin": { "@id": "schema:Skin" },
2176
- "SocialEvent": { "@id": "schema:SocialEvent" },
2177
- "SocialMediaPosting": { "@id": "schema:SocialMediaPosting" },
2178
- "SoftwareApplication": { "@id": "schema:SoftwareApplication" },
2179
- "SoftwareSourceCode": { "@id": "schema:SoftwareSourceCode" },
2180
- "SoldOut": { "@id": "schema:SoldOut" },
2181
- "SolveMathAction": { "@id": "schema:SolveMathAction" },
2182
- "SomeProducts": { "@id": "schema:SomeProducts" },
2183
- "SoundtrackAlbum": { "@id": "schema:SoundtrackAlbum" },
2184
- "SpeakableSpecification": { "@id": "schema:SpeakableSpecification" },
2185
- "SpecialAnnouncement": { "@id": "schema:SpecialAnnouncement" },
2186
- "Specialty": { "@id": "schema:Specialty" },
2187
- "SpeechPathology": { "@id": "schema:SpeechPathology" },
2188
- "SpokenWordAlbum": { "@id": "schema:SpokenWordAlbum" },
2189
- "SportingGoodsStore": { "@id": "schema:SportingGoodsStore" },
2190
- "SportsActivityLocation": { "@id": "schema:SportsActivityLocation" },
2191
- "SportsClub": { "@id": "schema:SportsClub" },
2192
- "SportsEvent": { "@id": "schema:SportsEvent" },
2193
- "SportsOrganization": { "@id": "schema:SportsOrganization" },
2194
- "SportsTeam": { "@id": "schema:SportsTeam" },
2195
- "SpreadsheetDigitalDocument": {
2196
- "@id": "schema:SpreadsheetDigitalDocument",
2197
- },
2198
- "StadiumOrArena": { "@id": "schema:StadiumOrArena" },
2199
- "StagedContent": { "@id": "schema:StagedContent" },
2200
- "StagesHealthAspect": { "@id": "schema:StagesHealthAspect" },
2201
- "State": { "@id": "schema:State" },
2202
- "Statement": { "@id": "schema:Statement" },
2203
- "StatisticalPopulation": { "@id": "schema:StatisticalPopulation" },
2204
- "StatisticalVariable": { "@id": "schema:StatisticalVariable" },
2205
- "StatusEnumeration": { "@id": "schema:StatusEnumeration" },
2206
- "SteeringPositionValue": { "@id": "schema:SteeringPositionValue" },
2207
- "Store": { "@id": "schema:Store" },
2208
- "StoreCreditRefund": { "@id": "schema:StoreCreditRefund" },
2209
- "StrengthTraining": { "@id": "schema:StrengthTraining" },
2210
- "StructuredValue": { "@id": "schema:StructuredValue" },
2211
- "StudioAlbum": { "@id": "schema:StudioAlbum" },
2212
- "StupidType": { "@id": "schema:StupidType" },
2213
- "SubscribeAction": { "@id": "schema:SubscribeAction" },
2214
- "Subscription": { "@id": "schema:Subscription" },
2215
- "Substance": { "@id": "schema:Substance" },
2216
- "SubwayStation": { "@id": "schema:SubwayStation" },
2217
- "Suite": { "@id": "schema:Suite" },
2218
- "Sunday": { "@id": "schema:Sunday" },
2219
- "SuperficialAnatomy": { "@id": "schema:SuperficialAnatomy" },
2220
- "Surgical": { "@id": "schema:Surgical" },
2221
- "SurgicalProcedure": { "@id": "schema:SurgicalProcedure" },
2222
- "SuspendAction": { "@id": "schema:SuspendAction" },
2223
- "Suspended": { "@id": "schema:Suspended" },
2224
- "Syllabus": { "@id": "schema:Syllabus" },
2225
- "SymptomsHealthAspect": { "@id": "schema:SymptomsHealthAspect" },
2226
- "Synagogue": { "@id": "schema:Synagogue" },
2227
- "TVClip": { "@id": "schema:TVClip" },
2228
- "TVEpisode": { "@id": "schema:TVEpisode" },
2229
- "TVSeason": { "@id": "schema:TVSeason" },
2230
- "TVSeries": { "@id": "schema:TVSeries" },
2231
- "Table": { "@id": "schema:Table" },
2232
- "TakeAction": { "@id": "schema:TakeAction" },
2233
- "TattooParlor": { "@id": "schema:TattooParlor" },
2234
- "Taxi": { "@id": "schema:Taxi" },
2235
- "TaxiReservation": { "@id": "schema:TaxiReservation" },
2236
- "TaxiService": { "@id": "schema:TaxiService" },
2237
- "TaxiStand": { "@id": "schema:TaxiStand" },
2238
- "TaxiVehicleUsage": { "@id": "schema:TaxiVehicleUsage" },
2239
- "Taxon": { "@id": "schema:Taxon" },
2240
- "TechArticle": { "@id": "schema:TechArticle" },
2241
- "TelevisionChannel": { "@id": "schema:TelevisionChannel" },
2242
- "TelevisionStation": { "@id": "schema:TelevisionStation" },
2243
- "TennisComplex": { "@id": "schema:TennisComplex" },
2244
- "Terminated": { "@id": "schema:Terminated" },
2245
- "Text": { "@id": "schema:Text" },
2246
- "TextDigitalDocument": { "@id": "schema:TextDigitalDocument" },
2247
- "TextObject": { "@id": "schema:TextObject" },
2248
- "TheaterEvent": { "@id": "schema:TheaterEvent" },
2249
- "TheaterGroup": { "@id": "schema:TheaterGroup" },
2250
- "Therapeutic": { "@id": "schema:Therapeutic" },
2251
- "TherapeuticProcedure": { "@id": "schema:TherapeuticProcedure" },
2252
- "Thesis": { "@id": "schema:Thesis" },
2253
- "Thing": { "@id": "schema:Thing" },
2254
- "Throat": { "@id": "schema:Throat" },
2255
- "Thursday": { "@id": "schema:Thursday" },
2256
- "Ticket": { "@id": "schema:Ticket" },
2257
- "TieAction": { "@id": "schema:TieAction" },
2258
- "TierBenefitEnumeration": { "@id": "schema:TierBenefitEnumeration" },
2259
- "TierBenefitLoyaltyPoints": { "@id": "schema:TierBenefitLoyaltyPoints" },
2260
- "TierBenefitLoyaltyPrice": { "@id": "schema:TierBenefitLoyaltyPrice" },
2261
- "TierBenefitLoyaltyReturns": {
2262
- "@id": "schema:TierBenefitLoyaltyReturns",
2263
- },
2264
- "TierBenefitLoyaltyShipping": {
2265
- "@id": "schema:TierBenefitLoyaltyShipping",
2266
- },
2267
- "Time": { "@id": "schema:Time" },
2268
- "TipAction": { "@id": "schema:TipAction" },
2269
- "TireShop": { "@id": "schema:TireShop" },
2270
- "TobaccoNicotineConsideration": {
2271
- "@id": "schema:TobaccoNicotineConsideration",
2272
- },
2273
- "TollFree": { "@id": "schema:TollFree" },
2274
- "TouristAttraction": { "@id": "schema:TouristAttraction" },
2275
- "TouristDestination": { "@id": "schema:TouristDestination" },
2276
- "TouristInformationCenter": { "@id": "schema:TouristInformationCenter" },
2277
- "TouristTrip": { "@id": "schema:TouristTrip" },
2278
- "Toxicologic": { "@id": "schema:Toxicologic" },
2279
- "ToyStore": { "@id": "schema:ToyStore" },
2280
- "TrackAction": { "@id": "schema:TrackAction" },
2281
- "TradeAction": { "@id": "schema:TradeAction" },
2282
- "TraditionalChinese": { "@id": "schema:TraditionalChinese" },
2283
- "TrainReservation": { "@id": "schema:TrainReservation" },
2284
- "TrainStation": { "@id": "schema:TrainStation" },
2285
- "TrainTrip": { "@id": "schema:TrainTrip" },
2286
- "TrainedAlgorithmicMediaDigitalSource": {
2287
- "@id": "schema:TrainedAlgorithmicMediaDigitalSource",
2288
- },
2289
- "TransferAction": { "@id": "schema:TransferAction" },
2290
- "TransformedContent": { "@id": "schema:TransformedContent" },
2291
- "TransitMap": { "@id": "schema:TransitMap" },
2292
- "TravelAction": { "@id": "schema:TravelAction" },
2293
- "TravelAgency": { "@id": "schema:TravelAgency" },
2294
- "TreatmentIndication": { "@id": "schema:TreatmentIndication" },
2295
- "TreatmentsHealthAspect": { "@id": "schema:TreatmentsHealthAspect" },
2296
- "Trip": { "@id": "schema:Trip" },
2297
- "TripleBlindedTrial": { "@id": "schema:TripleBlindedTrial" },
2298
- "True": { "@id": "schema:True" },
2299
- "Tuesday": { "@id": "schema:Tuesday" },
2300
- "TypeAndQuantityNode": { "@id": "schema:TypeAndQuantityNode" },
2301
- "TypesHealthAspect": { "@id": "schema:TypesHealthAspect" },
2302
- "UKNonprofitType": { "@id": "schema:UKNonprofitType" },
2303
- "UKTrust": { "@id": "schema:UKTrust" },
2304
- "URL": { "@id": "schema:URL" },
2305
- "USNonprofitType": { "@id": "schema:USNonprofitType" },
2306
- "Ultrasound": { "@id": "schema:Ultrasound" },
2307
- "UnRegisterAction": { "@id": "schema:UnRegisterAction" },
2308
- "UnclassifiedAdultConsideration": {
2309
- "@id": "schema:UnclassifiedAdultConsideration",
2310
- },
2311
- "UnemploymentSupport": { "@id": "schema:UnemploymentSupport" },
2312
- "UnincorporatedAssociationCharity": {
2313
- "@id": "schema:UnincorporatedAssociationCharity",
2314
- },
2315
- "UnitPriceSpecification": { "@id": "schema:UnitPriceSpecification" },
2316
- "UnofficialLegalValue": { "@id": "schema:UnofficialLegalValue" },
2317
- "UpdateAction": { "@id": "schema:UpdateAction" },
2318
- "Urologic": { "@id": "schema:Urologic" },
2319
- "UsageOrScheduleHealthAspect": {
2320
- "@id": "schema:UsageOrScheduleHealthAspect",
2321
- },
2322
- "UseAction": { "@id": "schema:UseAction" },
2323
- "UsedCondition": { "@id": "schema:UsedCondition" },
2324
- "UserBlocks": { "@id": "schema:UserBlocks" },
2325
- "UserCheckins": { "@id": "schema:UserCheckins" },
2326
- "UserComments": { "@id": "schema:UserComments" },
2327
- "UserDownloads": { "@id": "schema:UserDownloads" },
2328
- "UserInteraction": { "@id": "schema:UserInteraction" },
2329
- "UserLikes": { "@id": "schema:UserLikes" },
2330
- "UserPageVisits": { "@id": "schema:UserPageVisits" },
2331
- "UserPlays": { "@id": "schema:UserPlays" },
2332
- "UserPlusOnes": { "@id": "schema:UserPlusOnes" },
2333
- "UserReview": { "@id": "schema:UserReview" },
2334
- "UserTweets": { "@id": "schema:UserTweets" },
2335
- "VacationRental": { "@id": "schema:VacationRental" },
2336
- "VeganDiet": { "@id": "schema:VeganDiet" },
2337
- "VegetarianDiet": { "@id": "schema:VegetarianDiet" },
2338
- "Vehicle": { "@id": "schema:Vehicle" },
2339
- "Vein": { "@id": "schema:Vein" },
2340
- "VenueMap": { "@id": "schema:VenueMap" },
2341
- "Vessel": { "@id": "schema:Vessel" },
2342
- "VeterinaryCare": { "@id": "schema:VeterinaryCare" },
2343
- "VideoGallery": { "@id": "schema:VideoGallery" },
2344
- "VideoGame": { "@id": "schema:VideoGame" },
2345
- "VideoGameClip": { "@id": "schema:VideoGameClip" },
2346
- "VideoGameSeries": { "@id": "schema:VideoGameSeries" },
2347
- "VideoObject": { "@id": "schema:VideoObject" },
2348
- "VideoObjectSnapshot": { "@id": "schema:VideoObjectSnapshot" },
2349
- "ViewAction": { "@id": "schema:ViewAction" },
2350
- "VinylFormat": { "@id": "schema:VinylFormat" },
2351
- "ViolenceConsideration": { "@id": "schema:ViolenceConsideration" },
2352
- "VirtualLocation": { "@id": "schema:VirtualLocation" },
2353
- "VirtualRecordingDigitalSource": {
2354
- "@id": "schema:VirtualRecordingDigitalSource",
2355
- },
2356
- "Virus": { "@id": "schema:Virus" },
2357
- "VisualArtsEvent": { "@id": "schema:VisualArtsEvent" },
2358
- "VisualArtwork": { "@id": "schema:VisualArtwork" },
2359
- "VitalSign": { "@id": "schema:VitalSign" },
2360
- "Volcano": { "@id": "schema:Volcano" },
2361
- "VoteAction": { "@id": "schema:VoteAction" },
2362
- "WPAdBlock": { "@id": "schema:WPAdBlock" },
2363
- "WPFooter": { "@id": "schema:WPFooter" },
2364
- "WPHeader": { "@id": "schema:WPHeader" },
2365
- "WPSideBar": { "@id": "schema:WPSideBar" },
2366
- "WantAction": { "@id": "schema:WantAction" },
2367
- "WarrantyPromise": { "@id": "schema:WarrantyPromise" },
2368
- "WarrantyScope": { "@id": "schema:WarrantyScope" },
2369
- "WatchAction": { "@id": "schema:WatchAction" },
2370
- "Waterfall": { "@id": "schema:Waterfall" },
2371
- "WeaponConsideration": { "@id": "schema:WeaponConsideration" },
2372
- "WearAction": { "@id": "schema:WearAction" },
2373
- "WearableMeasurementBack": { "@id": "schema:WearableMeasurementBack" },
2374
- "WearableMeasurementChestOrBust": {
2375
- "@id": "schema:WearableMeasurementChestOrBust",
2376
- },
2377
- "WearableMeasurementCollar": {
2378
- "@id": "schema:WearableMeasurementCollar",
2379
- },
2380
- "WearableMeasurementCup": { "@id": "schema:WearableMeasurementCup" },
2381
- "WearableMeasurementHeight": {
2382
- "@id": "schema:WearableMeasurementHeight",
2383
- },
2384
- "WearableMeasurementHips": { "@id": "schema:WearableMeasurementHips" },
2385
- "WearableMeasurementInseam": {
2386
- "@id": "schema:WearableMeasurementInseam",
2387
- },
2388
- "WearableMeasurementLength": {
2389
- "@id": "schema:WearableMeasurementLength",
2390
- },
2391
- "WearableMeasurementOutsideLeg": {
2392
- "@id": "schema:WearableMeasurementOutsideLeg",
2393
- },
2394
- "WearableMeasurementSleeve": {
2395
- "@id": "schema:WearableMeasurementSleeve",
2396
- },
2397
- "WearableMeasurementTypeEnumeration": {
2398
- "@id": "schema:WearableMeasurementTypeEnumeration",
2399
- },
2400
- "WearableMeasurementWaist": { "@id": "schema:WearableMeasurementWaist" },
2401
- "WearableMeasurementWidth": { "@id": "schema:WearableMeasurementWidth" },
2402
- "WearableSizeGroupBig": { "@id": "schema:WearableSizeGroupBig" },
2403
- "WearableSizeGroupBoys": { "@id": "schema:WearableSizeGroupBoys" },
2404
- "WearableSizeGroupEnumeration": {
2405
- "@id": "schema:WearableSizeGroupEnumeration",
2406
- },
2407
- "WearableSizeGroupExtraShort": {
2408
- "@id": "schema:WearableSizeGroupExtraShort",
2409
- },
2410
- "WearableSizeGroupExtraTall": {
2411
- "@id": "schema:WearableSizeGroupExtraTall",
2412
- },
2413
- "WearableSizeGroupGirls": { "@id": "schema:WearableSizeGroupGirls" },
2414
- "WearableSizeGroupHusky": { "@id": "schema:WearableSizeGroupHusky" },
2415
- "WearableSizeGroupInfants": { "@id": "schema:WearableSizeGroupInfants" },
2416
- "WearableSizeGroupJuniors": { "@id": "schema:WearableSizeGroupJuniors" },
2417
- "WearableSizeGroupMaternity": {
2418
- "@id": "schema:WearableSizeGroupMaternity",
2419
- },
2420
- "WearableSizeGroupMens": { "@id": "schema:WearableSizeGroupMens" },
2421
- "WearableSizeGroupMisses": { "@id": "schema:WearableSizeGroupMisses" },
2422
- "WearableSizeGroupPetite": { "@id": "schema:WearableSizeGroupPetite" },
2423
- "WearableSizeGroupPlus": { "@id": "schema:WearableSizeGroupPlus" },
2424
- "WearableSizeGroupRegular": { "@id": "schema:WearableSizeGroupRegular" },
2425
- "WearableSizeGroupShort": { "@id": "schema:WearableSizeGroupShort" },
2426
- "WearableSizeGroupTall": { "@id": "schema:WearableSizeGroupTall" },
2427
- "WearableSizeGroupWomens": { "@id": "schema:WearableSizeGroupWomens" },
2428
- "WearableSizeSystemAU": { "@id": "schema:WearableSizeSystemAU" },
2429
- "WearableSizeSystemBR": { "@id": "schema:WearableSizeSystemBR" },
2430
- "WearableSizeSystemCN": { "@id": "schema:WearableSizeSystemCN" },
2431
- "WearableSizeSystemContinental": {
2432
- "@id": "schema:WearableSizeSystemContinental",
2433
- },
2434
- "WearableSizeSystemDE": { "@id": "schema:WearableSizeSystemDE" },
2435
- "WearableSizeSystemEN13402": {
2436
- "@id": "schema:WearableSizeSystemEN13402",
2437
- },
2438
- "WearableSizeSystemEnumeration": {
2439
- "@id": "schema:WearableSizeSystemEnumeration",
2440
- },
2441
- "WearableSizeSystemEurope": { "@id": "schema:WearableSizeSystemEurope" },
2442
- "WearableSizeSystemFR": { "@id": "schema:WearableSizeSystemFR" },
2443
- "WearableSizeSystemGS1": { "@id": "schema:WearableSizeSystemGS1" },
2444
- "WearableSizeSystemIT": { "@id": "schema:WearableSizeSystemIT" },
2445
- "WearableSizeSystemJP": { "@id": "schema:WearableSizeSystemJP" },
2446
- "WearableSizeSystemMX": { "@id": "schema:WearableSizeSystemMX" },
2447
- "WearableSizeSystemUK": { "@id": "schema:WearableSizeSystemUK" },
2448
- "WearableSizeSystemUS": { "@id": "schema:WearableSizeSystemUS" },
2449
- "WebAPI": { "@id": "schema:WebAPI" },
2450
- "WebApplication": { "@id": "schema:WebApplication" },
2451
- "WebContent": { "@id": "schema:WebContent" },
2452
- "WebPage": { "@id": "schema:WebPage" },
2453
- "WebPageElement": { "@id": "schema:WebPageElement" },
2454
- "WebSite": { "@id": "schema:WebSite" },
2455
- "Wednesday": { "@id": "schema:Wednesday" },
2456
- "WesternConventional": { "@id": "schema:WesternConventional" },
2457
- "Wholesale": { "@id": "schema:Wholesale" },
2458
- "WholesaleStore": { "@id": "schema:WholesaleStore" },
2459
- "WinAction": { "@id": "schema:WinAction" },
2460
- "Winery": { "@id": "schema:Winery" },
2461
- "Withdrawn": { "@id": "schema:Withdrawn" },
2462
- "WorkBasedProgram": { "@id": "schema:WorkBasedProgram" },
2463
- "WorkersUnion": { "@id": "schema:WorkersUnion" },
2464
- "WriteAction": { "@id": "schema:WriteAction" },
2465
- "WritePermission": { "@id": "schema:WritePermission" },
2466
- "XPathType": { "@id": "schema:XPathType" },
2467
- "XRay": { "@id": "schema:XRay" },
2468
- "ZoneBoardingPolicy": { "@id": "schema:ZoneBoardingPolicy" },
2469
- "Zoo": { "@id": "schema:Zoo" },
2470
- "about": { "@id": "schema:about" },
2471
- "abridged": { "@id": "schema:abridged" },
2472
- "abstract": { "@id": "schema:abstract" },
2473
- "accelerationTime": { "@id": "schema:accelerationTime" },
2474
- "acceptedAnswer": { "@id": "schema:acceptedAnswer" },
2475
- "acceptedOffer": { "@id": "schema:acceptedOffer" },
2476
- "acceptedPaymentMethod": { "@id": "schema:acceptedPaymentMethod" },
2477
- "acceptsReservations": { "@id": "schema:acceptsReservations" },
2478
- "accessCode": { "@id": "schema:accessCode" },
2479
- "accessMode": { "@id": "schema:accessMode" },
2480
- "accessModeSufficient": { "@id": "schema:accessModeSufficient" },
2481
- "accessibilityAPI": { "@id": "schema:accessibilityAPI" },
2482
- "accessibilityControl": { "@id": "schema:accessibilityControl" },
2483
- "accessibilityFeature": { "@id": "schema:accessibilityFeature" },
2484
- "accessibilityHazard": { "@id": "schema:accessibilityHazard" },
2485
- "accessibilitySummary": { "@id": "schema:accessibilitySummary" },
2486
- "accommodationCategory": { "@id": "schema:accommodationCategory" },
2487
- "accommodationFloorPlan": { "@id": "schema:accommodationFloorPlan" },
2488
- "accountId": { "@id": "schema:accountId" },
2489
- "accountMinimumInflow": { "@id": "schema:accountMinimumInflow" },
2490
- "accountOverdraftLimit": { "@id": "schema:accountOverdraftLimit" },
2491
- "accountablePerson": { "@id": "schema:accountablePerson" },
2492
- "acquireLicensePage": {
2493
- "@id": "schema:acquireLicensePage",
2494
- "@type": "@id",
2495
- },
2496
- "acquiredFrom": { "@id": "schema:acquiredFrom" },
2497
- "acrissCode": { "@id": "schema:acrissCode" },
2498
- "actionAccessibilityRequirement": {
2499
- "@id": "schema:actionAccessibilityRequirement",
2500
- },
2501
- "actionApplication": { "@id": "schema:actionApplication" },
2502
- "actionOption": { "@id": "schema:actionOption" },
2503
- "actionPlatform": { "@id": "schema:actionPlatform" },
2504
- "actionStatus": { "@id": "schema:actionStatus" },
2505
- "actionableFeedbackPolicy": {
2506
- "@id": "schema:actionableFeedbackPolicy",
2507
- "@type": "@id",
2508
- },
2509
- "activeIngredient": { "@id": "schema:activeIngredient" },
2510
- "activityDuration": { "@id": "schema:activityDuration" },
2511
- "activityFrequency": { "@id": "schema:activityFrequency" },
2512
- "actor": { "@id": "schema:actor" },
2513
- "actors": { "@id": "schema:actors" },
2514
- "addOn": { "@id": "schema:addOn" },
2515
- "additionalName": { "@id": "schema:additionalName" },
2516
- "additionalNumberOfGuests": { "@id": "schema:additionalNumberOfGuests" },
2517
- "additionalProperty": { "@id": "schema:additionalProperty" },
2518
- "additionalType": { "@id": "schema:additionalType" },
2519
- "additionalVariable": { "@id": "schema:additionalVariable" },
2520
- "address": { "@id": "schema:address" },
2521
- "addressCountry": { "@id": "schema:addressCountry" },
2522
- "addressLocality": { "@id": "schema:addressLocality" },
2523
- "addressRegion": { "@id": "schema:addressRegion" },
2524
- "administrationRoute": { "@id": "schema:administrationRoute" },
2525
- "advanceBookingRequirement": {
2526
- "@id": "schema:advanceBookingRequirement",
2527
- },
2528
- "adverseOutcome": { "@id": "schema:adverseOutcome" },
2529
- "affectedBy": { "@id": "schema:affectedBy" },
2530
- "affiliation": { "@id": "schema:affiliation" },
2531
- "afterMedia": { "@id": "schema:afterMedia", "@type": "@id" },
2532
- "agent": { "@id": "schema:agent" },
2533
- "agentInteractionStatistic": {
2534
- "@id": "schema:agentInteractionStatistic",
2535
- },
2536
- "aggregateRating": { "@id": "schema:aggregateRating" },
2537
- "aircraft": { "@id": "schema:aircraft" },
2538
- "album": { "@id": "schema:album" },
2539
- "albumProductionType": { "@id": "schema:albumProductionType" },
2540
- "albumRelease": { "@id": "schema:albumRelease" },
2541
- "albumReleaseType": { "@id": "schema:albumReleaseType" },
2542
- "albums": { "@id": "schema:albums" },
2543
- "alcoholWarning": { "@id": "schema:alcoholWarning" },
2544
- "algorithm": { "@id": "schema:algorithm" },
2545
- "alignmentType": { "@id": "schema:alignmentType" },
2546
- "alternateName": { "@id": "schema:alternateName" },
2547
- "alternativeHeadline": { "@id": "schema:alternativeHeadline" },
2548
- "alternativeOf": { "@id": "schema:alternativeOf" },
2549
- "alumni": { "@id": "schema:alumni" },
2550
- "alumniOf": { "@id": "schema:alumniOf" },
2551
- "amenityFeature": { "@id": "schema:amenityFeature" },
2552
- "amount": { "@id": "schema:amount" },
2553
- "amountOfThisGood": { "@id": "schema:amountOfThisGood" },
2554
- "announcementLocation": { "@id": "schema:announcementLocation" },
2555
- "annualPercentageRate": { "@id": "schema:annualPercentageRate" },
2556
- "answerCount": { "@id": "schema:answerCount" },
2557
- "answerExplanation": { "@id": "schema:answerExplanation" },
2558
- "antagonist": { "@id": "schema:antagonist" },
2559
- "appearance": { "@id": "schema:appearance" },
2560
- "applicableCountry": { "@id": "schema:applicableCountry" },
2561
- "applicableLocation": { "@id": "schema:applicableLocation" },
2562
- "applicantLocationRequirements": {
2563
- "@id": "schema:applicantLocationRequirements",
2564
- },
2565
- "application": { "@id": "schema:application" },
2566
- "applicationCategory": { "@id": "schema:applicationCategory" },
2567
- "applicationContact": { "@id": "schema:applicationContact" },
2568
- "applicationDeadline": {
2569
- "@id": "schema:applicationDeadline",
2570
- "@type": "Date",
2571
- },
2572
- "applicationStartDate": {
2573
- "@id": "schema:applicationStartDate",
2574
- "@type": "Date",
2575
- },
2576
- "applicationSubCategory": { "@id": "schema:applicationSubCategory" },
2577
- "applicationSuite": { "@id": "schema:applicationSuite" },
2578
- "appliesToDeliveryMethod": { "@id": "schema:appliesToDeliveryMethod" },
2579
- "appliesToPaymentMethod": { "@id": "schema:appliesToPaymentMethod" },
2580
- "archiveHeld": { "@id": "schema:archiveHeld" },
2581
- "archivedAt": { "@id": "schema:archivedAt", "@type": "@id" },
2582
- "area": { "@id": "schema:area" },
2583
- "areaServed": { "@id": "schema:areaServed" },
2584
- "arrivalAirport": { "@id": "schema:arrivalAirport" },
2585
- "arrivalBoatTerminal": { "@id": "schema:arrivalBoatTerminal" },
2586
- "arrivalBusStop": { "@id": "schema:arrivalBusStop" },
2587
- "arrivalGate": { "@id": "schema:arrivalGate" },
2588
- "arrivalPlatform": { "@id": "schema:arrivalPlatform" },
2589
- "arrivalStation": { "@id": "schema:arrivalStation" },
2590
- "arrivalTerminal": { "@id": "schema:arrivalTerminal" },
2591
- "arrivalTime": { "@id": "schema:arrivalTime" },
2592
- "artEdition": { "@id": "schema:artEdition" },
2593
- "artMedium": { "@id": "schema:artMedium" },
2594
- "arterialBranch": { "@id": "schema:arterialBranch" },
2595
- "artform": { "@id": "schema:artform" },
2596
- "articleBody": { "@id": "schema:articleBody" },
2597
- "articleSection": { "@id": "schema:articleSection" },
2598
- "artist": { "@id": "schema:artist" },
2599
- "artworkSurface": { "@id": "schema:artworkSurface" },
2600
- "asin": { "@id": "schema:asin" },
2601
- "aspect": { "@id": "schema:aspect" },
2602
- "assembly": { "@id": "schema:assembly" },
2603
- "assemblyVersion": { "@id": "schema:assemblyVersion" },
2604
- "assesses": { "@id": "schema:assesses" },
2605
- "associatedAnatomy": { "@id": "schema:associatedAnatomy" },
2606
- "associatedArticle": { "@id": "schema:associatedArticle" },
2607
- "associatedClaimReview": { "@id": "schema:associatedClaimReview" },
2608
- "associatedDisease": {
2609
- "@id": "schema:associatedDisease",
2610
- "@type": "@id",
2611
- },
2612
- "associatedMedia": { "@id": "schema:associatedMedia" },
2613
- "associatedMediaReview": { "@id": "schema:associatedMediaReview" },
2614
- "associatedPathophysiology": {
2615
- "@id": "schema:associatedPathophysiology",
2616
- },
2617
- "associatedReview": { "@id": "schema:associatedReview" },
2618
- "athlete": { "@id": "schema:athlete" },
2619
- "attendee": { "@id": "schema:attendee" },
2620
- "attendees": { "@id": "schema:attendees" },
2621
- "audience": { "@id": "schema:audience" },
2622
- "audienceType": { "@id": "schema:audienceType" },
2623
- "audio": { "@id": "schema:audio" },
2624
- "auditDate": { "@id": "schema:auditDate", "@type": "Date" },
2625
- "authenticator": { "@id": "schema:authenticator" },
2626
- "author": { "@id": "schema:author" },
2627
- "availability": { "@id": "schema:availability" },
2628
- "availabilityEnds": { "@id": "schema:availabilityEnds", "@type": "Date" },
2629
- "availabilityStarts": {
2630
- "@id": "schema:availabilityStarts",
2631
- "@type": "Date",
2632
- },
2633
- "availableAtOrFrom": { "@id": "schema:availableAtOrFrom" },
2634
- "availableChannel": { "@id": "schema:availableChannel" },
2635
- "availableDeliveryMethod": { "@id": "schema:availableDeliveryMethod" },
2636
- "availableFrom": { "@id": "schema:availableFrom" },
2637
- "availableIn": { "@id": "schema:availableIn" },
2638
- "availableLanguage": { "@id": "schema:availableLanguage" },
2639
- "availableOnDevice": { "@id": "schema:availableOnDevice" },
2640
- "availableService": { "@id": "schema:availableService" },
2641
- "availableStrength": { "@id": "schema:availableStrength" },
2642
- "availableTest": { "@id": "schema:availableTest" },
2643
- "availableThrough": { "@id": "schema:availableThrough" },
2644
- "award": { "@id": "schema:award" },
2645
- "awards": { "@id": "schema:awards" },
2646
- "awayTeam": { "@id": "schema:awayTeam" },
2647
- "backstory": { "@id": "schema:backstory" },
2648
- "bankAccountType": { "@id": "schema:bankAccountType" },
2649
- "baseSalary": { "@id": "schema:baseSalary" },
2650
- "bccRecipient": { "@id": "schema:bccRecipient" },
2651
- "bed": { "@id": "schema:bed" },
2652
- "beforeMedia": { "@id": "schema:beforeMedia", "@type": "@id" },
2653
- "beneficiaryBank": { "@id": "schema:beneficiaryBank" },
2654
- "benefits": { "@id": "schema:benefits" },
2655
- "benefitsSummaryUrl": {
2656
- "@id": "schema:benefitsSummaryUrl",
2657
- "@type": "@id",
2658
- },
2659
- "bestRating": { "@id": "schema:bestRating" },
2660
- "billingAddress": { "@id": "schema:billingAddress" },
2661
- "billingDuration": { "@id": "schema:billingDuration" },
2662
- "billingIncrement": { "@id": "schema:billingIncrement" },
2663
- "billingPeriod": { "@id": "schema:billingPeriod" },
2664
- "billingStart": { "@id": "schema:billingStart" },
2665
- "bioChemInteraction": { "@id": "schema:bioChemInteraction" },
2666
- "bioChemSimilarity": { "@id": "schema:bioChemSimilarity" },
2667
- "biologicalRole": { "@id": "schema:biologicalRole" },
2668
- "biomechnicalClass": { "@id": "schema:biomechnicalClass" },
2669
- "birthDate": { "@id": "schema:birthDate", "@type": "Date" },
2670
- "birthPlace": { "@id": "schema:birthPlace" },
2671
- "bitrate": { "@id": "schema:bitrate" },
2672
- "blogPost": { "@id": "schema:blogPost" },
2673
- "blogPosts": { "@id": "schema:blogPosts" },
2674
- "bloodSupply": { "@id": "schema:bloodSupply" },
2675
- "boardingGroup": { "@id": "schema:boardingGroup" },
2676
- "boardingPolicy": { "@id": "schema:boardingPolicy" },
2677
- "bodyLocation": { "@id": "schema:bodyLocation" },
2678
- "bodyType": { "@id": "schema:bodyType" },
2679
- "bookEdition": { "@id": "schema:bookEdition" },
2680
- "bookFormat": { "@id": "schema:bookFormat" },
2681
- "bookingAgent": { "@id": "schema:bookingAgent" },
2682
- "bookingTime": { "@id": "schema:bookingTime" },
2683
- "borrower": { "@id": "schema:borrower" },
2684
- "box": { "@id": "schema:box" },
2685
- "branch": { "@id": "schema:branch" },
2686
- "branchCode": { "@id": "schema:branchCode" },
2687
- "branchOf": { "@id": "schema:branchOf" },
2688
- "brand": { "@id": "schema:brand" },
2689
- "breadcrumb": { "@id": "schema:breadcrumb" },
2690
- "breastfeedingWarning": { "@id": "schema:breastfeedingWarning" },
2691
- "broadcastAffiliateOf": { "@id": "schema:broadcastAffiliateOf" },
2692
- "broadcastChannelId": { "@id": "schema:broadcastChannelId" },
2693
- "broadcastDisplayName": { "@id": "schema:broadcastDisplayName" },
2694
- "broadcastFrequency": { "@id": "schema:broadcastFrequency" },
2695
- "broadcastFrequencyValue": { "@id": "schema:broadcastFrequencyValue" },
2696
- "broadcastOfEvent": { "@id": "schema:broadcastOfEvent" },
2697
- "broadcastServiceTier": { "@id": "schema:broadcastServiceTier" },
2698
- "broadcastSignalModulation": {
2699
- "@id": "schema:broadcastSignalModulation",
2700
- },
2701
- "broadcastSubChannel": { "@id": "schema:broadcastSubChannel" },
2702
- "broadcastTimezone": { "@id": "schema:broadcastTimezone" },
2703
- "broadcaster": { "@id": "schema:broadcaster" },
2704
- "broker": { "@id": "schema:broker" },
2705
- "browserRequirements": { "@id": "schema:browserRequirements" },
2706
- "busName": { "@id": "schema:busName" },
2707
- "busNumber": { "@id": "schema:busNumber" },
2708
- "businessDays": { "@id": "schema:businessDays" },
2709
- "businessFunction": { "@id": "schema:businessFunction" },
2710
- "buyer": { "@id": "schema:buyer" },
2711
- "byArtist": { "@id": "schema:byArtist" },
2712
- "byDay": { "@id": "schema:byDay" },
2713
- "byMonth": { "@id": "schema:byMonth" },
2714
- "byMonthDay": { "@id": "schema:byMonthDay" },
2715
- "byMonthWeek": { "@id": "schema:byMonthWeek" },
2716
- "callSign": { "@id": "schema:callSign" },
2717
- "calories": { "@id": "schema:calories" },
2718
- "candidate": { "@id": "schema:candidate" },
2719
- "caption": { "@id": "schema:caption" },
2720
- "carbohydrateContent": { "@id": "schema:carbohydrateContent" },
2721
- "cargoVolume": { "@id": "schema:cargoVolume" },
2722
- "carrier": { "@id": "schema:carrier" },
2723
- "carrierRequirements": { "@id": "schema:carrierRequirements" },
2724
- "cashBack": { "@id": "schema:cashBack" },
2725
- "catalog": { "@id": "schema:catalog" },
2726
- "catalogNumber": { "@id": "schema:catalogNumber" },
2727
- "category": { "@id": "schema:category" },
2728
- "causeOf": { "@id": "schema:causeOf" },
2729
- "ccRecipient": { "@id": "schema:ccRecipient" },
2730
- "certificationIdentification": {
2731
- "@id": "schema:certificationIdentification",
2732
- },
2733
- "certificationRating": { "@id": "schema:certificationRating" },
2734
- "certificationStatus": { "@id": "schema:certificationStatus" },
2735
- "character": { "@id": "schema:character" },
2736
- "characterAttribute": { "@id": "schema:characterAttribute" },
2737
- "characterName": { "@id": "schema:characterName" },
2738
- "cheatCode": { "@id": "schema:cheatCode" },
2739
- "checkinTime": { "@id": "schema:checkinTime" },
2740
- "checkoutPageURLTemplate": { "@id": "schema:checkoutPageURLTemplate" },
2741
- "checkoutTime": { "@id": "schema:checkoutTime" },
2742
- "chemicalComposition": { "@id": "schema:chemicalComposition" },
2743
- "chemicalRole": { "@id": "schema:chemicalRole" },
2744
- "childMaxAge": { "@id": "schema:childMaxAge" },
2745
- "childMinAge": { "@id": "schema:childMinAge" },
2746
- "childTaxon": { "@id": "schema:childTaxon" },
2747
- "children": { "@id": "schema:children" },
2748
- "cholesterolContent": { "@id": "schema:cholesterolContent" },
2749
- "circle": { "@id": "schema:circle" },
2750
- "citation": { "@id": "schema:citation" },
2751
- "claimInterpreter": { "@id": "schema:claimInterpreter" },
2752
- "claimReviewed": { "@id": "schema:claimReviewed" },
2753
- "clincalPharmacology": { "@id": "schema:clincalPharmacology" },
2754
- "clinicalPharmacology": { "@id": "schema:clinicalPharmacology" },
2755
- "clipNumber": { "@id": "schema:clipNumber" },
2756
- "closes": { "@id": "schema:closes" },
2757
- "coach": { "@id": "schema:coach" },
2758
- "code": { "@id": "schema:code" },
2759
- "codeRepository": { "@id": "schema:codeRepository", "@type": "@id" },
2760
- "codeSampleType": { "@id": "schema:codeSampleType" },
2761
- "codeValue": { "@id": "schema:codeValue" },
2762
- "codingSystem": { "@id": "schema:codingSystem" },
2763
- "colleague": { "@id": "schema:colleague", "@type": "@id" },
2764
- "colleagues": { "@id": "schema:colleagues" },
2765
- "collection": { "@id": "schema:collection" },
2766
- "collectionSize": { "@id": "schema:collectionSize" },
2767
- "color": { "@id": "schema:color" },
2768
- "colorSwatch": { "@id": "schema:colorSwatch", "@type": "@id" },
2769
- "colorist": { "@id": "schema:colorist" },
2770
- "comment": { "@id": "schema:comment" },
2771
- "commentCount": { "@id": "schema:commentCount" },
2772
- "commentText": { "@id": "schema:commentText" },
2773
- "commentTime": { "@id": "schema:commentTime", "@type": "Date" },
2774
- "competencyRequired": { "@id": "schema:competencyRequired" },
2775
- "competitor": { "@id": "schema:competitor" },
2776
- "composer": { "@id": "schema:composer" },
2777
- "comprisedOf": { "@id": "schema:comprisedOf" },
2778
- "conditionsOfAccess": { "@id": "schema:conditionsOfAccess" },
2779
- "confirmationNumber": { "@id": "schema:confirmationNumber" },
2780
- "connectedTo": { "@id": "schema:connectedTo" },
2781
- "constraintProperty": {
2782
- "@id": "schema:constraintProperty",
2783
- "@type": "@id",
2784
- },
2785
- "contactOption": { "@id": "schema:contactOption" },
2786
- "contactPoint": { "@id": "schema:contactPoint" },
2787
- "contactPoints": { "@id": "schema:contactPoints" },
2788
- "contactType": { "@id": "schema:contactType" },
2789
- "contactlessPayment": { "@id": "schema:contactlessPayment" },
2790
- "containedIn": { "@id": "schema:containedIn" },
2791
- "containedInPlace": { "@id": "schema:containedInPlace" },
2792
- "containsPlace": { "@id": "schema:containsPlace" },
2793
- "containsSeason": { "@id": "schema:containsSeason" },
2794
- "contentLocation": { "@id": "schema:contentLocation" },
2795
- "contentRating": { "@id": "schema:contentRating" },
2796
- "contentReferenceTime": { "@id": "schema:contentReferenceTime" },
2797
- "contentSize": { "@id": "schema:contentSize" },
2798
- "contentType": { "@id": "schema:contentType" },
2799
- "contentUrl": { "@id": "schema:contentUrl", "@type": "@id" },
2800
- "contraindication": { "@id": "schema:contraindication" },
2801
- "contributor": { "@id": "schema:contributor" },
2802
- "cookTime": { "@id": "schema:cookTime" },
2803
- "cookingMethod": { "@id": "schema:cookingMethod" },
2804
- "copyrightHolder": { "@id": "schema:copyrightHolder" },
2805
- "copyrightNotice": { "@id": "schema:copyrightNotice" },
2806
- "copyrightYear": { "@id": "schema:copyrightYear" },
2807
- "correction": { "@id": "schema:correction" },
2808
- "correctionsPolicy": {
2809
- "@id": "schema:correctionsPolicy",
2810
- "@type": "@id",
2811
- },
2812
- "costCategory": { "@id": "schema:costCategory" },
2813
- "costCurrency": { "@id": "schema:costCurrency" },
2814
- "costOrigin": { "@id": "schema:costOrigin" },
2815
- "costPerUnit": { "@id": "schema:costPerUnit" },
2816
- "countriesNotSupported": { "@id": "schema:countriesNotSupported" },
2817
- "countriesSupported": { "@id": "schema:countriesSupported" },
2818
- "countryOfAssembly": { "@id": "schema:countryOfAssembly" },
2819
- "countryOfLastProcessing": { "@id": "schema:countryOfLastProcessing" },
2820
- "countryOfOrigin": { "@id": "schema:countryOfOrigin" },
2821
- "course": { "@id": "schema:course" },
2822
- "courseCode": { "@id": "schema:courseCode" },
2823
- "courseMode": { "@id": "schema:courseMode" },
2824
- "coursePrerequisites": { "@id": "schema:coursePrerequisites" },
2825
- "courseSchedule": { "@id": "schema:courseSchedule" },
2826
- "courseWorkload": { "@id": "schema:courseWorkload" },
2827
- "coverageEndTime": { "@id": "schema:coverageEndTime" },
2828
- "coverageStartTime": { "@id": "schema:coverageStartTime" },
2829
- "creativeWorkStatus": { "@id": "schema:creativeWorkStatus" },
2830
- "creator": { "@id": "schema:creator" },
2831
- "credentialCategory": { "@id": "schema:credentialCategory" },
2832
- "creditText": { "@id": "schema:creditText" },
2833
- "creditedTo": { "@id": "schema:creditedTo" },
2834
- "cssSelector": { "@id": "schema:cssSelector" },
2835
- "currenciesAccepted": { "@id": "schema:currenciesAccepted" },
2836
- "currency": { "@id": "schema:currency" },
2837
- "currentExchangeRate": { "@id": "schema:currentExchangeRate" },
2838
- "customer": { "@id": "schema:customer" },
2839
- "customerRemorseReturnFees": {
2840
- "@id": "schema:customerRemorseReturnFees",
2841
- },
2842
- "customerRemorseReturnLabelSource": {
2843
- "@id": "schema:customerRemorseReturnLabelSource",
2844
- },
2845
- "customerRemorseReturnShippingFeesAmount": {
2846
- "@id": "schema:customerRemorseReturnShippingFeesAmount",
2847
- },
2848
- "cutoffTime": { "@id": "schema:cutoffTime" },
2849
- "cvdCollectionDate": { "@id": "schema:cvdCollectionDate" },
2850
- "cvdFacilityCounty": { "@id": "schema:cvdFacilityCounty" },
2851
- "cvdFacilityId": { "@id": "schema:cvdFacilityId" },
2852
- "cvdNumBeds": { "@id": "schema:cvdNumBeds" },
2853
- "cvdNumBedsOcc": { "@id": "schema:cvdNumBedsOcc" },
2854
- "cvdNumC19Died": { "@id": "schema:cvdNumC19Died" },
2855
- "cvdNumC19HOPats": { "@id": "schema:cvdNumC19HOPats" },
2856
- "cvdNumC19HospPats": { "@id": "schema:cvdNumC19HospPats" },
2857
- "cvdNumC19MechVentPats": { "@id": "schema:cvdNumC19MechVentPats" },
2858
- "cvdNumC19OFMechVentPats": { "@id": "schema:cvdNumC19OFMechVentPats" },
2859
- "cvdNumC19OverflowPats": { "@id": "schema:cvdNumC19OverflowPats" },
2860
- "cvdNumICUBeds": { "@id": "schema:cvdNumICUBeds" },
2861
- "cvdNumICUBedsOcc": { "@id": "schema:cvdNumICUBedsOcc" },
2862
- "cvdNumTotBeds": { "@id": "schema:cvdNumTotBeds" },
2863
- "cvdNumVent": { "@id": "schema:cvdNumVent" },
2864
- "cvdNumVentUse": { "@id": "schema:cvdNumVentUse" },
2865
- "dataFeedElement": { "@id": "schema:dataFeedElement" },
2866
- "dataset": { "@id": "schema:dataset" },
2867
- "datasetTimeInterval": { "@id": "schema:datasetTimeInterval" },
2868
- "dateCreated": { "@id": "schema:dateCreated", "@type": "Date" },
2869
- "dateDeleted": { "@id": "schema:dateDeleted", "@type": "Date" },
2870
- "dateIssued": { "@id": "schema:dateIssued", "@type": "Date" },
2871
- "dateModified": { "@id": "schema:dateModified", "@type": "Date" },
2872
- "datePosted": { "@id": "schema:datePosted", "@type": "Date" },
2873
- "datePublished": { "@id": "schema:datePublished", "@type": "Date" },
2874
- "dateRead": { "@id": "schema:dateRead", "@type": "Date" },
2875
- "dateReceived": { "@id": "schema:dateReceived" },
2876
- "dateSent": { "@id": "schema:dateSent" },
2877
- "dateVehicleFirstRegistered": {
2878
- "@id": "schema:dateVehicleFirstRegistered",
2879
- "@type": "Date",
2880
- },
2881
- "dateline": { "@id": "schema:dateline" },
2882
- "dayOfWeek": { "@id": "schema:dayOfWeek" },
2883
- "deathDate": { "@id": "schema:deathDate", "@type": "Date" },
2884
- "deathPlace": { "@id": "schema:deathPlace" },
2885
- "defaultValue": { "@id": "schema:defaultValue" },
2886
- "deliveryAddress": { "@id": "schema:deliveryAddress" },
2887
- "deliveryLeadTime": { "@id": "schema:deliveryLeadTime" },
2888
- "deliveryMethod": { "@id": "schema:deliveryMethod" },
2889
- "deliveryStatus": { "@id": "schema:deliveryStatus" },
2890
- "deliveryTime": { "@id": "schema:deliveryTime" },
2891
- "department": { "@id": "schema:department" },
2892
- "departureAirport": { "@id": "schema:departureAirport" },
2893
- "departureBoatTerminal": { "@id": "schema:departureBoatTerminal" },
2894
- "departureBusStop": { "@id": "schema:departureBusStop" },
2895
- "departureGate": { "@id": "schema:departureGate" },
2896
- "departurePlatform": { "@id": "schema:departurePlatform" },
2897
- "departureStation": { "@id": "schema:departureStation" },
2898
- "departureTerminal": { "@id": "schema:departureTerminal" },
2899
- "departureTime": { "@id": "schema:departureTime" },
2900
- "dependencies": { "@id": "schema:dependencies" },
2901
- "depth": { "@id": "schema:depth" },
2902
- "description": { "@id": "schema:description" },
2903
- "device": { "@id": "schema:device" },
2904
- "diagnosis": { "@id": "schema:diagnosis" },
2905
- "diagram": { "@id": "schema:diagram" },
2906
- "diet": { "@id": "schema:diet" },
2907
- "dietFeatures": { "@id": "schema:dietFeatures" },
2908
- "differentialDiagnosis": { "@id": "schema:differentialDiagnosis" },
2909
- "digitalSourceType": { "@id": "schema:digitalSourceType" },
2910
- "directApply": { "@id": "schema:directApply" },
2911
- "director": { "@id": "schema:director" },
2912
- "directors": { "@id": "schema:directors" },
2913
- "disambiguatingDescription": {
2914
- "@id": "schema:disambiguatingDescription",
2915
- },
2916
- "discount": { "@id": "schema:discount" },
2917
- "discountCode": { "@id": "schema:discountCode" },
2918
- "discountCurrency": { "@id": "schema:discountCurrency" },
2919
- "discusses": { "@id": "schema:discusses" },
2920
- "discussionUrl": { "@id": "schema:discussionUrl", "@type": "@id" },
2921
- "diseasePreventionInfo": {
2922
- "@id": "schema:diseasePreventionInfo",
2923
- "@type": "@id",
2924
- },
2925
- "diseaseSpreadStatistics": {
2926
- "@id": "schema:diseaseSpreadStatistics",
2927
- "@type": "@id",
2928
- },
2929
- "dissolutionDate": { "@id": "schema:dissolutionDate", "@type": "Date" },
2930
- "distance": { "@id": "schema:distance" },
2931
- "distinguishingSign": { "@id": "schema:distinguishingSign" },
2932
- "distribution": { "@id": "schema:distribution" },
2933
- "diversityPolicy": { "@id": "schema:diversityPolicy", "@type": "@id" },
2934
- "diversityStaffingReport": {
2935
- "@id": "schema:diversityStaffingReport",
2936
- "@type": "@id",
2937
- },
2938
- "documentation": { "@id": "schema:documentation", "@type": "@id" },
2939
- "doesNotShip": { "@id": "schema:doesNotShip" },
2940
- "domainIncludes": { "@id": "schema:domainIncludes" },
2941
- "domiciledMortgage": { "@id": "schema:domiciledMortgage" },
2942
- "doorTime": { "@id": "schema:doorTime" },
2943
- "dosageForm": { "@id": "schema:dosageForm" },
2944
- "doseSchedule": { "@id": "schema:doseSchedule" },
2945
- "doseUnit": { "@id": "schema:doseUnit" },
2946
- "doseValue": { "@id": "schema:doseValue" },
2947
- "downPayment": { "@id": "schema:downPayment" },
2948
- "downloadUrl": { "@id": "schema:downloadUrl", "@type": "@id" },
2949
- "downvoteCount": { "@id": "schema:downvoteCount" },
2950
- "drainsTo": { "@id": "schema:drainsTo" },
2951
- "driveWheelConfiguration": { "@id": "schema:driveWheelConfiguration" },
2952
- "dropoffLocation": { "@id": "schema:dropoffLocation" },
2953
- "dropoffTime": { "@id": "schema:dropoffTime" },
2954
- "drug": { "@id": "schema:drug" },
2955
- "drugClass": { "@id": "schema:drugClass" },
2956
- "drugUnit": { "@id": "schema:drugUnit" },
2957
- "duns": { "@id": "schema:duns" },
2958
- "duplicateTherapy": { "@id": "schema:duplicateTherapy" },
2959
- "duration": { "@id": "schema:duration" },
2960
- "durationOfWarranty": { "@id": "schema:durationOfWarranty" },
2961
- "duringMedia": { "@id": "schema:duringMedia", "@type": "@id" },
2962
- "earlyPrepaymentPenalty": { "@id": "schema:earlyPrepaymentPenalty" },
2963
- "editEIDR": { "@id": "schema:editEIDR" },
2964
- "editor": { "@id": "schema:editor" },
2965
- "eduQuestionType": { "@id": "schema:eduQuestionType" },
2966
- "educationRequirements": { "@id": "schema:educationRequirements" },
2967
- "educationalAlignment": { "@id": "schema:educationalAlignment" },
2968
- "educationalCredentialAwarded": {
2969
- "@id": "schema:educationalCredentialAwarded",
2970
- },
2971
- "educationalFramework": { "@id": "schema:educationalFramework" },
2972
- "educationalLevel": { "@id": "schema:educationalLevel" },
2973
- "educationalProgramMode": { "@id": "schema:educationalProgramMode" },
2974
- "educationalRole": { "@id": "schema:educationalRole" },
2975
- "educationalUse": { "@id": "schema:educationalUse" },
2976
- "elevation": { "@id": "schema:elevation" },
2977
- "eligibilityToWorkRequirement": {
2978
- "@id": "schema:eligibilityToWorkRequirement",
2979
- },
2980
- "eligibleCustomerType": { "@id": "schema:eligibleCustomerType" },
2981
- "eligibleDuration": { "@id": "schema:eligibleDuration" },
2982
- "eligibleQuantity": { "@id": "schema:eligibleQuantity" },
2983
- "eligibleRegion": { "@id": "schema:eligibleRegion" },
2984
- "eligibleTransactionVolume": {
2985
- "@id": "schema:eligibleTransactionVolume",
2986
- },
2987
- "email": { "@id": "schema:email" },
2988
- "embedUrl": { "@id": "schema:embedUrl", "@type": "@id" },
2989
- "embeddedTextCaption": { "@id": "schema:embeddedTextCaption" },
2990
- "emissionsCO2": { "@id": "schema:emissionsCO2" },
2991
- "employee": { "@id": "schema:employee" },
2992
- "employees": { "@id": "schema:employees" },
2993
- "employerOverview": { "@id": "schema:employerOverview" },
2994
- "employmentType": { "@id": "schema:employmentType" },
2995
- "employmentUnit": { "@id": "schema:employmentUnit" },
2996
- "encodesBioChemEntity": { "@id": "schema:encodesBioChemEntity" },
2997
- "encodesCreativeWork": { "@id": "schema:encodesCreativeWork" },
2998
- "encoding": { "@id": "schema:encoding" },
2999
- "encodingFormat": { "@id": "schema:encodingFormat" },
3000
- "encodingType": { "@id": "schema:encodingType" },
3001
- "encodings": { "@id": "schema:encodings" },
3002
- "endDate": { "@id": "schema:endDate", "@type": "Date" },
3003
- "endOffset": { "@id": "schema:endOffset" },
3004
- "endTime": { "@id": "schema:endTime" },
3005
- "endorsee": { "@id": "schema:endorsee" },
3006
- "endorsers": { "@id": "schema:endorsers" },
3007
- "energyEfficiencyScaleMax": { "@id": "schema:energyEfficiencyScaleMax" },
3008
- "energyEfficiencyScaleMin": { "@id": "schema:energyEfficiencyScaleMin" },
3009
- "engineDisplacement": { "@id": "schema:engineDisplacement" },
3010
- "enginePower": { "@id": "schema:enginePower" },
3011
- "engineType": { "@id": "schema:engineType" },
3012
- "entertainmentBusiness": { "@id": "schema:entertainmentBusiness" },
3013
- "epidemiology": { "@id": "schema:epidemiology" },
3014
- "episode": { "@id": "schema:episode" },
3015
- "episodeNumber": { "@id": "schema:episodeNumber" },
3016
- "episodes": { "@id": "schema:episodes" },
3017
- "equal": { "@id": "schema:equal" },
3018
- "error": { "@id": "schema:error" },
3019
- "estimatedCost": { "@id": "schema:estimatedCost" },
3020
- "estimatedFlightDuration": { "@id": "schema:estimatedFlightDuration" },
3021
- "estimatedSalary": { "@id": "schema:estimatedSalary" },
3022
- "estimatesRiskOf": { "@id": "schema:estimatesRiskOf" },
3023
- "ethicsPolicy": { "@id": "schema:ethicsPolicy", "@type": "@id" },
3024
- "event": { "@id": "schema:event" },
3025
- "eventAttendanceMode": { "@id": "schema:eventAttendanceMode" },
3026
- "eventSchedule": { "@id": "schema:eventSchedule" },
3027
- "eventStatus": { "@id": "schema:eventStatus" },
3028
- "events": { "@id": "schema:events" },
3029
- "evidenceLevel": { "@id": "schema:evidenceLevel" },
3030
- "evidenceOrigin": { "@id": "schema:evidenceOrigin" },
3031
- "exampleOfWork": { "@id": "schema:exampleOfWork" },
3032
- "exceptDate": { "@id": "schema:exceptDate", "@type": "Date" },
3033
- "exchangeRateSpread": { "@id": "schema:exchangeRateSpread" },
3034
- "executableLibraryName": { "@id": "schema:executableLibraryName" },
3035
- "exerciseCourse": { "@id": "schema:exerciseCourse" },
3036
- "exercisePlan": { "@id": "schema:exercisePlan" },
3037
- "exerciseRelatedDiet": { "@id": "schema:exerciseRelatedDiet" },
3038
- "exerciseType": { "@id": "schema:exerciseType" },
3039
- "exifData": { "@id": "schema:exifData" },
3040
- "expectedArrivalFrom": {
3041
- "@id": "schema:expectedArrivalFrom",
3042
- "@type": "Date",
3043
- },
3044
- "expectedArrivalUntil": {
3045
- "@id": "schema:expectedArrivalUntil",
3046
- "@type": "Date",
3047
- },
3048
- "expectedPrognosis": { "@id": "schema:expectedPrognosis" },
3049
- "expectsAcceptanceOf": { "@id": "schema:expectsAcceptanceOf" },
3050
- "experienceInPlaceOfEducation": {
3051
- "@id": "schema:experienceInPlaceOfEducation",
3052
- },
3053
- "experienceRequirements": { "@id": "schema:experienceRequirements" },
3054
- "expertConsiderations": { "@id": "schema:expertConsiderations" },
3055
- "expires": { "@id": "schema:expires", "@type": "Date" },
3056
- "expressedIn": { "@id": "schema:expressedIn" },
3057
- "familyName": { "@id": "schema:familyName" },
3058
- "fatContent": { "@id": "schema:fatContent" },
3059
- "faxNumber": { "@id": "schema:faxNumber" },
3060
- "featureList": { "@id": "schema:featureList" },
3061
- "feesAndCommissionsSpecification": {
3062
- "@id": "schema:feesAndCommissionsSpecification",
3063
- },
3064
- "fiberContent": { "@id": "schema:fiberContent" },
3065
- "fileFormat": { "@id": "schema:fileFormat" },
3066
- "fileSize": { "@id": "schema:fileSize" },
3067
- "financialAidEligible": { "@id": "schema:financialAidEligible" },
3068
- "firstAppearance": { "@id": "schema:firstAppearance" },
3069
- "firstPerformance": { "@id": "schema:firstPerformance" },
3070
- "flightDistance": { "@id": "schema:flightDistance" },
3071
- "flightNumber": { "@id": "schema:flightNumber" },
3072
- "floorLevel": { "@id": "schema:floorLevel" },
3073
- "floorLimit": { "@id": "schema:floorLimit" },
3074
- "floorSize": { "@id": "schema:floorSize" },
3075
- "followee": { "@id": "schema:followee" },
3076
- "follows": { "@id": "schema:follows" },
3077
- "followup": { "@id": "schema:followup" },
3078
- "foodEstablishment": { "@id": "schema:foodEstablishment" },
3079
- "foodEvent": { "@id": "schema:foodEvent" },
3080
- "foodWarning": { "@id": "schema:foodWarning" },
3081
- "founder": { "@id": "schema:founder" },
3082
- "founders": { "@id": "schema:founders" },
3083
- "foundingDate": { "@id": "schema:foundingDate", "@type": "Date" },
3084
- "foundingLocation": { "@id": "schema:foundingLocation" },
3085
- "free": { "@id": "schema:free" },
3086
- "freeShippingThreshold": { "@id": "schema:freeShippingThreshold" },
3087
- "frequency": { "@id": "schema:frequency" },
3088
- "fromLocation": { "@id": "schema:fromLocation" },
3089
- "fuelCapacity": { "@id": "schema:fuelCapacity" },
3090
- "fuelConsumption": { "@id": "schema:fuelConsumption" },
3091
- "fuelEfficiency": { "@id": "schema:fuelEfficiency" },
3092
- "fuelType": { "@id": "schema:fuelType" },
3093
- "functionalClass": { "@id": "schema:functionalClass" },
3094
- "fundedItem": { "@id": "schema:fundedItem" },
3095
- "funder": { "@id": "schema:funder" },
3096
- "funding": { "@id": "schema:funding" },
3097
- "game": { "@id": "schema:game" },
3098
- "gameAvailabilityType": { "@id": "schema:gameAvailabilityType" },
3099
- "gameEdition": { "@id": "schema:gameEdition" },
3100
- "gameItem": { "@id": "schema:gameItem" },
3101
- "gameLocation": { "@id": "schema:gameLocation", "@type": "@id" },
3102
- "gamePlatform": { "@id": "schema:gamePlatform" },
3103
- "gameServer": { "@id": "schema:gameServer" },
3104
- "gameTip": { "@id": "schema:gameTip" },
3105
- "gender": { "@id": "schema:gender" },
3106
- "genre": { "@id": "schema:genre" },
3107
- "geo": { "@id": "schema:geo" },
3108
- "geoContains": { "@id": "schema:geoContains" },
3109
- "geoCoveredBy": { "@id": "schema:geoCoveredBy" },
3110
- "geoCovers": { "@id": "schema:geoCovers" },
3111
- "geoCrosses": { "@id": "schema:geoCrosses" },
3112
- "geoDisjoint": { "@id": "schema:geoDisjoint" },
3113
- "geoEquals": { "@id": "schema:geoEquals" },
3114
- "geoIntersects": { "@id": "schema:geoIntersects" },
3115
- "geoMidpoint": { "@id": "schema:geoMidpoint" },
3116
- "geoOverlaps": { "@id": "schema:geoOverlaps" },
3117
- "geoRadius": { "@id": "schema:geoRadius" },
3118
- "geoTouches": { "@id": "schema:geoTouches" },
3119
- "geoWithin": { "@id": "schema:geoWithin" },
3120
- "geographicArea": { "@id": "schema:geographicArea" },
3121
- "gettingTestedInfo": {
3122
- "@id": "schema:gettingTestedInfo",
3123
- "@type": "@id",
3124
- },
3125
- "givenName": { "@id": "schema:givenName" },
3126
- "globalLocationNumber": { "@id": "schema:globalLocationNumber" },
3127
- "governmentBenefitsInfo": { "@id": "schema:governmentBenefitsInfo" },
3128
- "gracePeriod": { "@id": "schema:gracePeriod" },
3129
- "grantee": { "@id": "schema:grantee" },
3130
- "greater": { "@id": "schema:greater" },
3131
- "greaterOrEqual": { "@id": "schema:greaterOrEqual" },
3132
- "gtin": { "@id": "schema:gtin" },
3133
- "gtin12": { "@id": "schema:gtin12" },
3134
- "gtin13": { "@id": "schema:gtin13" },
3135
- "gtin14": { "@id": "schema:gtin14" },
3136
- "gtin8": { "@id": "schema:gtin8" },
3137
- "guideline": { "@id": "schema:guideline" },
3138
- "guidelineDate": { "@id": "schema:guidelineDate", "@type": "Date" },
3139
- "guidelineSubject": { "@id": "schema:guidelineSubject" },
3140
- "handlingTime": { "@id": "schema:handlingTime" },
3141
- "hasAdultConsideration": { "@id": "schema:hasAdultConsideration" },
3142
- "hasBioChemEntityPart": { "@id": "schema:hasBioChemEntityPart" },
3143
- "hasBioPolymerSequence": { "@id": "schema:hasBioPolymerSequence" },
3144
- "hasBroadcastChannel": { "@id": "schema:hasBroadcastChannel" },
3145
- "hasCategoryCode": { "@id": "schema:hasCategoryCode" },
3146
- "hasCertification": { "@id": "schema:hasCertification" },
3147
- "hasCourse": { "@id": "schema:hasCourse" },
3148
- "hasCourseInstance": { "@id": "schema:hasCourseInstance" },
3149
- "hasCredential": { "@id": "schema:hasCredential" },
3150
- "hasDefinedTerm": { "@id": "schema:hasDefinedTerm" },
3151
- "hasDeliveryMethod": { "@id": "schema:hasDeliveryMethod" },
3152
- "hasDigitalDocumentPermission": {
3153
- "@id": "schema:hasDigitalDocumentPermission",
3154
- },
3155
- "hasDriveThroughService": { "@id": "schema:hasDriveThroughService" },
3156
- "hasEnergyConsumptionDetails": {
3157
- "@id": "schema:hasEnergyConsumptionDetails",
3158
- },
3159
- "hasEnergyEfficiencyCategory": {
3160
- "@id": "schema:hasEnergyEfficiencyCategory",
3161
- },
3162
- "hasGS1DigitalLink": {
3163
- "@id": "schema:hasGS1DigitalLink",
3164
- "@type": "@id",
3165
- },
3166
- "hasHealthAspect": { "@id": "schema:hasHealthAspect" },
3167
- "hasMap": { "@id": "schema:hasMap", "@type": "@id" },
3168
- "hasMeasurement": { "@id": "schema:hasMeasurement" },
3169
- "hasMemberProgram": { "@id": "schema:hasMemberProgram" },
3170
- "hasMenu": { "@id": "schema:hasMenu" },
3171
- "hasMenuItem": { "@id": "schema:hasMenuItem" },
3172
- "hasMenuSection": { "@id": "schema:hasMenuSection" },
3173
- "hasMerchantReturnPolicy": { "@id": "schema:hasMerchantReturnPolicy" },
3174
- "hasMolecularFunction": {
3175
- "@id": "schema:hasMolecularFunction",
3176
- "@type": "@id",
3177
- },
3178
- "hasOccupation": { "@id": "schema:hasOccupation" },
3179
- "hasOfferCatalog": { "@id": "schema:hasOfferCatalog" },
3180
- "hasPOS": { "@id": "schema:hasPOS" },
3181
- "hasPart": { "@id": "schema:hasPart" },
3182
- "hasProductReturnPolicy": { "@id": "schema:hasProductReturnPolicy" },
3183
- "hasRepresentation": { "@id": "schema:hasRepresentation" },
3184
- "hasTierBenefit": { "@id": "schema:hasTierBenefit" },
3185
- "hasTierRequirement": { "@id": "schema:hasTierRequirement" },
3186
- "hasTiers": { "@id": "schema:hasTiers" },
3187
- "hasVariant": { "@id": "schema:hasVariant" },
3188
- "headline": { "@id": "schema:headline" },
3189
- "healthCondition": { "@id": "schema:healthCondition" },
3190
- "healthPlanCoinsuranceOption": {
3191
- "@id": "schema:healthPlanCoinsuranceOption",
3192
- },
3193
- "healthPlanCoinsuranceRate": {
3194
- "@id": "schema:healthPlanCoinsuranceRate",
3195
- },
3196
- "healthPlanCopay": { "@id": "schema:healthPlanCopay" },
3197
- "healthPlanCopayOption": { "@id": "schema:healthPlanCopayOption" },
3198
- "healthPlanCostSharing": { "@id": "schema:healthPlanCostSharing" },
3199
- "healthPlanDrugOption": { "@id": "schema:healthPlanDrugOption" },
3200
- "healthPlanDrugTier": { "@id": "schema:healthPlanDrugTier" },
3201
- "healthPlanId": { "@id": "schema:healthPlanId" },
3202
- "healthPlanMarketingUrl": {
3203
- "@id": "schema:healthPlanMarketingUrl",
3204
- "@type": "@id",
3205
- },
3206
- "healthPlanNetworkId": { "@id": "schema:healthPlanNetworkId" },
3207
- "healthPlanNetworkTier": { "@id": "schema:healthPlanNetworkTier" },
3208
- "healthPlanPharmacyCategory": {
3209
- "@id": "schema:healthPlanPharmacyCategory",
3210
- },
3211
- "healthcareReportingData": { "@id": "schema:healthcareReportingData" },
3212
- "height": { "@id": "schema:height" },
3213
- "highPrice": { "@id": "schema:highPrice" },
3214
- "hiringOrganization": { "@id": "schema:hiringOrganization" },
3215
- "holdingArchive": { "@id": "schema:holdingArchive" },
3216
- "homeLocation": { "@id": "schema:homeLocation" },
3217
- "homeTeam": { "@id": "schema:homeTeam" },
3218
- "honorificPrefix": { "@id": "schema:honorificPrefix" },
3219
- "honorificSuffix": { "@id": "schema:honorificSuffix" },
3220
- "hospitalAffiliation": { "@id": "schema:hospitalAffiliation" },
3221
- "hostingOrganization": { "@id": "schema:hostingOrganization" },
3222
- "hoursAvailable": { "@id": "schema:hoursAvailable" },
3223
- "howPerformed": { "@id": "schema:howPerformed" },
3224
- "httpMethod": { "@id": "schema:httpMethod" },
3225
- "iataCode": { "@id": "schema:iataCode" },
3226
- "icaoCode": { "@id": "schema:icaoCode" },
3227
- "identifier": { "@id": "schema:identifier" },
3228
- "identifyingExam": { "@id": "schema:identifyingExam" },
3229
- "identifyingTest": { "@id": "schema:identifyingTest" },
3230
- "illustrator": { "@id": "schema:illustrator" },
3231
- "image": { "@id": "schema:image", "@type": "@id" },
3232
- "imagingTechnique": { "@id": "schema:imagingTechnique" },
3233
- "inAlbum": { "@id": "schema:inAlbum" },
3234
- "inBroadcastLineup": { "@id": "schema:inBroadcastLineup" },
3235
- "inChI": { "@id": "schema:inChI" },
3236
- "inChIKey": { "@id": "schema:inChIKey" },
3237
- "inCodeSet": { "@id": "schema:inCodeSet", "@type": "@id" },
3238
- "inDefinedTermSet": { "@id": "schema:inDefinedTermSet", "@type": "@id" },
3239
- "inLanguage": { "@id": "schema:inLanguage" },
3240
- "inPlaylist": { "@id": "schema:inPlaylist" },
3241
- "inProductGroupWithID": { "@id": "schema:inProductGroupWithID" },
3242
- "inStoreReturnsOffered": { "@id": "schema:inStoreReturnsOffered" },
3243
- "inSupportOf": { "@id": "schema:inSupportOf" },
3244
- "incentiveCompensation": { "@id": "schema:incentiveCompensation" },
3245
- "incentives": { "@id": "schema:incentives" },
3246
- "includedComposition": { "@id": "schema:includedComposition" },
3247
- "includedDataCatalog": { "@id": "schema:includedDataCatalog" },
3248
- "includedInDataCatalog": { "@id": "schema:includedInDataCatalog" },
3249
- "includedInHealthInsurancePlan": {
3250
- "@id": "schema:includedInHealthInsurancePlan",
3251
- },
3252
- "includedRiskFactor": { "@id": "schema:includedRiskFactor" },
3253
- "includesAttraction": { "@id": "schema:includesAttraction" },
3254
- "includesHealthPlanFormulary": {
3255
- "@id": "schema:includesHealthPlanFormulary",
3256
- },
3257
- "includesHealthPlanNetwork": {
3258
- "@id": "schema:includesHealthPlanNetwork",
3259
- },
3260
- "includesObject": { "@id": "schema:includesObject" },
3261
- "increasesRiskOf": { "@id": "schema:increasesRiskOf" },
3262
- "industry": { "@id": "schema:industry" },
3263
- "ineligibleRegion": { "@id": "schema:ineligibleRegion" },
3264
- "infectiousAgent": { "@id": "schema:infectiousAgent" },
3265
- "infectiousAgentClass": { "@id": "schema:infectiousAgentClass" },
3266
- "ingredients": { "@id": "schema:ingredients" },
3267
- "inker": { "@id": "schema:inker" },
3268
- "insertion": { "@id": "schema:insertion" },
3269
- "installUrl": { "@id": "schema:installUrl", "@type": "@id" },
3270
- "instructor": { "@id": "schema:instructor" },
3271
- "instrument": { "@id": "schema:instrument" },
3272
- "intensity": { "@id": "schema:intensity" },
3273
- "interactingDrug": { "@id": "schema:interactingDrug" },
3274
- "interactionCount": { "@id": "schema:interactionCount" },
3275
- "interactionService": { "@id": "schema:interactionService" },
3276
- "interactionStatistic": { "@id": "schema:interactionStatistic" },
3277
- "interactionType": { "@id": "schema:interactionType" },
3278
- "interactivityType": { "@id": "schema:interactivityType" },
3279
- "interestRate": { "@id": "schema:interestRate" },
3280
- "interpretedAsClaim": { "@id": "schema:interpretedAsClaim" },
3281
- "inventoryLevel": { "@id": "schema:inventoryLevel" },
3282
- "inverseOf": { "@id": "schema:inverseOf" },
3283
- "isAcceptingNewPatients": { "@id": "schema:isAcceptingNewPatients" },
3284
- "isAccessibleForFree": { "@id": "schema:isAccessibleForFree" },
3285
- "isAccessoryOrSparePartFor": {
3286
- "@id": "schema:isAccessoryOrSparePartFor",
3287
- },
3288
- "isAvailableGenerically": { "@id": "schema:isAvailableGenerically" },
3289
- "isBasedOn": { "@id": "schema:isBasedOn", "@type": "@id" },
3290
- "isBasedOnUrl": { "@id": "schema:isBasedOnUrl", "@type": "@id" },
3291
- "isConsumableFor": { "@id": "schema:isConsumableFor" },
3292
- "isEncodedByBioChemEntity": { "@id": "schema:isEncodedByBioChemEntity" },
3293
- "isFamilyFriendly": { "@id": "schema:isFamilyFriendly" },
3294
- "isGift": { "@id": "schema:isGift" },
3295
- "isInvolvedInBiologicalProcess": {
3296
- "@id": "schema:isInvolvedInBiologicalProcess",
3297
- "@type": "@id",
3298
- },
3299
- "isLiveBroadcast": { "@id": "schema:isLiveBroadcast" },
3300
- "isLocatedInSubcellularLocation": {
3301
- "@id": "schema:isLocatedInSubcellularLocation",
3302
- "@type": "@id",
3303
- },
3304
- "isPartOf": { "@id": "schema:isPartOf", "@type": "@id" },
3305
- "isPartOfBioChemEntity": { "@id": "schema:isPartOfBioChemEntity" },
3306
- "isPlanForApartment": { "@id": "schema:isPlanForApartment" },
3307
- "isProprietary": { "@id": "schema:isProprietary" },
3308
- "isRelatedTo": { "@id": "schema:isRelatedTo" },
3309
- "isResizable": { "@id": "schema:isResizable" },
3310
- "isSimilarTo": { "@id": "schema:isSimilarTo" },
3311
- "isTierOf": { "@id": "schema:isTierOf" },
3312
- "isUnlabelledFallback": { "@id": "schema:isUnlabelledFallback" },
3313
- "isVariantOf": { "@id": "schema:isVariantOf" },
3314
- "isbn": { "@id": "schema:isbn" },
3315
- "isicV4": { "@id": "schema:isicV4" },
3316
- "iso6523Code": { "@id": "schema:iso6523Code" },
3317
- "isrcCode": { "@id": "schema:isrcCode" },
3318
- "issn": { "@id": "schema:issn" },
3319
- "issueNumber": { "@id": "schema:issueNumber" },
3320
- "issuedBy": { "@id": "schema:issuedBy" },
3321
- "issuedThrough": { "@id": "schema:issuedThrough" },
3322
- "iswcCode": { "@id": "schema:iswcCode" },
3323
- "item": { "@id": "schema:item" },
3324
- "itemCondition": { "@id": "schema:itemCondition" },
3325
- "itemDefectReturnFees": { "@id": "schema:itemDefectReturnFees" },
3326
- "itemDefectReturnLabelSource": {
3327
- "@id": "schema:itemDefectReturnLabelSource",
3328
- },
3329
- "itemDefectReturnShippingFeesAmount": {
3330
- "@id": "schema:itemDefectReturnShippingFeesAmount",
3331
- },
3332
- "itemListElement": { "@id": "schema:itemListElement" },
3333
- "itemListOrder": { "@id": "schema:itemListOrder" },
3334
- "itemLocation": { "@id": "schema:itemLocation" },
3335
- "itemOffered": { "@id": "schema:itemOffered" },
3336
- "itemReviewed": { "@id": "schema:itemReviewed" },
3337
- "itemShipped": { "@id": "schema:itemShipped" },
3338
- "itinerary": { "@id": "schema:itinerary" },
3339
- "iupacName": { "@id": "schema:iupacName" },
3340
- "jobBenefits": { "@id": "schema:jobBenefits" },
3341
- "jobImmediateStart": { "@id": "schema:jobImmediateStart" },
3342
- "jobLocation": { "@id": "schema:jobLocation" },
3343
- "jobLocationType": { "@id": "schema:jobLocationType" },
3344
- "jobStartDate": { "@id": "schema:jobStartDate" },
3345
- "jobTitle": { "@id": "schema:jobTitle" },
3346
- "jurisdiction": { "@id": "schema:jurisdiction" },
3347
- "keywords": { "@id": "schema:keywords" },
3348
- "knownVehicleDamages": { "@id": "schema:knownVehicleDamages" },
3349
- "knows": { "@id": "schema:knows" },
3350
- "knowsAbout": { "@id": "schema:knowsAbout" },
3351
- "knowsLanguage": { "@id": "schema:knowsLanguage" },
3352
- "labelDetails": { "@id": "schema:labelDetails", "@type": "@id" },
3353
- "landlord": { "@id": "schema:landlord" },
3354
- "language": { "@id": "schema:language" },
3355
- "lastReviewed": { "@id": "schema:lastReviewed", "@type": "Date" },
3356
- "latitude": { "@id": "schema:latitude" },
3357
- "layoutImage": { "@id": "schema:layoutImage", "@type": "@id" },
3358
- "learningResourceType": { "@id": "schema:learningResourceType" },
3359
- "leaseLength": { "@id": "schema:leaseLength" },
3360
- "legalName": { "@id": "schema:legalName" },
3361
- "legalStatus": { "@id": "schema:legalStatus" },
3362
- "legislationApplies": { "@id": "schema:legislationApplies" },
3363
- "legislationChanges": { "@id": "schema:legislationChanges" },
3364
- "legislationConsolidates": { "@id": "schema:legislationConsolidates" },
3365
- "legislationDate": { "@id": "schema:legislationDate", "@type": "Date" },
3366
- "legislationDateVersion": {
3367
- "@id": "schema:legislationDateVersion",
3368
- "@type": "Date",
3369
- },
3370
- "legislationIdentifier": { "@id": "schema:legislationIdentifier" },
3371
- "legislationJurisdiction": { "@id": "schema:legislationJurisdiction" },
3372
- "legislationLegalForce": { "@id": "schema:legislationLegalForce" },
3373
- "legislationLegalValue": { "@id": "schema:legislationLegalValue" },
3374
- "legislationPassedBy": { "@id": "schema:legislationPassedBy" },
3375
- "legislationResponsible": { "@id": "schema:legislationResponsible" },
3376
- "legislationTransposes": { "@id": "schema:legislationTransposes" },
3377
- "legislationType": { "@id": "schema:legislationType" },
3378
- "leiCode": { "@id": "schema:leiCode" },
3379
- "lender": { "@id": "schema:lender" },
3380
- "lesser": { "@id": "schema:lesser" },
3381
- "lesserOrEqual": { "@id": "schema:lesserOrEqual" },
3382
- "letterer": { "@id": "schema:letterer" },
3383
- "license": { "@id": "schema:license", "@type": "@id" },
3384
- "line": { "@id": "schema:line" },
3385
- "linkRelationship": { "@id": "schema:linkRelationship" },
3386
- "liveBlogUpdate": { "@id": "schema:liveBlogUpdate" },
3387
- "loanMortgageMandateAmount": {
3388
- "@id": "schema:loanMortgageMandateAmount",
3389
- },
3390
- "loanPaymentAmount": { "@id": "schema:loanPaymentAmount" },
3391
- "loanPaymentFrequency": { "@id": "schema:loanPaymentFrequency" },
3392
- "loanRepaymentForm": { "@id": "schema:loanRepaymentForm" },
3393
- "loanTerm": { "@id": "schema:loanTerm" },
3394
- "loanType": { "@id": "schema:loanType" },
3395
- "location": { "@id": "schema:location" },
3396
- "locationCreated": { "@id": "schema:locationCreated" },
3397
- "lodgingUnitDescription": { "@id": "schema:lodgingUnitDescription" },
3398
- "lodgingUnitType": { "@id": "schema:lodgingUnitType" },
3399
- "logo": { "@id": "schema:logo", "@type": "@id" },
3400
- "longitude": { "@id": "schema:longitude" },
3401
- "loser": { "@id": "schema:loser" },
3402
- "lowPrice": { "@id": "schema:lowPrice" },
3403
- "lyricist": { "@id": "schema:lyricist" },
3404
- "lyrics": { "@id": "schema:lyrics" },
3405
- "mainContentOfPage": { "@id": "schema:mainContentOfPage" },
3406
- "mainEntity": { "@id": "schema:mainEntity" },
3407
- "mainEntityOfPage": { "@id": "schema:mainEntityOfPage", "@type": "@id" },
3408
- "maintainer": { "@id": "schema:maintainer" },
3409
- "makesOffer": { "@id": "schema:makesOffer" },
3410
- "manufacturer": { "@id": "schema:manufacturer" },
3411
- "map": { "@id": "schema:map", "@type": "@id" },
3412
- "mapType": { "@id": "schema:mapType" },
3413
- "maps": { "@id": "schema:maps", "@type": "@id" },
3414
- "marginOfError": { "@id": "schema:marginOfError" },
3415
- "masthead": { "@id": "schema:masthead", "@type": "@id" },
3416
- "material": { "@id": "schema:material" },
3417
- "materialExtent": { "@id": "schema:materialExtent" },
3418
- "mathExpression": { "@id": "schema:mathExpression" },
3419
- "maxPrice": { "@id": "schema:maxPrice" },
3420
- "maxValue": { "@id": "schema:maxValue" },
3421
- "maximumAttendeeCapacity": { "@id": "schema:maximumAttendeeCapacity" },
3422
- "maximumEnrollment": { "@id": "schema:maximumEnrollment" },
3423
- "maximumIntake": { "@id": "schema:maximumIntake" },
3424
- "maximumPhysicalAttendeeCapacity": {
3425
- "@id": "schema:maximumPhysicalAttendeeCapacity",
3426
- },
3427
- "maximumVirtualAttendeeCapacity": {
3428
- "@id": "schema:maximumVirtualAttendeeCapacity",
3429
- },
3430
- "mealService": { "@id": "schema:mealService" },
3431
- "measuredProperty": { "@id": "schema:measuredProperty" },
3432
- "measurementDenominator": { "@id": "schema:measurementDenominator" },
3433
- "measurementMethod": { "@id": "schema:measurementMethod" },
3434
- "measurementQualifier": { "@id": "schema:measurementQualifier" },
3435
- "measurementTechnique": { "@id": "schema:measurementTechnique" },
3436
- "mechanismOfAction": { "@id": "schema:mechanismOfAction" },
3437
- "mediaAuthenticityCategory": {
3438
- "@id": "schema:mediaAuthenticityCategory",
3439
- },
3440
- "mediaItemAppearance": { "@id": "schema:mediaItemAppearance" },
3441
- "median": { "@id": "schema:median" },
3442
- "medicalAudience": { "@id": "schema:medicalAudience" },
3443
- "medicalSpecialty": { "@id": "schema:medicalSpecialty" },
3444
- "medicineSystem": { "@id": "schema:medicineSystem" },
3445
- "meetsEmissionStandard": { "@id": "schema:meetsEmissionStandard" },
3446
- "member": { "@id": "schema:member" },
3447
- "memberOf": { "@id": "schema:memberOf" },
3448
- "members": { "@id": "schema:members" },
3449
- "membershipNumber": { "@id": "schema:membershipNumber" },
3450
- "membershipPointsEarned": { "@id": "schema:membershipPointsEarned" },
3451
- "memoryRequirements": { "@id": "schema:memoryRequirements" },
3452
- "mentions": { "@id": "schema:mentions" },
3453
- "menu": { "@id": "schema:menu" },
3454
- "menuAddOn": { "@id": "schema:menuAddOn" },
3455
- "merchant": { "@id": "schema:merchant" },
3456
- "merchantReturnDays": {
3457
- "@id": "schema:merchantReturnDays",
3458
- "@type": "Date",
3459
- },
3460
- "merchantReturnLink": {
3461
- "@id": "schema:merchantReturnLink",
3462
- "@type": "@id",
3463
- },
3464
- "messageAttachment": { "@id": "schema:messageAttachment" },
3465
- "mileageFromOdometer": { "@id": "schema:mileageFromOdometer" },
3466
- "minPrice": { "@id": "schema:minPrice" },
3467
- "minValue": { "@id": "schema:minValue" },
3468
- "minimumPaymentDue": { "@id": "schema:minimumPaymentDue" },
3469
- "missionCoveragePrioritiesPolicy": {
3470
- "@id": "schema:missionCoveragePrioritiesPolicy",
3471
- "@type": "@id",
3472
- },
3473
- "mobileUrl": { "@id": "schema:mobileUrl" },
3474
- "model": { "@id": "schema:model" },
3475
- "modelDate": { "@id": "schema:modelDate", "@type": "Date" },
3476
- "modifiedTime": { "@id": "schema:modifiedTime" },
3477
- "molecularFormula": { "@id": "schema:molecularFormula" },
3478
- "molecularWeight": { "@id": "schema:molecularWeight" },
3479
- "monoisotopicMolecularWeight": {
3480
- "@id": "schema:monoisotopicMolecularWeight",
3481
- },
3482
- "monthlyMinimumRepaymentAmount": {
3483
- "@id": "schema:monthlyMinimumRepaymentAmount",
3484
- },
3485
- "monthsOfExperience": { "@id": "schema:monthsOfExperience" },
3486
- "mpn": { "@id": "schema:mpn" },
3487
- "multipleValues": { "@id": "schema:multipleValues" },
3488
- "muscleAction": { "@id": "schema:muscleAction" },
3489
- "musicArrangement": { "@id": "schema:musicArrangement" },
3490
- "musicBy": { "@id": "schema:musicBy" },
3491
- "musicCompositionForm": { "@id": "schema:musicCompositionForm" },
3492
- "musicGroupMember": { "@id": "schema:musicGroupMember" },
3493
- "musicReleaseFormat": { "@id": "schema:musicReleaseFormat" },
3494
- "musicalKey": { "@id": "schema:musicalKey" },
3495
- "naics": { "@id": "schema:naics" },
3496
- "name": { "@id": "schema:name" },
3497
- "namedPosition": { "@id": "schema:namedPosition" },
3498
- "nationality": { "@id": "schema:nationality" },
3499
- "naturalProgression": { "@id": "schema:naturalProgression" },
3500
- "negativeNotes": { "@id": "schema:negativeNotes" },
3501
- "nerve": { "@id": "schema:nerve" },
3502
- "nerveMotor": { "@id": "schema:nerveMotor" },
3503
- "netWorth": { "@id": "schema:netWorth" },
3504
- "newsUpdatesAndGuidelines": {
3505
- "@id": "schema:newsUpdatesAndGuidelines",
3506
- "@type": "@id",
3507
- },
3508
- "nextItem": { "@id": "schema:nextItem" },
3509
- "noBylinesPolicy": { "@id": "schema:noBylinesPolicy", "@type": "@id" },
3510
- "nonEqual": { "@id": "schema:nonEqual" },
3511
- "nonProprietaryName": { "@id": "schema:nonProprietaryName" },
3512
- "nonprofitStatus": { "@id": "schema:nonprofitStatus" },
3513
- "normalRange": { "@id": "schema:normalRange" },
3514
- "nsn": { "@id": "schema:nsn" },
3515
- "numAdults": { "@id": "schema:numAdults" },
3516
- "numChildren": { "@id": "schema:numChildren" },
3517
- "numConstraints": { "@id": "schema:numConstraints" },
3518
- "numTracks": { "@id": "schema:numTracks" },
3519
- "numberOfAccommodationUnits": {
3520
- "@id": "schema:numberOfAccommodationUnits",
3521
- },
3522
- "numberOfAirbags": { "@id": "schema:numberOfAirbags" },
3523
- "numberOfAvailableAccommodationUnits": {
3524
- "@id": "schema:numberOfAvailableAccommodationUnits",
3525
- },
3526
- "numberOfAxles": { "@id": "schema:numberOfAxles" },
3527
- "numberOfBathroomsTotal": { "@id": "schema:numberOfBathroomsTotal" },
3528
- "numberOfBedrooms": { "@id": "schema:numberOfBedrooms" },
3529
- "numberOfBeds": { "@id": "schema:numberOfBeds" },
3530
- "numberOfCredits": { "@id": "schema:numberOfCredits" },
3531
- "numberOfDoors": { "@id": "schema:numberOfDoors" },
3532
- "numberOfEmployees": { "@id": "schema:numberOfEmployees" },
3533
- "numberOfEpisodes": { "@id": "schema:numberOfEpisodes" },
3534
- "numberOfForwardGears": { "@id": "schema:numberOfForwardGears" },
3535
- "numberOfFullBathrooms": { "@id": "schema:numberOfFullBathrooms" },
3536
- "numberOfItems": { "@id": "schema:numberOfItems" },
3537
- "numberOfLoanPayments": { "@id": "schema:numberOfLoanPayments" },
3538
- "numberOfPages": { "@id": "schema:numberOfPages" },
3539
- "numberOfPartialBathrooms": { "@id": "schema:numberOfPartialBathrooms" },
3540
- "numberOfPlayers": { "@id": "schema:numberOfPlayers" },
3541
- "numberOfPreviousOwners": { "@id": "schema:numberOfPreviousOwners" },
3542
- "numberOfRooms": { "@id": "schema:numberOfRooms" },
3543
- "numberOfSeasons": { "@id": "schema:numberOfSeasons" },
3544
- "numberedPosition": { "@id": "schema:numberedPosition" },
3545
- "nutrition": { "@id": "schema:nutrition" },
3546
- "object": { "@id": "schema:object" },
3547
- "observationAbout": { "@id": "schema:observationAbout" },
3548
- "observationDate": { "@id": "schema:observationDate" },
3549
- "observationPeriod": { "@id": "schema:observationPeriod" },
3550
- "occupancy": { "@id": "schema:occupancy" },
3551
- "occupationLocation": { "@id": "schema:occupationLocation" },
3552
- "occupationalCategory": { "@id": "schema:occupationalCategory" },
3553
- "occupationalCredentialAwarded": {
3554
- "@id": "schema:occupationalCredentialAwarded",
3555
- },
3556
- "offerCount": { "@id": "schema:offerCount" },
3557
- "offeredBy": { "@id": "schema:offeredBy" },
3558
- "offers": { "@id": "schema:offers" },
3559
- "offersPrescriptionByMail": { "@id": "schema:offersPrescriptionByMail" },
3560
- "openingHours": { "@id": "schema:openingHours" },
3561
- "openingHoursSpecification": {
3562
- "@id": "schema:openingHoursSpecification",
3563
- },
3564
- "opens": { "@id": "schema:opens" },
3565
- "operatingSystem": { "@id": "schema:operatingSystem" },
3566
- "opponent": { "@id": "schema:opponent" },
3567
- "option": { "@id": "schema:option" },
3568
- "orderDate": { "@id": "schema:orderDate", "@type": "Date" },
3569
- "orderDelivery": { "@id": "schema:orderDelivery" },
3570
- "orderItemNumber": { "@id": "schema:orderItemNumber" },
3571
- "orderItemStatus": { "@id": "schema:orderItemStatus" },
3572
- "orderNumber": { "@id": "schema:orderNumber" },
3573
- "orderQuantity": { "@id": "schema:orderQuantity" },
3574
- "orderStatus": { "@id": "schema:orderStatus" },
3575
- "orderedItem": { "@id": "schema:orderedItem" },
3576
- "organizer": { "@id": "schema:organizer" },
3577
- "originAddress": { "@id": "schema:originAddress" },
3578
- "originalMediaContextDescription": {
3579
- "@id": "schema:originalMediaContextDescription",
3580
- },
3581
- "originalMediaLink": {
3582
- "@id": "schema:originalMediaLink",
3583
- "@type": "@id",
3584
- },
3585
- "originatesFrom": { "@id": "schema:originatesFrom" },
3586
- "overdosage": { "@id": "schema:overdosage" },
3587
- "ownedFrom": { "@id": "schema:ownedFrom" },
3588
- "ownedThrough": { "@id": "schema:ownedThrough" },
3589
- "ownershipFundingInfo": { "@id": "schema:ownershipFundingInfo" },
3590
- "owns": { "@id": "schema:owns" },
3591
- "pageEnd": { "@id": "schema:pageEnd" },
3592
- "pageStart": { "@id": "schema:pageStart" },
3593
- "pagination": { "@id": "schema:pagination" },
3594
- "parent": { "@id": "schema:parent" },
3595
- "parentItem": { "@id": "schema:parentItem" },
3596
- "parentOrganization": { "@id": "schema:parentOrganization" },
3597
- "parentService": { "@id": "schema:parentService" },
3598
- "parentTaxon": { "@id": "schema:parentTaxon" },
3599
- "parents": { "@id": "schema:parents" },
3600
- "partOfEpisode": { "@id": "schema:partOfEpisode" },
3601
- "partOfInvoice": { "@id": "schema:partOfInvoice" },
3602
- "partOfOrder": { "@id": "schema:partOfOrder" },
3603
- "partOfSeason": { "@id": "schema:partOfSeason" },
3604
- "partOfSeries": { "@id": "schema:partOfSeries" },
3605
- "partOfSystem": { "@id": "schema:partOfSystem" },
3606
- "partOfTVSeries": { "@id": "schema:partOfTVSeries" },
3607
- "partOfTrip": { "@id": "schema:partOfTrip" },
3608
- "participant": { "@id": "schema:participant" },
3609
- "partySize": { "@id": "schema:partySize" },
3610
- "passengerPriorityStatus": { "@id": "schema:passengerPriorityStatus" },
3611
- "passengerSequenceNumber": { "@id": "schema:passengerSequenceNumber" },
3612
- "pathophysiology": { "@id": "schema:pathophysiology" },
3613
- "pattern": { "@id": "schema:pattern" },
3614
- "payload": { "@id": "schema:payload" },
3615
- "paymentAccepted": { "@id": "schema:paymentAccepted" },
3616
- "paymentDue": { "@id": "schema:paymentDue" },
3617
- "paymentDueDate": { "@id": "schema:paymentDueDate", "@type": "Date" },
3618
- "paymentMethod": { "@id": "schema:paymentMethod" },
3619
- "paymentMethodId": { "@id": "schema:paymentMethodId" },
3620
- "paymentMethodType": { "@id": "schema:paymentMethodType" },
3621
- "paymentStatus": { "@id": "schema:paymentStatus" },
3622
- "paymentUrl": { "@id": "schema:paymentUrl", "@type": "@id" },
3623
- "penciler": { "@id": "schema:penciler" },
3624
- "percentile10": { "@id": "schema:percentile10" },
3625
- "percentile25": { "@id": "schema:percentile25" },
3626
- "percentile75": { "@id": "schema:percentile75" },
3627
- "percentile90": { "@id": "schema:percentile90" },
3628
- "performTime": { "@id": "schema:performTime" },
3629
- "performer": { "@id": "schema:performer" },
3630
- "performerIn": { "@id": "schema:performerIn" },
3631
- "performers": { "@id": "schema:performers" },
3632
- "permissionType": { "@id": "schema:permissionType" },
3633
- "permissions": { "@id": "schema:permissions" },
3634
- "permitAudience": { "@id": "schema:permitAudience" },
3635
- "permittedUsage": { "@id": "schema:permittedUsage" },
3636
- "petsAllowed": { "@id": "schema:petsAllowed" },
3637
- "phoneticText": { "@id": "schema:phoneticText" },
3638
- "photo": { "@id": "schema:photo" },
3639
- "photos": { "@id": "schema:photos" },
3640
- "physicalRequirement": { "@id": "schema:physicalRequirement" },
3641
- "physiologicalBenefits": { "@id": "schema:physiologicalBenefits" },
3642
- "pickupLocation": { "@id": "schema:pickupLocation" },
3643
- "pickupTime": { "@id": "schema:pickupTime" },
3644
- "playMode": { "@id": "schema:playMode" },
3645
- "playerType": { "@id": "schema:playerType" },
3646
- "playersOnline": { "@id": "schema:playersOnline" },
3647
- "polygon": { "@id": "schema:polygon" },
3648
- "populationType": { "@id": "schema:populationType" },
3649
- "position": { "@id": "schema:position" },
3650
- "positiveNotes": { "@id": "schema:positiveNotes" },
3651
- "possibleComplication": { "@id": "schema:possibleComplication" },
3652
- "possibleTreatment": { "@id": "schema:possibleTreatment" },
3653
- "postOfficeBoxNumber": { "@id": "schema:postOfficeBoxNumber" },
3654
- "postOp": { "@id": "schema:postOp" },
3655
- "postalCode": { "@id": "schema:postalCode" },
3656
- "postalCodeBegin": { "@id": "schema:postalCodeBegin" },
3657
- "postalCodeEnd": { "@id": "schema:postalCodeEnd" },
3658
- "postalCodePrefix": { "@id": "schema:postalCodePrefix" },
3659
- "postalCodeRange": { "@id": "schema:postalCodeRange" },
3660
- "potentialAction": { "@id": "schema:potentialAction" },
3661
- "potentialUse": { "@id": "schema:potentialUse" },
3662
- "practicesAt": { "@id": "schema:practicesAt" },
3663
- "preOp": { "@id": "schema:preOp" },
3664
- "predecessorOf": { "@id": "schema:predecessorOf" },
3665
- "pregnancyCategory": { "@id": "schema:pregnancyCategory" },
3666
- "pregnancyWarning": { "@id": "schema:pregnancyWarning" },
3667
- "prepTime": { "@id": "schema:prepTime" },
3668
- "preparation": { "@id": "schema:preparation" },
3669
- "prescribingInfo": { "@id": "schema:prescribingInfo", "@type": "@id" },
3670
- "prescriptionStatus": { "@id": "schema:prescriptionStatus" },
3671
- "previousItem": { "@id": "schema:previousItem" },
3672
- "previousStartDate": {
3673
- "@id": "schema:previousStartDate",
3674
- "@type": "Date",
3675
- },
3676
- "price": { "@id": "schema:price" },
3677
- "priceComponent": { "@id": "schema:priceComponent" },
3678
- "priceComponentType": { "@id": "schema:priceComponentType" },
3679
- "priceCurrency": { "@id": "schema:priceCurrency" },
3680
- "priceRange": { "@id": "schema:priceRange" },
3681
- "priceSpecification": { "@id": "schema:priceSpecification" },
3682
- "priceType": { "@id": "schema:priceType" },
3683
- "priceValidUntil": { "@id": "schema:priceValidUntil", "@type": "Date" },
3684
- "primaryImageOfPage": { "@id": "schema:primaryImageOfPage" },
3685
- "primaryPrevention": { "@id": "schema:primaryPrevention" },
3686
- "printColumn": { "@id": "schema:printColumn" },
3687
- "printEdition": { "@id": "schema:printEdition" },
3688
- "printPage": { "@id": "schema:printPage" },
3689
- "printSection": { "@id": "schema:printSection" },
3690
- "procedure": { "@id": "schema:procedure" },
3691
- "procedureType": { "@id": "schema:procedureType" },
3692
- "processingTime": { "@id": "schema:processingTime" },
3693
- "processorRequirements": { "@id": "schema:processorRequirements" },
3694
- "producer": { "@id": "schema:producer" },
3695
- "produces": { "@id": "schema:produces" },
3696
- "productGroupID": { "@id": "schema:productGroupID" },
3697
- "productID": { "@id": "schema:productID" },
3698
- "productReturnDays": { "@id": "schema:productReturnDays" },
3699
- "productReturnLink": {
3700
- "@id": "schema:productReturnLink",
3701
- "@type": "@id",
3702
- },
3703
- "productSupported": { "@id": "schema:productSupported" },
3704
- "productionCompany": { "@id": "schema:productionCompany" },
3705
- "productionDate": { "@id": "schema:productionDate", "@type": "Date" },
3706
- "proficiencyLevel": { "@id": "schema:proficiencyLevel" },
3707
- "program": { "@id": "schema:program" },
3708
- "programMembershipUsed": { "@id": "schema:programMembershipUsed" },
3709
- "programName": { "@id": "schema:programName" },
3710
- "programPrerequisites": { "@id": "schema:programPrerequisites" },
3711
- "programType": { "@id": "schema:programType" },
3712
- "programmingLanguage": { "@id": "schema:programmingLanguage" },
3713
- "programmingModel": { "@id": "schema:programmingModel" },
3714
- "propertyID": { "@id": "schema:propertyID" },
3715
- "proprietaryName": { "@id": "schema:proprietaryName" },
3716
- "proteinContent": { "@id": "schema:proteinContent" },
3717
- "provider": { "@id": "schema:provider" },
3718
- "providerMobility": { "@id": "schema:providerMobility" },
3719
- "providesBroadcastService": { "@id": "schema:providesBroadcastService" },
3720
- "providesService": { "@id": "schema:providesService" },
3721
- "publicAccess": { "@id": "schema:publicAccess" },
3722
- "publicTransportClosuresInfo": {
3723
- "@id": "schema:publicTransportClosuresInfo",
3724
- "@type": "@id",
3725
- },
3726
- "publication": { "@id": "schema:publication" },
3727
- "publicationType": { "@id": "schema:publicationType" },
3728
- "publishedBy": { "@id": "schema:publishedBy" },
3729
- "publishedOn": { "@id": "schema:publishedOn" },
3730
- "publisher": { "@id": "schema:publisher" },
3731
- "publisherImprint": { "@id": "schema:publisherImprint" },
3732
- "publishingPrinciples": {
3733
- "@id": "schema:publishingPrinciples",
3734
- "@type": "@id",
3735
- },
3736
- "purchaseDate": { "@id": "schema:purchaseDate", "@type": "Date" },
3737
- "qualifications": { "@id": "schema:qualifications" },
3738
- "quarantineGuidelines": {
3739
- "@id": "schema:quarantineGuidelines",
3740
- "@type": "@id",
3741
- },
3742
- "query": { "@id": "schema:query" },
3743
- "quest": { "@id": "schema:quest" },
3744
- "question": { "@id": "schema:question" },
3745
- "rangeIncludes": { "@id": "schema:rangeIncludes" },
3746
- "ratingCount": { "@id": "schema:ratingCount" },
3747
- "ratingExplanation": { "@id": "schema:ratingExplanation" },
3748
- "ratingValue": { "@id": "schema:ratingValue" },
3749
- "readBy": { "@id": "schema:readBy" },
3750
- "readonlyValue": { "@id": "schema:readonlyValue" },
3751
- "realEstateAgent": { "@id": "schema:realEstateAgent" },
3752
- "recipe": { "@id": "schema:recipe" },
3753
- "recipeCategory": { "@id": "schema:recipeCategory" },
3754
- "recipeCuisine": { "@id": "schema:recipeCuisine" },
3755
- "recipeIngredient": { "@id": "schema:recipeIngredient" },
3756
- "recipeInstructions": { "@id": "schema:recipeInstructions" },
3757
- "recipeYield": { "@id": "schema:recipeYield" },
3758
- "recipient": { "@id": "schema:recipient" },
3759
- "recognizedBy": { "@id": "schema:recognizedBy" },
3760
- "recognizingAuthority": { "@id": "schema:recognizingAuthority" },
3761
- "recommendationStrength": { "@id": "schema:recommendationStrength" },
3762
- "recommendedIntake": { "@id": "schema:recommendedIntake" },
3763
- "recordLabel": { "@id": "schema:recordLabel" },
3764
- "recordedAs": { "@id": "schema:recordedAs" },
3765
- "recordedAt": { "@id": "schema:recordedAt" },
3766
- "recordedIn": { "@id": "schema:recordedIn" },
3767
- "recordingOf": { "@id": "schema:recordingOf" },
3768
- "recourseLoan": { "@id": "schema:recourseLoan" },
3769
- "referenceQuantity": { "@id": "schema:referenceQuantity" },
3770
- "referencesOrder": { "@id": "schema:referencesOrder" },
3771
- "refundType": { "@id": "schema:refundType" },
3772
- "regionDrained": { "@id": "schema:regionDrained" },
3773
- "regionsAllowed": { "@id": "schema:regionsAllowed" },
3774
- "relatedAnatomy": { "@id": "schema:relatedAnatomy" },
3775
- "relatedCondition": { "@id": "schema:relatedCondition" },
3776
- "relatedDrug": { "@id": "schema:relatedDrug" },
3777
- "relatedLink": { "@id": "schema:relatedLink", "@type": "@id" },
3778
- "relatedStructure": { "@id": "schema:relatedStructure" },
3779
- "relatedTherapy": { "@id": "schema:relatedTherapy" },
3780
- "relatedTo": { "@id": "schema:relatedTo" },
3781
- "releaseDate": { "@id": "schema:releaseDate", "@type": "Date" },
3782
- "releaseNotes": { "@id": "schema:releaseNotes" },
3783
- "releaseOf": { "@id": "schema:releaseOf" },
3784
- "releasedEvent": { "@id": "schema:releasedEvent" },
3785
- "relevantOccupation": { "@id": "schema:relevantOccupation" },
3786
- "relevantSpecialty": { "@id": "schema:relevantSpecialty" },
3787
- "remainingAttendeeCapacity": {
3788
- "@id": "schema:remainingAttendeeCapacity",
3789
- },
3790
- "renegotiableLoan": { "@id": "schema:renegotiableLoan" },
3791
- "repeatCount": { "@id": "schema:repeatCount" },
3792
- "repeatFrequency": { "@id": "schema:repeatFrequency" },
3793
- "repetitions": { "@id": "schema:repetitions" },
3794
- "replacee": { "@id": "schema:replacee" },
3795
- "replacer": { "@id": "schema:replacer" },
3796
- "replyToUrl": { "@id": "schema:replyToUrl", "@type": "@id" },
3797
- "reportNumber": { "@id": "schema:reportNumber" },
3798
- "representativeOfPage": { "@id": "schema:representativeOfPage" },
3799
- "requiredCollateral": { "@id": "schema:requiredCollateral" },
3800
- "requiredGender": { "@id": "schema:requiredGender" },
3801
- "requiredMaxAge": { "@id": "schema:requiredMaxAge" },
3802
- "requiredMinAge": { "@id": "schema:requiredMinAge" },
3803
- "requiredQuantity": { "@id": "schema:requiredQuantity" },
3804
- "requirements": { "@id": "schema:requirements" },
3805
- "requiresSubscription": { "@id": "schema:requiresSubscription" },
3806
- "reservationFor": { "@id": "schema:reservationFor" },
3807
- "reservationId": { "@id": "schema:reservationId" },
3808
- "reservationStatus": { "@id": "schema:reservationStatus" },
3809
- "reservedTicket": { "@id": "schema:reservedTicket" },
3810
- "responsibilities": { "@id": "schema:responsibilities" },
3811
- "restPeriods": { "@id": "schema:restPeriods" },
3812
- "restockingFee": { "@id": "schema:restockingFee" },
3813
- "result": { "@id": "schema:result" },
3814
- "resultComment": { "@id": "schema:resultComment" },
3815
- "resultReview": { "@id": "schema:resultReview" },
3816
- "returnFees": { "@id": "schema:returnFees" },
3817
- "returnLabelSource": { "@id": "schema:returnLabelSource" },
3818
- "returnMethod": { "@id": "schema:returnMethod" },
3819
- "returnPolicyCategory": { "@id": "schema:returnPolicyCategory" },
3820
- "returnPolicyCountry": { "@id": "schema:returnPolicyCountry" },
3821
- "returnPolicySeasonalOverride": {
3822
- "@id": "schema:returnPolicySeasonalOverride",
3823
- },
3824
- "returnShippingFeesAmount": { "@id": "schema:returnShippingFeesAmount" },
3825
- "review": { "@id": "schema:review" },
3826
- "reviewAspect": { "@id": "schema:reviewAspect" },
3827
- "reviewBody": { "@id": "schema:reviewBody" },
3828
- "reviewCount": { "@id": "schema:reviewCount" },
3829
- "reviewRating": { "@id": "schema:reviewRating" },
3830
- "reviewedBy": { "@id": "schema:reviewedBy" },
3831
- "reviews": { "@id": "schema:reviews" },
3832
- "riskFactor": { "@id": "schema:riskFactor" },
3833
- "risks": { "@id": "schema:risks" },
3834
- "roleName": { "@id": "schema:roleName" },
3835
- "roofLoad": { "@id": "schema:roofLoad" },
3836
- "rsvpResponse": { "@id": "schema:rsvpResponse" },
3837
- "runsTo": { "@id": "schema:runsTo" },
3838
- "runtime": { "@id": "schema:runtime" },
3839
- "runtimePlatform": { "@id": "schema:runtimePlatform" },
3840
- "rxcui": { "@id": "schema:rxcui" },
3841
- "safetyConsideration": { "@id": "schema:safetyConsideration" },
3842
- "salaryCurrency": { "@id": "schema:salaryCurrency" },
3843
- "salaryUponCompletion": { "@id": "schema:salaryUponCompletion" },
3844
- "sameAs": { "@id": "schema:sameAs", "@type": "@id" },
3845
- "sampleType": { "@id": "schema:sampleType" },
3846
- "saturatedFatContent": { "@id": "schema:saturatedFatContent" },
3847
- "scheduleTimezone": { "@id": "schema:scheduleTimezone" },
3848
- "scheduledPaymentDate": {
3849
- "@id": "schema:scheduledPaymentDate",
3850
- "@type": "Date",
3851
- },
3852
- "scheduledTime": { "@id": "schema:scheduledTime", "@type": "Date" },
3853
- "schemaVersion": { "@id": "schema:schemaVersion" },
3854
- "schoolClosuresInfo": {
3855
- "@id": "schema:schoolClosuresInfo",
3856
- "@type": "@id",
3857
- },
3858
- "screenCount": { "@id": "schema:screenCount" },
3859
- "screenshot": { "@id": "schema:screenshot", "@type": "@id" },
3860
- "sdDatePublished": { "@id": "schema:sdDatePublished", "@type": "Date" },
3861
- "sdLicense": { "@id": "schema:sdLicense", "@type": "@id" },
3862
- "sdPublisher": { "@id": "schema:sdPublisher" },
3863
- "season": { "@id": "schema:season", "@type": "@id" },
3864
- "seasonNumber": { "@id": "schema:seasonNumber" },
3865
- "seasons": { "@id": "schema:seasons" },
3866
- "seatNumber": { "@id": "schema:seatNumber" },
3867
- "seatRow": { "@id": "schema:seatRow" },
3868
- "seatSection": { "@id": "schema:seatSection" },
3869
- "seatingCapacity": { "@id": "schema:seatingCapacity" },
3870
- "seatingType": { "@id": "schema:seatingType" },
3871
- "secondaryPrevention": { "@id": "schema:secondaryPrevention" },
3872
- "securityClearanceRequirement": {
3873
- "@id": "schema:securityClearanceRequirement",
3874
- },
3875
- "securityScreening": { "@id": "schema:securityScreening" },
3876
- "seeks": { "@id": "schema:seeks" },
3877
- "seller": { "@id": "schema:seller" },
3878
- "sender": { "@id": "schema:sender" },
3879
- "sensoryRequirement": { "@id": "schema:sensoryRequirement" },
3880
- "sensoryUnit": { "@id": "schema:sensoryUnit" },
3881
- "serialNumber": { "@id": "schema:serialNumber" },
3882
- "seriousAdverseOutcome": { "@id": "schema:seriousAdverseOutcome" },
3883
- "serverStatus": { "@id": "schema:serverStatus" },
3884
- "servesCuisine": { "@id": "schema:servesCuisine" },
3885
- "serviceArea": { "@id": "schema:serviceArea" },
3886
- "serviceAudience": { "@id": "schema:serviceAudience" },
3887
- "serviceLocation": { "@id": "schema:serviceLocation" },
3888
- "serviceOperator": { "@id": "schema:serviceOperator" },
3889
- "serviceOutput": { "@id": "schema:serviceOutput" },
3890
- "servicePhone": { "@id": "schema:servicePhone" },
3891
- "servicePostalAddress": { "@id": "schema:servicePostalAddress" },
3892
- "serviceSmsNumber": { "@id": "schema:serviceSmsNumber" },
3893
- "serviceType": { "@id": "schema:serviceType" },
3894
- "serviceUrl": { "@id": "schema:serviceUrl", "@type": "@id" },
3895
- "servingSize": { "@id": "schema:servingSize" },
3896
- "sha256": { "@id": "schema:sha256" },
3897
- "sharedContent": { "@id": "schema:sharedContent" },
3898
- "shippingDestination": { "@id": "schema:shippingDestination" },
3899
- "shippingDetails": { "@id": "schema:shippingDetails" },
3900
- "shippingLabel": { "@id": "schema:shippingLabel" },
3901
- "shippingOrigin": { "@id": "schema:shippingOrigin" },
3902
- "shippingRate": { "@id": "schema:shippingRate" },
3903
- "shippingSettingsLink": {
3904
- "@id": "schema:shippingSettingsLink",
3905
- "@type": "@id",
3906
- },
3907
- "sibling": { "@id": "schema:sibling" },
3908
- "siblings": { "@id": "schema:siblings" },
3909
- "signDetected": { "@id": "schema:signDetected" },
3910
- "signOrSymptom": { "@id": "schema:signOrSymptom" },
3911
- "significance": { "@id": "schema:significance" },
3912
- "significantLink": { "@id": "schema:significantLink", "@type": "@id" },
3913
- "significantLinks": { "@id": "schema:significantLinks", "@type": "@id" },
3914
- "size": { "@id": "schema:size" },
3915
- "sizeGroup": { "@id": "schema:sizeGroup" },
3916
- "sizeSystem": { "@id": "schema:sizeSystem" },
3917
- "skills": { "@id": "schema:skills" },
3918
- "sku": { "@id": "schema:sku" },
3919
- "slogan": { "@id": "schema:slogan" },
3920
- "smiles": { "@id": "schema:smiles" },
3921
- "smokingAllowed": { "@id": "schema:smokingAllowed" },
3922
- "sodiumContent": { "@id": "schema:sodiumContent" },
3923
- "softwareAddOn": { "@id": "schema:softwareAddOn" },
3924
- "softwareHelp": { "@id": "schema:softwareHelp" },
3925
- "softwareRequirements": { "@id": "schema:softwareRequirements" },
3926
- "softwareVersion": { "@id": "schema:softwareVersion" },
3927
- "sourceOrganization": { "@id": "schema:sourceOrganization" },
3928
- "sourcedFrom": { "@id": "schema:sourcedFrom" },
3929
- "spatial": { "@id": "schema:spatial" },
3930
- "spatialCoverage": { "@id": "schema:spatialCoverage" },
3931
- "speakable": { "@id": "schema:speakable", "@type": "@id" },
3932
- "specialCommitments": { "@id": "schema:specialCommitments" },
3933
- "specialOpeningHoursSpecification": {
3934
- "@id": "schema:specialOpeningHoursSpecification",
3935
- },
3936
- "specialty": { "@id": "schema:specialty" },
3937
- "speechToTextMarkup": { "@id": "schema:speechToTextMarkup" },
3938
- "speed": { "@id": "schema:speed" },
3939
- "spokenByCharacter": { "@id": "schema:spokenByCharacter" },
3940
- "sponsor": { "@id": "schema:sponsor" },
3941
- "sport": { "@id": "schema:sport" },
3942
- "sportsActivityLocation": { "@id": "schema:sportsActivityLocation" },
3943
- "sportsEvent": { "@id": "schema:sportsEvent" },
3944
- "sportsTeam": { "@id": "schema:sportsTeam" },
3945
- "spouse": { "@id": "schema:spouse" },
3946
- "stage": { "@id": "schema:stage" },
3947
- "stageAsNumber": { "@id": "schema:stageAsNumber" },
3948
- "starRating": { "@id": "schema:starRating" },
3949
- "startDate": { "@id": "schema:startDate", "@type": "Date" },
3950
- "startOffset": { "@id": "schema:startOffset" },
3951
- "startTime": { "@id": "schema:startTime" },
3952
- "statType": { "@id": "schema:statType" },
3953
- "status": { "@id": "schema:status" },
3954
- "steeringPosition": { "@id": "schema:steeringPosition" },
3955
- "step": { "@id": "schema:step" },
3956
- "stepValue": { "@id": "schema:stepValue" },
3957
- "steps": { "@id": "schema:steps" },
3958
- "storageRequirements": { "@id": "schema:storageRequirements" },
3959
- "streetAddress": { "@id": "schema:streetAddress" },
3960
- "strengthUnit": { "@id": "schema:strengthUnit" },
3961
- "strengthValue": { "@id": "schema:strengthValue" },
3962
- "structuralClass": { "@id": "schema:structuralClass" },
3963
- "study": { "@id": "schema:study" },
3964
- "studyDesign": { "@id": "schema:studyDesign" },
3965
- "studyLocation": { "@id": "schema:studyLocation" },
3966
- "studySubject": { "@id": "schema:studySubject" },
3967
- "stupidProperty": { "@id": "schema:stupidProperty" },
3968
- "subEvent": { "@id": "schema:subEvent" },
3969
- "subEvents": { "@id": "schema:subEvents" },
3970
- "subOrganization": { "@id": "schema:subOrganization" },
3971
- "subReservation": { "@id": "schema:subReservation" },
3972
- "subStageSuffix": { "@id": "schema:subStageSuffix" },
3973
- "subStructure": { "@id": "schema:subStructure" },
3974
- "subTest": { "@id": "schema:subTest" },
3975
- "subTrip": { "@id": "schema:subTrip" },
3976
- "subjectOf": { "@id": "schema:subjectOf" },
3977
- "subtitleLanguage": { "@id": "schema:subtitleLanguage" },
3978
- "successorOf": { "@id": "schema:successorOf" },
3979
- "sugarContent": { "@id": "schema:sugarContent" },
3980
- "suggestedAge": { "@id": "schema:suggestedAge" },
3981
- "suggestedAnswer": { "@id": "schema:suggestedAnswer" },
3982
- "suggestedGender": { "@id": "schema:suggestedGender" },
3983
- "suggestedMaxAge": { "@id": "schema:suggestedMaxAge" },
3984
- "suggestedMeasurement": { "@id": "schema:suggestedMeasurement" },
3985
- "suggestedMinAge": { "@id": "schema:suggestedMinAge" },
3986
- "suitableForDiet": { "@id": "schema:suitableForDiet" },
3987
- "superEvent": { "@id": "schema:superEvent" },
3988
- "supersededBy": { "@id": "schema:supersededBy" },
3989
- "supply": { "@id": "schema:supply" },
3990
- "supplyTo": { "@id": "schema:supplyTo" },
3991
- "supportingData": { "@id": "schema:supportingData" },
3992
- "surface": { "@id": "schema:surface" },
3993
- "syllabusSections": { "@id": "schema:syllabusSections" },
3994
- "target": { "@id": "schema:target", "@type": "@id" },
3995
- "targetCollection": { "@id": "schema:targetCollection" },
3996
- "targetDescription": { "@id": "schema:targetDescription" },
3997
- "targetName": { "@id": "schema:targetName" },
3998
- "targetPlatform": { "@id": "schema:targetPlatform" },
3999
- "targetPopulation": { "@id": "schema:targetPopulation" },
4000
- "targetProduct": { "@id": "schema:targetProduct" },
4001
- "targetUrl": { "@id": "schema:targetUrl", "@type": "@id" },
4002
- "taxID": { "@id": "schema:taxID" },
4003
- "taxonRank": { "@id": "schema:taxonRank" },
4004
- "taxonomicRange": { "@id": "schema:taxonomicRange" },
4005
- "teaches": { "@id": "schema:teaches" },
4006
- "telephone": { "@id": "schema:telephone" },
4007
- "temporal": { "@id": "schema:temporal" },
4008
- "temporalCoverage": { "@id": "schema:temporalCoverage" },
4009
- "termCode": { "@id": "schema:termCode" },
4010
- "termDuration": { "@id": "schema:termDuration" },
4011
- "termsOfService": { "@id": "schema:termsOfService" },
4012
- "termsPerYear": { "@id": "schema:termsPerYear" },
4013
- "text": { "@id": "schema:text" },
4014
- "textValue": { "@id": "schema:textValue" },
4015
- "thumbnail": { "@id": "schema:thumbnail" },
4016
- "thumbnailUrl": { "@id": "schema:thumbnailUrl", "@type": "@id" },
4017
- "tickerSymbol": { "@id": "schema:tickerSymbol" },
4018
- "ticketNumber": { "@id": "schema:ticketNumber" },
4019
- "ticketToken": { "@id": "schema:ticketToken" },
4020
- "ticketedSeat": { "@id": "schema:ticketedSeat" },
4021
- "timeOfDay": { "@id": "schema:timeOfDay" },
4022
- "timeRequired": { "@id": "schema:timeRequired" },
4023
- "timeToComplete": { "@id": "schema:timeToComplete" },
4024
- "tissueSample": { "@id": "schema:tissueSample" },
4025
- "title": { "@id": "schema:title" },
4026
- "titleEIDR": { "@id": "schema:titleEIDR" },
4027
- "toLocation": { "@id": "schema:toLocation" },
4028
- "toRecipient": { "@id": "schema:toRecipient" },
4029
- "tocContinuation": { "@id": "schema:tocContinuation" },
4030
- "tocEntry": { "@id": "schema:tocEntry" },
4031
- "tongueWeight": { "@id": "schema:tongueWeight" },
4032
- "tool": { "@id": "schema:tool" },
4033
- "torque": { "@id": "schema:torque" },
4034
- "totalHistoricalEnrollment": {
4035
- "@id": "schema:totalHistoricalEnrollment",
4036
- },
4037
- "totalJobOpenings": { "@id": "schema:totalJobOpenings" },
4038
- "totalPaymentDue": { "@id": "schema:totalPaymentDue" },
4039
- "totalPrice": { "@id": "schema:totalPrice" },
4040
- "totalTime": { "@id": "schema:totalTime" },
4041
- "tourBookingPage": { "@id": "schema:tourBookingPage", "@type": "@id" },
4042
- "touristType": { "@id": "schema:touristType" },
4043
- "track": { "@id": "schema:track" },
4044
- "trackingNumber": { "@id": "schema:trackingNumber" },
4045
- "trackingUrl": { "@id": "schema:trackingUrl", "@type": "@id" },
4046
- "tracks": { "@id": "schema:tracks" },
4047
- "trailer": { "@id": "schema:trailer" },
4048
- "trailerWeight": { "@id": "schema:trailerWeight" },
4049
- "trainName": { "@id": "schema:trainName" },
4050
- "trainNumber": { "@id": "schema:trainNumber" },
4051
- "trainingSalary": { "@id": "schema:trainingSalary" },
4052
- "transFatContent": { "@id": "schema:transFatContent" },
4053
- "transcript": { "@id": "schema:transcript" },
4054
- "transitTime": { "@id": "schema:transitTime" },
4055
- "transitTimeLabel": { "@id": "schema:transitTimeLabel" },
4056
- "translationOfWork": { "@id": "schema:translationOfWork" },
4057
- "translator": { "@id": "schema:translator" },
4058
- "transmissionMethod": { "@id": "schema:transmissionMethod" },
4059
- "travelBans": { "@id": "schema:travelBans", "@type": "@id" },
4060
- "trialDesign": { "@id": "schema:trialDesign" },
4061
- "tributary": { "@id": "schema:tributary" },
4062
- "tripOrigin": { "@id": "schema:tripOrigin" },
4063
- "typeOfBed": { "@id": "schema:typeOfBed" },
4064
- "typeOfGood": { "@id": "schema:typeOfGood" },
4065
- "typicalAgeRange": { "@id": "schema:typicalAgeRange" },
4066
- "typicalCreditsPerTerm": { "@id": "schema:typicalCreditsPerTerm" },
4067
- "typicalTest": { "@id": "schema:typicalTest" },
4068
- "underName": { "@id": "schema:underName" },
4069
- "unitCode": { "@id": "schema:unitCode" },
4070
- "unitText": { "@id": "schema:unitText" },
4071
- "unnamedSourcesPolicy": {
4072
- "@id": "schema:unnamedSourcesPolicy",
4073
- "@type": "@id",
4074
- },
4075
- "unsaturatedFatContent": { "@id": "schema:unsaturatedFatContent" },
4076
- "uploadDate": { "@id": "schema:uploadDate", "@type": "Date" },
4077
- "upvoteCount": { "@id": "schema:upvoteCount" },
4078
- "url": { "@id": "schema:url", "@type": "@id" },
4079
- "urlTemplate": { "@id": "schema:urlTemplate" },
4080
- "usNPI": { "@id": "schema:usNPI" },
4081
- "usageInfo": { "@id": "schema:usageInfo", "@type": "@id" },
4082
- "usedToDiagnose": { "@id": "schema:usedToDiagnose" },
4083
- "userInteractionCount": { "@id": "schema:userInteractionCount" },
4084
- "usesDevice": { "@id": "schema:usesDevice" },
4085
- "usesHealthPlanIdStandard": { "@id": "schema:usesHealthPlanIdStandard" },
4086
- "utterances": { "@id": "schema:utterances" },
4087
- "validFor": { "@id": "schema:validFor" },
4088
- "validForMemberTier": { "@id": "schema:validForMemberTier" },
4089
- "validFrom": { "@id": "schema:validFrom", "@type": "Date" },
4090
- "validIn": { "@id": "schema:validIn" },
4091
- "validThrough": { "@id": "schema:validThrough", "@type": "Date" },
4092
- "validUntil": { "@id": "schema:validUntil", "@type": "Date" },
4093
- "value": { "@id": "schema:value" },
4094
- "valueAddedTaxIncluded": { "@id": "schema:valueAddedTaxIncluded" },
4095
- "valueMaxLength": { "@id": "schema:valueMaxLength" },
4096
- "valueMinLength": { "@id": "schema:valueMinLength" },
4097
- "valueName": { "@id": "schema:valueName" },
4098
- "valuePattern": { "@id": "schema:valuePattern" },
4099
- "valueReference": { "@id": "schema:valueReference" },
4100
- "valueRequired": { "@id": "schema:valueRequired" },
4101
- "variableMeasured": { "@id": "schema:variableMeasured" },
4102
- "variablesMeasured": { "@id": "schema:variablesMeasured" },
4103
- "variantCover": { "@id": "schema:variantCover" },
4104
- "variesBy": { "@id": "schema:variesBy" },
4105
- "vatID": { "@id": "schema:vatID" },
4106
- "vehicleConfiguration": { "@id": "schema:vehicleConfiguration" },
4107
- "vehicleEngine": { "@id": "schema:vehicleEngine" },
4108
- "vehicleIdentificationNumber": {
4109
- "@id": "schema:vehicleIdentificationNumber",
4110
- },
4111
- "vehicleInteriorColor": { "@id": "schema:vehicleInteriorColor" },
4112
- "vehicleInteriorType": { "@id": "schema:vehicleInteriorType" },
4113
- "vehicleModelDate": { "@id": "schema:vehicleModelDate", "@type": "Date" },
4114
- "vehicleSeatingCapacity": { "@id": "schema:vehicleSeatingCapacity" },
4115
- "vehicleSpecialUsage": { "@id": "schema:vehicleSpecialUsage" },
4116
- "vehicleTransmission": { "@id": "schema:vehicleTransmission" },
4117
- "vendor": { "@id": "schema:vendor" },
4118
- "verificationFactCheckingPolicy": {
4119
- "@id": "schema:verificationFactCheckingPolicy",
4120
- "@type": "@id",
4121
- },
4122
- "version": { "@id": "schema:version" },
4123
- "video": { "@id": "schema:video" },
4124
- "videoFormat": { "@id": "schema:videoFormat" },
4125
- "videoFrameSize": { "@id": "schema:videoFrameSize" },
4126
- "videoQuality": { "@id": "schema:videoQuality" },
4127
- "volumeNumber": { "@id": "schema:volumeNumber" },
4128
- "warning": { "@id": "schema:warning" },
4129
- "warranty": { "@id": "schema:warranty" },
4130
- "warrantyPromise": { "@id": "schema:warrantyPromise" },
4131
- "warrantyScope": { "@id": "schema:warrantyScope" },
4132
- "webCheckinTime": { "@id": "schema:webCheckinTime" },
4133
- "webFeed": { "@id": "schema:webFeed", "@type": "@id" },
4134
- "weight": { "@id": "schema:weight" },
4135
- "weightTotal": { "@id": "schema:weightTotal" },
4136
- "wheelbase": { "@id": "schema:wheelbase" },
4137
- "width": { "@id": "schema:width" },
4138
- "winner": { "@id": "schema:winner" },
4139
- "wordCount": { "@id": "schema:wordCount" },
4140
- "workExample": { "@id": "schema:workExample" },
4141
- "workFeatured": { "@id": "schema:workFeatured" },
4142
- "workHours": { "@id": "schema:workHours" },
4143
- "workLocation": { "@id": "schema:workLocation" },
4144
- "workPerformed": { "@id": "schema:workPerformed" },
4145
- "workPresented": { "@id": "schema:workPresented" },
4146
- "workTranslation": { "@id": "schema:workTranslation" },
4147
- "workload": { "@id": "schema:workload" },
4148
- "worksFor": { "@id": "schema:worksFor" },
4149
- "worstRating": { "@id": "schema:worstRating" },
4150
- "xpath": { "@id": "schema:xpath" },
4151
- "yearBuilt": { "@id": "schema:yearBuilt" },
4152
- "yearlyRevenue": { "@id": "schema:yearlyRevenue" },
4153
- "yearsInOperation": { "@id": "schema:yearsInOperation" },
4154
- "yield": { "@id": "schema:yield" },
4155
- },
4156
- },
4157
- "https://gotosocial.org/ns": {
4158
- "@context": {
4159
- "gts": "https://gotosocial.org/ns#",
4160
- "interactionPolicy": {
4161
- "@id": "gts:interactionPolicy",
4162
- "@type": "@id",
4163
- },
4164
- "canLike": {
4165
- "@id": "gts:canLike",
4166
- "@type": "@id",
4167
- },
4168
- "canReply": {
4169
- "@id": "gts:canReply",
4170
- "@type": "@id",
4171
- },
4172
- "canAnnounce": {
4173
- "@id": "gts:canAnnounce",
4174
- "@type": "@id",
4175
- },
4176
- "always": {
4177
- "@id": "gts:always",
4178
- "@type": "@id",
4179
- },
4180
- "approvalRequired": {
4181
- "@id": "gts:approvalRequired",
4182
- "@type": "@id",
4183
- },
4184
- "approvedBy": {
4185
- "@id": "gts:approvedBy",
4186
- "@type": "@id",
4187
- },
4188
- },
4189
- },
4190
- };
4191
- export default preloadedContexts;