@fedify/vocab-runtime 2.1.0-dev.565 → 2.1.0-dev.599

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 (71) hide show
  1. package/deno.json +4 -3
  2. package/dist/chunk-CUT6urMc.cjs +30 -0
  3. package/dist/jsonld.cjs +8 -0
  4. package/dist/jsonld.d.cts +6 -0
  5. package/dist/jsonld.d.ts +6 -0
  6. package/dist/jsonld.js +7 -0
  7. package/dist/mod.cjs +4485 -4329
  8. package/dist/mod.d.cts +95 -4
  9. package/dist/mod.d.ts +95 -4
  10. package/dist/mod.js +4474 -4299
  11. package/dist/tests/decimal.test.cjs +154 -0
  12. package/dist/tests/decimal.test.d.cts +1 -0
  13. package/dist/tests/decimal.test.d.ts +1 -0
  14. package/dist/tests/decimal.test.js +153 -0
  15. package/dist/tests/docloader-B7jXFZpf.cjs +4562 -0
  16. package/dist/tests/docloader-DMCOWvVB.js +4550 -0
  17. package/dist/tests/docloader.test.cjs +7 -4491
  18. package/dist/tests/docloader.test.js +4 -4488
  19. package/dist/tests/internal/multicodec.test.cjs +77 -0
  20. package/dist/tests/internal/multicodec.test.d.cts +1 -0
  21. package/dist/tests/internal/multicodec.test.d.ts +1 -0
  22. package/dist/tests/internal/multicodec.test.js +76 -0
  23. package/dist/tests/key-ByCmSI2y.js +183 -0
  24. package/dist/tests/key-CCPn6TEY.cjs +231 -0
  25. package/dist/tests/key.test.cjs +36 -212
  26. package/dist/tests/key.test.js +9 -185
  27. package/dist/tests/langstr-BsVE3s9u.js +30 -0
  28. package/dist/tests/langstr-EPh86hXK.cjs +36 -0
  29. package/dist/tests/langstr.test.cjs +5 -33
  30. package/dist/tests/langstr.test.js +1 -29
  31. package/dist/tests/link.test.cjs +1 -1
  32. package/dist/tests/link.test.js +1 -1
  33. package/dist/tests/multibase/multibase.test.cjs +1 -1
  34. package/dist/tests/multibase/multibase.test.js +1 -1
  35. package/dist/tests/multicodec--6hQ74zI.cjs +59 -0
  36. package/dist/tests/multicodec-Dq3IiOV4.js +41 -0
  37. package/dist/tests/{request-3ywvRFy1.js → request-BQtyeAfw.js} +6 -3
  38. package/dist/tests/{request-Dhnqve0g.cjs → request-CW9KOmQu.cjs} +6 -3
  39. package/dist/tests/request.test.cjs +1 -1
  40. package/dist/tests/request.test.js +1 -1
  41. package/dist/tests/url.test.cjs +1 -1
  42. package/dist/tests/url.test.js +1 -1
  43. package/package.json +12 -2
  44. package/src/contexts/activitystreams.json +379 -0
  45. package/src/contexts/did-v1.json +57 -0
  46. package/src/contexts/fep-5711.json +36 -0
  47. package/src/contexts/gotosocial.json +86 -0
  48. package/src/contexts/identity-v1.json +152 -0
  49. package/src/contexts/joinmastodon.json +28 -0
  50. package/src/contexts/schemaorg.json +8845 -0
  51. package/src/contexts/security-data-integrity-v1.json +78 -0
  52. package/src/contexts/security-data-integrity-v2.json +81 -0
  53. package/src/contexts/security-multikey-v1.json +35 -0
  54. package/src/contexts/security-v1.json +74 -0
  55. package/src/contexts/webfinger.json +10 -0
  56. package/src/contexts.ts +33 -4392
  57. package/src/decimal.test.ts +90 -0
  58. package/src/decimal.ts +112 -0
  59. package/src/internal/multicodec.test.ts +68 -0
  60. package/src/internal/multicodec.ts +53 -0
  61. package/src/jsonld.ts +4 -0
  62. package/src/key.test.ts +22 -1
  63. package/src/key.ts +9 -8
  64. package/src/mod.ts +6 -0
  65. package/tsdown.config.ts +1 -1
  66. /package/dist/tests/{link-Ck2yj4dH.js → link-C3q2TC2G.js} +0 -0
  67. /package/dist/tests/{link-CdFPEo9O.cjs → link-DYNFAdNu.cjs} +0 -0
  68. /package/dist/tests/{multibase-DStmqni9.js → multibase-B4g8pz6F.js} +0 -0
  69. /package/dist/tests/{multibase-BFbBiaPE.cjs → multibase-o_ovPHYJ.cjs} +0 -0
  70. /package/dist/tests/{url-fW_DHbih.js → url-CWEP9Zs9.js} +0 -0
  71. /package/dist/tests/{url-C5Vs9nYh.cjs → url-DIjOdK8Q.cjs} +0 -0
@@ -1,11 +1,10 @@
1
- import { FetchError, createActivityPubRequest, deno_default, logRequest } from "./request-3ywvRFy1.js";
2
- import { HttpHeaderLink } from "./link-Ck2yj4dH.js";
3
- import { UrlError, validatePublicUrl } from "./url-fW_DHbih.js";
1
+ import { contexts_default, getDocumentLoader } from "./docloader-DMCOWvVB.js";
2
+ import { FetchError } from "./request-BQtyeAfw.js";
3
+ import "./link-C3q2TC2G.js";
4
+ import { UrlError } from "./url-CWEP9Zs9.js";
4
5
  import "node:module";
5
6
  import { deepStrictEqual, ok, rejects } from "node:assert";
6
7
  import { test } from "node:test";
7
- import { getLogger } from "@logtape/logtape";
8
- import { SpanKind, SpanStatusCode, trace } from "@opentelemetry/api";
9
8
 
10
9
  //#region rolldown:runtime
11
10
  var __create = Object.create;
@@ -1266,4489 +1265,6 @@ var FetchMock_default = fetchMock;
1266
1265
  //#region ../../node_modules/.pnpm/fetch-mock@12.6.0/node_modules/fetch-mock/dist/esm/index.js
1267
1266
  var esm_default = FetchMock_default;
1268
1267
 
1269
- //#endregion
1270
- //#region src/contexts.ts
1271
- const preloadedContexts = {
1272
- "https://www.w3.org/ns/activitystreams": { "@context": {
1273
- "@vocab": "_:",
1274
- "xsd": "http://www.w3.org/2001/XMLSchema#",
1275
- "as": "https://www.w3.org/ns/activitystreams#",
1276
- "ldp": "http://www.w3.org/ns/ldp#",
1277
- "vcard": "http://www.w3.org/2006/vcard/ns#",
1278
- "id": "@id",
1279
- "type": "@type",
1280
- "Accept": "as:Accept",
1281
- "Activity": "as:Activity",
1282
- "IntransitiveActivity": "as:IntransitiveActivity",
1283
- "Add": "as:Add",
1284
- "Announce": "as:Announce",
1285
- "Application": "as:Application",
1286
- "Arrive": "as:Arrive",
1287
- "Article": "as:Article",
1288
- "Audio": "as:Audio",
1289
- "Block": "as:Block",
1290
- "Collection": "as:Collection",
1291
- "CollectionPage": "as:CollectionPage",
1292
- "Relationship": "as:Relationship",
1293
- "Create": "as:Create",
1294
- "Delete": "as:Delete",
1295
- "Dislike": "as:Dislike",
1296
- "Document": "as:Document",
1297
- "Event": "as:Event",
1298
- "Follow": "as:Follow",
1299
- "Flag": "as:Flag",
1300
- "Group": "as:Group",
1301
- "Ignore": "as:Ignore",
1302
- "Image": "as:Image",
1303
- "Invite": "as:Invite",
1304
- "Join": "as:Join",
1305
- "Leave": "as:Leave",
1306
- "Like": "as:Like",
1307
- "Link": "as:Link",
1308
- "Mention": "as:Mention",
1309
- "Note": "as:Note",
1310
- "Object": "as:Object",
1311
- "Offer": "as:Offer",
1312
- "OrderedCollection": "as:OrderedCollection",
1313
- "OrderedCollectionPage": "as:OrderedCollectionPage",
1314
- "Organization": "as:Organization",
1315
- "Page": "as:Page",
1316
- "Person": "as:Person",
1317
- "Place": "as:Place",
1318
- "Profile": "as:Profile",
1319
- "Question": "as:Question",
1320
- "Reject": "as:Reject",
1321
- "Remove": "as:Remove",
1322
- "Service": "as:Service",
1323
- "TentativeAccept": "as:TentativeAccept",
1324
- "TentativeReject": "as:TentativeReject",
1325
- "Tombstone": "as:Tombstone",
1326
- "Undo": "as:Undo",
1327
- "Update": "as:Update",
1328
- "Video": "as:Video",
1329
- "View": "as:View",
1330
- "Listen": "as:Listen",
1331
- "Read": "as:Read",
1332
- "Move": "as:Move",
1333
- "Travel": "as:Travel",
1334
- "IsFollowing": "as:IsFollowing",
1335
- "IsFollowedBy": "as:IsFollowedBy",
1336
- "IsContact": "as:IsContact",
1337
- "IsMember": "as:IsMember",
1338
- "subject": {
1339
- "@id": "as:subject",
1340
- "@type": "@id"
1341
- },
1342
- "relationship": {
1343
- "@id": "as:relationship",
1344
- "@type": "@id"
1345
- },
1346
- "actor": {
1347
- "@id": "as:actor",
1348
- "@type": "@id"
1349
- },
1350
- "attributedTo": {
1351
- "@id": "as:attributedTo",
1352
- "@type": "@id"
1353
- },
1354
- "attachment": {
1355
- "@id": "as:attachment",
1356
- "@type": "@id"
1357
- },
1358
- "bcc": {
1359
- "@id": "as:bcc",
1360
- "@type": "@id"
1361
- },
1362
- "bto": {
1363
- "@id": "as:bto",
1364
- "@type": "@id"
1365
- },
1366
- "cc": {
1367
- "@id": "as:cc",
1368
- "@type": "@id"
1369
- },
1370
- "context": {
1371
- "@id": "as:context",
1372
- "@type": "@id"
1373
- },
1374
- "current": {
1375
- "@id": "as:current",
1376
- "@type": "@id"
1377
- },
1378
- "first": {
1379
- "@id": "as:first",
1380
- "@type": "@id"
1381
- },
1382
- "generator": {
1383
- "@id": "as:generator",
1384
- "@type": "@id"
1385
- },
1386
- "icon": {
1387
- "@id": "as:icon",
1388
- "@type": "@id"
1389
- },
1390
- "image": {
1391
- "@id": "as:image",
1392
- "@type": "@id"
1393
- },
1394
- "inReplyTo": {
1395
- "@id": "as:inReplyTo",
1396
- "@type": "@id"
1397
- },
1398
- "items": {
1399
- "@id": "as:items",
1400
- "@type": "@id"
1401
- },
1402
- "instrument": {
1403
- "@id": "as:instrument",
1404
- "@type": "@id"
1405
- },
1406
- "orderedItems": {
1407
- "@id": "as:items",
1408
- "@type": "@id",
1409
- "@container": "@list"
1410
- },
1411
- "last": {
1412
- "@id": "as:last",
1413
- "@type": "@id"
1414
- },
1415
- "location": {
1416
- "@id": "as:location",
1417
- "@type": "@id"
1418
- },
1419
- "next": {
1420
- "@id": "as:next",
1421
- "@type": "@id"
1422
- },
1423
- "object": {
1424
- "@id": "as:object",
1425
- "@type": "@id"
1426
- },
1427
- "oneOf": {
1428
- "@id": "as:oneOf",
1429
- "@type": "@id"
1430
- },
1431
- "anyOf": {
1432
- "@id": "as:anyOf",
1433
- "@type": "@id"
1434
- },
1435
- "closed": {
1436
- "@id": "as:closed",
1437
- "@type": "xsd:dateTime"
1438
- },
1439
- "origin": {
1440
- "@id": "as:origin",
1441
- "@type": "@id"
1442
- },
1443
- "accuracy": {
1444
- "@id": "as:accuracy",
1445
- "@type": "xsd:float"
1446
- },
1447
- "prev": {
1448
- "@id": "as:prev",
1449
- "@type": "@id"
1450
- },
1451
- "preview": {
1452
- "@id": "as:preview",
1453
- "@type": "@id"
1454
- },
1455
- "replies": {
1456
- "@id": "as:replies",
1457
- "@type": "@id"
1458
- },
1459
- "result": {
1460
- "@id": "as:result",
1461
- "@type": "@id"
1462
- },
1463
- "audience": {
1464
- "@id": "as:audience",
1465
- "@type": "@id"
1466
- },
1467
- "partOf": {
1468
- "@id": "as:partOf",
1469
- "@type": "@id"
1470
- },
1471
- "tag": {
1472
- "@id": "as:tag",
1473
- "@type": "@id"
1474
- },
1475
- "target": {
1476
- "@id": "as:target",
1477
- "@type": "@id"
1478
- },
1479
- "to": {
1480
- "@id": "as:to",
1481
- "@type": "@id"
1482
- },
1483
- "url": {
1484
- "@id": "as:url",
1485
- "@type": "@id"
1486
- },
1487
- "altitude": {
1488
- "@id": "as:altitude",
1489
- "@type": "xsd:float"
1490
- },
1491
- "content": "as:content",
1492
- "contentMap": {
1493
- "@id": "as:content",
1494
- "@container": "@language"
1495
- },
1496
- "name": "as:name",
1497
- "nameMap": {
1498
- "@id": "as:name",
1499
- "@container": "@language"
1500
- },
1501
- "duration": {
1502
- "@id": "as:duration",
1503
- "@type": "xsd:duration"
1504
- },
1505
- "endTime": {
1506
- "@id": "as:endTime",
1507
- "@type": "xsd:dateTime"
1508
- },
1509
- "height": {
1510
- "@id": "as:height",
1511
- "@type": "xsd:nonNegativeInteger"
1512
- },
1513
- "href": {
1514
- "@id": "as:href",
1515
- "@type": "@id"
1516
- },
1517
- "hreflang": "as:hreflang",
1518
- "latitude": {
1519
- "@id": "as:latitude",
1520
- "@type": "xsd:float"
1521
- },
1522
- "longitude": {
1523
- "@id": "as:longitude",
1524
- "@type": "xsd:float"
1525
- },
1526
- "mediaType": "as:mediaType",
1527
- "published": {
1528
- "@id": "as:published",
1529
- "@type": "xsd:dateTime"
1530
- },
1531
- "radius": {
1532
- "@id": "as:radius",
1533
- "@type": "xsd:float"
1534
- },
1535
- "rel": "as:rel",
1536
- "startIndex": {
1537
- "@id": "as:startIndex",
1538
- "@type": "xsd:nonNegativeInteger"
1539
- },
1540
- "startTime": {
1541
- "@id": "as:startTime",
1542
- "@type": "xsd:dateTime"
1543
- },
1544
- "summary": "as:summary",
1545
- "summaryMap": {
1546
- "@id": "as:summary",
1547
- "@container": "@language"
1548
- },
1549
- "totalItems": {
1550
- "@id": "as:totalItems",
1551
- "@type": "xsd:nonNegativeInteger"
1552
- },
1553
- "units": "as:units",
1554
- "updated": {
1555
- "@id": "as:updated",
1556
- "@type": "xsd:dateTime"
1557
- },
1558
- "width": {
1559
- "@id": "as:width",
1560
- "@type": "xsd:nonNegativeInteger"
1561
- },
1562
- "describes": {
1563
- "@id": "as:describes",
1564
- "@type": "@id"
1565
- },
1566
- "formerType": {
1567
- "@id": "as:formerType",
1568
- "@type": "@id"
1569
- },
1570
- "deleted": {
1571
- "@id": "as:deleted",
1572
- "@type": "xsd:dateTime"
1573
- },
1574
- "inbox": {
1575
- "@id": "ldp:inbox",
1576
- "@type": "@id"
1577
- },
1578
- "outbox": {
1579
- "@id": "as:outbox",
1580
- "@type": "@id"
1581
- },
1582
- "following": {
1583
- "@id": "as:following",
1584
- "@type": "@id"
1585
- },
1586
- "followers": {
1587
- "@id": "as:followers",
1588
- "@type": "@id"
1589
- },
1590
- "streams": {
1591
- "@id": "as:streams",
1592
- "@type": "@id"
1593
- },
1594
- "preferredUsername": "as:preferredUsername",
1595
- "endpoints": {
1596
- "@id": "as:endpoints",
1597
- "@type": "@id"
1598
- },
1599
- "uploadMedia": {
1600
- "@id": "as:uploadMedia",
1601
- "@type": "@id"
1602
- },
1603
- "proxyUrl": {
1604
- "@id": "as:proxyUrl",
1605
- "@type": "@id"
1606
- },
1607
- "liked": {
1608
- "@id": "as:liked",
1609
- "@type": "@id"
1610
- },
1611
- "oauthAuthorizationEndpoint": {
1612
- "@id": "as:oauthAuthorizationEndpoint",
1613
- "@type": "@id"
1614
- },
1615
- "oauthTokenEndpoint": {
1616
- "@id": "as:oauthTokenEndpoint",
1617
- "@type": "@id"
1618
- },
1619
- "provideClientKey": {
1620
- "@id": "as:provideClientKey",
1621
- "@type": "@id"
1622
- },
1623
- "signClientKey": {
1624
- "@id": "as:signClientKey",
1625
- "@type": "@id"
1626
- },
1627
- "sharedInbox": {
1628
- "@id": "as:sharedInbox",
1629
- "@type": "@id"
1630
- },
1631
- "Public": {
1632
- "@id": "as:Public",
1633
- "@type": "@id"
1634
- },
1635
- "source": "as:source",
1636
- "likes": {
1637
- "@id": "as:likes",
1638
- "@type": "@id"
1639
- },
1640
- "shares": {
1641
- "@id": "as:shares",
1642
- "@type": "@id"
1643
- },
1644
- "alsoKnownAs": {
1645
- "@id": "as:alsoKnownAs",
1646
- "@type": "@id"
1647
- }
1648
- } },
1649
- "https://w3id.org/security/v1": { "@context": {
1650
- "id": "@id",
1651
- "type": "@type",
1652
- "dc": "http://purl.org/dc/terms/",
1653
- "sec": "https://w3id.org/security#",
1654
- "xsd": "http://www.w3.org/2001/XMLSchema#",
1655
- "EcdsaKoblitzSignature2016": "sec:EcdsaKoblitzSignature2016",
1656
- "Ed25519Signature2018": "sec:Ed25519Signature2018",
1657
- "EncryptedMessage": "sec:EncryptedMessage",
1658
- "GraphSignature2012": "sec:GraphSignature2012",
1659
- "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
1660
- "LinkedDataSignature2016": "sec:LinkedDataSignature2016",
1661
- "CryptographicKey": "sec:Key",
1662
- "authenticationTag": "sec:authenticationTag",
1663
- "canonicalizationAlgorithm": "sec:canonicalizationAlgorithm",
1664
- "cipherAlgorithm": "sec:cipherAlgorithm",
1665
- "cipherData": "sec:cipherData",
1666
- "cipherKey": "sec:cipherKey",
1667
- "created": {
1668
- "@id": "dc:created",
1669
- "@type": "xsd:dateTime"
1670
- },
1671
- "creator": {
1672
- "@id": "dc:creator",
1673
- "@type": "@id"
1674
- },
1675
- "digestAlgorithm": "sec:digestAlgorithm",
1676
- "digestValue": "sec:digestValue",
1677
- "domain": "sec:domain",
1678
- "encryptionKey": "sec:encryptionKey",
1679
- "expiration": {
1680
- "@id": "sec:expiration",
1681
- "@type": "xsd:dateTime"
1682
- },
1683
- "expires": {
1684
- "@id": "sec:expiration",
1685
- "@type": "xsd:dateTime"
1686
- },
1687
- "initializationVector": "sec:initializationVector",
1688
- "iterationCount": "sec:iterationCount",
1689
- "nonce": "sec:nonce",
1690
- "normalizationAlgorithm": "sec:normalizationAlgorithm",
1691
- "owner": {
1692
- "@id": "sec:owner",
1693
- "@type": "@id"
1694
- },
1695
- "password": "sec:password",
1696
- "privateKey": {
1697
- "@id": "sec:privateKey",
1698
- "@type": "@id"
1699
- },
1700
- "privateKeyPem": "sec:privateKeyPem",
1701
- "publicKey": {
1702
- "@id": "sec:publicKey",
1703
- "@type": "@id"
1704
- },
1705
- "publicKeyBase58": "sec:publicKeyBase58",
1706
- "publicKeyPem": "sec:publicKeyPem",
1707
- "publicKeyWif": "sec:publicKeyWif",
1708
- "publicKeyService": {
1709
- "@id": "sec:publicKeyService",
1710
- "@type": "@id"
1711
- },
1712
- "revoked": {
1713
- "@id": "sec:revoked",
1714
- "@type": "xsd:dateTime"
1715
- },
1716
- "salt": "sec:salt",
1717
- "signature": "sec:signature",
1718
- "signatureAlgorithm": "sec:signingAlgorithm",
1719
- "signatureValue": "sec:signatureValue"
1720
- } },
1721
- "https://w3id.org/security/data-integrity/v1": { "@context": {
1722
- "id": "@id",
1723
- "type": "@type",
1724
- "@protected": true,
1725
- "digestMultibase": {
1726
- "@id": "https://w3id.org/security#digestMultibase",
1727
- "@type": "https://w3id.org/security#multibase"
1728
- },
1729
- "proof": {
1730
- "@id": "https://w3id.org/security#proof",
1731
- "@type": "@id",
1732
- "@container": "@graph"
1733
- },
1734
- "DataIntegrityProof": {
1735
- "@id": "https://w3id.org/security#DataIntegrityProof",
1736
- "@context": {
1737
- "@protected": true,
1738
- "id": "@id",
1739
- "type": "@type",
1740
- "challenge": "https://w3id.org/security#challenge",
1741
- "created": {
1742
- "@id": "http://purl.org/dc/terms/created",
1743
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1744
- },
1745
- "domain": "https://w3id.org/security#domain",
1746
- "expires": {
1747
- "@id": "https://w3id.org/security#expiration",
1748
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1749
- },
1750
- "nonce": "https://w3id.org/security#nonce",
1751
- "proofPurpose": {
1752
- "@id": "https://w3id.org/security#proofPurpose",
1753
- "@type": "@vocab",
1754
- "@context": {
1755
- "@protected": true,
1756
- "id": "@id",
1757
- "type": "@type",
1758
- "assertionMethod": {
1759
- "@id": "https://w3id.org/security#assertionMethod",
1760
- "@type": "@id",
1761
- "@container": "@set"
1762
- },
1763
- "authentication": {
1764
- "@id": "https://w3id.org/security#authenticationMethod",
1765
- "@type": "@id",
1766
- "@container": "@set"
1767
- },
1768
- "capabilityInvocation": {
1769
- "@id": "https://w3id.org/security#capabilityInvocationMethod",
1770
- "@type": "@id",
1771
- "@container": "@set"
1772
- },
1773
- "capabilityDelegation": {
1774
- "@id": "https://w3id.org/security#capabilityDelegationMethod",
1775
- "@type": "@id",
1776
- "@container": "@set"
1777
- },
1778
- "keyAgreement": {
1779
- "@id": "https://w3id.org/security#keyAgreementMethod",
1780
- "@type": "@id",
1781
- "@container": "@set"
1782
- }
1783
- }
1784
- },
1785
- "cryptosuite": "https://w3id.org/security#cryptosuite",
1786
- "proofValue": {
1787
- "@id": "https://w3id.org/security#proofValue",
1788
- "@type": "https://w3id.org/security#multibase"
1789
- },
1790
- "verificationMethod": {
1791
- "@id": "https://w3id.org/security#verificationMethod",
1792
- "@type": "@id"
1793
- }
1794
- }
1795
- }
1796
- } },
1797
- "https://w3id.org/security/data-integrity/v2": { "@context": {
1798
- "id": "@id",
1799
- "type": "@type",
1800
- "@protected": true,
1801
- "proof": {
1802
- "@id": "https://w3id.org/security#proof",
1803
- "@type": "@id",
1804
- "@container": "@graph"
1805
- },
1806
- "DataIntegrityProof": {
1807
- "@id": "https://w3id.org/security#DataIntegrityProof",
1808
- "@context": {
1809
- "@protected": true,
1810
- "id": "@id",
1811
- "type": "@type",
1812
- "challenge": "https://w3id.org/security#challenge",
1813
- "created": {
1814
- "@id": "http://purl.org/dc/terms/created",
1815
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1816
- },
1817
- "domain": "https://w3id.org/security#domain",
1818
- "expires": {
1819
- "@id": "https://w3id.org/security#expiration",
1820
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1821
- },
1822
- "nonce": "https://w3id.org/security#nonce",
1823
- "previousProof": {
1824
- "@id": "https://w3id.org/security#previousProof",
1825
- "@type": "@id"
1826
- },
1827
- "proofPurpose": {
1828
- "@id": "https://w3id.org/security#proofPurpose",
1829
- "@type": "@vocab",
1830
- "@context": {
1831
- "@protected": true,
1832
- "id": "@id",
1833
- "type": "@type",
1834
- "assertionMethod": {
1835
- "@id": "https://w3id.org/security#assertionMethod",
1836
- "@type": "@id",
1837
- "@container": "@set"
1838
- },
1839
- "authentication": {
1840
- "@id": "https://w3id.org/security#authenticationMethod",
1841
- "@type": "@id",
1842
- "@container": "@set"
1843
- },
1844
- "capabilityInvocation": {
1845
- "@id": "https://w3id.org/security#capabilityInvocationMethod",
1846
- "@type": "@id",
1847
- "@container": "@set"
1848
- },
1849
- "capabilityDelegation": {
1850
- "@id": "https://w3id.org/security#capabilityDelegationMethod",
1851
- "@type": "@id",
1852
- "@container": "@set"
1853
- },
1854
- "keyAgreement": {
1855
- "@id": "https://w3id.org/security#keyAgreementMethod",
1856
- "@type": "@id",
1857
- "@container": "@set"
1858
- }
1859
- }
1860
- },
1861
- "cryptosuite": {
1862
- "@id": "https://w3id.org/security#cryptosuite",
1863
- "@type": "https://w3id.org/security#cryptosuiteString"
1864
- },
1865
- "proofValue": {
1866
- "@id": "https://w3id.org/security#proofValue",
1867
- "@type": "https://w3id.org/security#multibase"
1868
- },
1869
- "verificationMethod": {
1870
- "@id": "https://w3id.org/security#verificationMethod",
1871
- "@type": "@id"
1872
- }
1873
- }
1874
- }
1875
- } },
1876
- "https://www.w3.org/ns/did/v1": { "@context": {
1877
- "@protected": true,
1878
- "id": "@id",
1879
- "type": "@type",
1880
- "alsoKnownAs": {
1881
- "@id": "https://www.w3.org/ns/activitystreams#alsoKnownAs",
1882
- "@type": "@id"
1883
- },
1884
- "assertionMethod": {
1885
- "@id": "https://w3id.org/security#assertionMethod",
1886
- "@type": "@id",
1887
- "@container": "@set"
1888
- },
1889
- "authentication": {
1890
- "@id": "https://w3id.org/security#authenticationMethod",
1891
- "@type": "@id",
1892
- "@container": "@set"
1893
- },
1894
- "capabilityDelegation": {
1895
- "@id": "https://w3id.org/security#capabilityDelegationMethod",
1896
- "@type": "@id",
1897
- "@container": "@set"
1898
- },
1899
- "capabilityInvocation": {
1900
- "@id": "https://w3id.org/security#capabilityInvocationMethod",
1901
- "@type": "@id",
1902
- "@container": "@set"
1903
- },
1904
- "controller": {
1905
- "@id": "https://w3id.org/security#controller",
1906
- "@type": "@id"
1907
- },
1908
- "keyAgreement": {
1909
- "@id": "https://w3id.org/security#keyAgreementMethod",
1910
- "@type": "@id",
1911
- "@container": "@set"
1912
- },
1913
- "service": {
1914
- "@id": "https://www.w3.org/ns/did#service",
1915
- "@type": "@id",
1916
- "@context": {
1917
- "@protected": true,
1918
- "id": "@id",
1919
- "type": "@type",
1920
- "serviceEndpoint": {
1921
- "@id": "https://www.w3.org/ns/did#serviceEndpoint",
1922
- "@type": "@id"
1923
- }
1924
- }
1925
- },
1926
- "verificationMethod": {
1927
- "@id": "https://w3id.org/security#verificationMethod",
1928
- "@type": "@id"
1929
- }
1930
- } },
1931
- "https://w3id.org/security/multikey/v1": { "@context": {
1932
- "id": "@id",
1933
- "type": "@type",
1934
- "@protected": true,
1935
- "Multikey": {
1936
- "@id": "https://w3id.org/security#Multikey",
1937
- "@context": {
1938
- "@protected": true,
1939
- "id": "@id",
1940
- "type": "@type",
1941
- "controller": {
1942
- "@id": "https://w3id.org/security#controller",
1943
- "@type": "@id"
1944
- },
1945
- "revoked": {
1946
- "@id": "https://w3id.org/security#revoked",
1947
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1948
- },
1949
- "expires": {
1950
- "@id": "https://w3id.org/security#expiration",
1951
- "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
1952
- },
1953
- "publicKeyMultibase": {
1954
- "@id": "https://w3id.org/security#publicKeyMultibase",
1955
- "@type": "https://w3id.org/security#multibase"
1956
- },
1957
- "secretKeyMultibase": {
1958
- "@id": "https://w3id.org/security#secretKeyMultibase",
1959
- "@type": "https://w3id.org/security#multibase"
1960
- }
1961
- }
1962
- }
1963
- } },
1964
- "https://w3id.org/identity/v1": { "@context": {
1965
- "id": "@id",
1966
- "type": "@type",
1967
- "cred": "https://w3id.org/credentials#",
1968
- "dc": "http://purl.org/dc/terms/",
1969
- "identity": "https://w3id.org/identity#",
1970
- "perm": "https://w3id.org/permissions#",
1971
- "ps": "https://w3id.org/payswarm#",
1972
- "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
1973
- "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
1974
- "sec": "https://w3id.org/security#",
1975
- "schema": "http://schema.org/",
1976
- "xsd": "http://www.w3.org/2001/XMLSchema#",
1977
- "Group": "https://www.w3.org/ns/activitystreams#Group",
1978
- "claim": {
1979
- "@id": "cred:claim",
1980
- "@type": "@id"
1981
- },
1982
- "credential": {
1983
- "@id": "cred:credential",
1984
- "@type": "@id"
1985
- },
1986
- "issued": {
1987
- "@id": "cred:issued",
1988
- "@type": "xsd:dateTime"
1989
- },
1990
- "issuer": {
1991
- "@id": "cred:issuer",
1992
- "@type": "@id"
1993
- },
1994
- "recipient": {
1995
- "@id": "cred:recipient",
1996
- "@type": "@id"
1997
- },
1998
- "Credential": "cred:Credential",
1999
- "CryptographicKeyCredential": "cred:CryptographicKeyCredential",
2000
- "about": {
2001
- "@id": "schema:about",
2002
- "@type": "@id"
2003
- },
2004
- "address": {
2005
- "@id": "schema:address",
2006
- "@type": "@id"
2007
- },
2008
- "addressCountry": "schema:addressCountry",
2009
- "addressLocality": "schema:addressLocality",
2010
- "addressRegion": "schema:addressRegion",
2011
- "comment": "rdfs:comment",
2012
- "created": {
2013
- "@id": "dc:created",
2014
- "@type": "xsd:dateTime"
2015
- },
2016
- "creator": {
2017
- "@id": "dc:creator",
2018
- "@type": "@id"
2019
- },
2020
- "description": "schema:description",
2021
- "email": "schema:email",
2022
- "familyName": "schema:familyName",
2023
- "givenName": "schema:givenName",
2024
- "image": {
2025
- "@id": "schema:image",
2026
- "@type": "@id"
2027
- },
2028
- "label": "rdfs:label",
2029
- "name": "schema:name",
2030
- "postalCode": "schema:postalCode",
2031
- "streetAddress": "schema:streetAddress",
2032
- "title": "dc:title",
2033
- "url": {
2034
- "@id": "schema:url",
2035
- "@type": "@id"
2036
- },
2037
- "Person": "schema:Person",
2038
- "PostalAddress": "schema:PostalAddress",
2039
- "Organization": "schema:Organization",
2040
- "identityService": {
2041
- "@id": "identity:identityService",
2042
- "@type": "@id"
2043
- },
2044
- "idp": {
2045
- "@id": "identity:idp",
2046
- "@type": "@id"
2047
- },
2048
- "Identity": "identity:Identity",
2049
- "paymentProcessor": "ps:processor",
2050
- "preferences": {
2051
- "@id": "ps:preferences",
2052
- "@type": "@vocab"
2053
- },
2054
- "cipherAlgorithm": "sec:cipherAlgorithm",
2055
- "cipherData": "sec:cipherData",
2056
- "cipherKey": "sec:cipherKey",
2057
- "digestAlgorithm": "sec:digestAlgorithm",
2058
- "digestValue": "sec:digestValue",
2059
- "domain": "sec:domain",
2060
- "expires": {
2061
- "@id": "sec:expiration",
2062
- "@type": "xsd:dateTime"
2063
- },
2064
- "initializationVector": "sec:initializationVector",
2065
- "member": {
2066
- "@id": "schema:member",
2067
- "@type": "@id"
2068
- },
2069
- "memberOf": {
2070
- "@id": "schema:memberOf",
2071
- "@type": "@id"
2072
- },
2073
- "nonce": "sec:nonce",
2074
- "normalizationAlgorithm": "sec:normalizationAlgorithm",
2075
- "owner": {
2076
- "@id": "sec:owner",
2077
- "@type": "@id"
2078
- },
2079
- "password": "sec:password",
2080
- "privateKey": {
2081
- "@id": "sec:privateKey",
2082
- "@type": "@id"
2083
- },
2084
- "privateKeyPem": "sec:privateKeyPem",
2085
- "publicKey": {
2086
- "@id": "sec:publicKey",
2087
- "@type": "@id"
2088
- },
2089
- "publicKeyPem": "sec:publicKeyPem",
2090
- "publicKeyService": {
2091
- "@id": "sec:publicKeyService",
2092
- "@type": "@id"
2093
- },
2094
- "revoked": {
2095
- "@id": "sec:revoked",
2096
- "@type": "xsd:dateTime"
2097
- },
2098
- "signature": "sec:signature",
2099
- "signatureAlgorithm": "sec:signatureAlgorithm",
2100
- "signatureValue": "sec:signatureValue",
2101
- "CryptographicKey": "sec:Key",
2102
- "EncryptedMessage": "sec:EncryptedMessage",
2103
- "GraphSignature2012": "sec:GraphSignature2012",
2104
- "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
2105
- "accessControl": {
2106
- "@id": "perm:accessControl",
2107
- "@type": "@id"
2108
- },
2109
- "writePermission": {
2110
- "@id": "perm:writePermission",
2111
- "@type": "@id"
2112
- }
2113
- } },
2114
- "https://purl.archive.org/socialweb/webfinger": { "@context": {
2115
- "wf": "https://purl.archive.org/socialweb/webfinger#",
2116
- "xsd": "http://www.w3.org/2001/XMLSchema#",
2117
- "webfinger": {
2118
- "@id": "wf:webfinger",
2119
- "@type": "xsd:string"
2120
- }
2121
- } },
2122
- "http://schema.org/": { "@context": {
2123
- "type": "@type",
2124
- "id": "@id",
2125
- "HTML": { "@id": "rdf:HTML" },
2126
- "@vocab": "http://schema.org/",
2127
- "csvw": "http://www.w3.org/ns/csvw#",
2128
- "dc": "http://purl.org/dc/elements/1.1/",
2129
- "dcat": "http://www.w3.org/ns/dcat#",
2130
- "dcmitype": "http://purl.org/dc/dcmitype/",
2131
- "dcterms": "http://purl.org/dc/terms/",
2132
- "dcam": "http://purl.org/dc/dcam/",
2133
- "doap": "http://usefulinc.com/ns/doap#",
2134
- "foaf": "http://xmlns.com/foaf/0.1/",
2135
- "odrl": "http://www.w3.org/ns/odrl/2/",
2136
- "org": "http://www.w3.org/ns/org#",
2137
- "owl": "http://www.w3.org/2002/07/owl#",
2138
- "prof": "http://www.w3.org/ns/dx/prof/",
2139
- "prov": "http://www.w3.org/ns/prov#",
2140
- "qb": "http://purl.org/linked-data/cube#",
2141
- "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
2142
- "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
2143
- "schema": "http://schema.org/",
2144
- "sh": "http://www.w3.org/ns/shacl#",
2145
- "skos": "http://www.w3.org/2004/02/skos/core#",
2146
- "sosa": "http://www.w3.org/ns/sosa/",
2147
- "ssn": "http://www.w3.org/ns/ssn/",
2148
- "time": "http://www.w3.org/2006/time#",
2149
- "vann": "http://purl.org/vocab/vann/",
2150
- "void": "http://rdfs.org/ns/void#",
2151
- "xsd": "http://www.w3.org/2001/XMLSchema#",
2152
- "xml": "http://www.w3.org/XML/1998/namespace",
2153
- "dct": "http://purl.org/dc/terms/",
2154
- "dctype": "http://purl.org/dc/dcmitype/",
2155
- "3DModel": { "@id": "schema:3DModel" },
2156
- "AMRadioChannel": { "@id": "schema:AMRadioChannel" },
2157
- "APIReference": { "@id": "schema:APIReference" },
2158
- "Abdomen": { "@id": "schema:Abdomen" },
2159
- "AboutPage": { "@id": "schema:AboutPage" },
2160
- "AcceptAction": { "@id": "schema:AcceptAction" },
2161
- "Accommodation": { "@id": "schema:Accommodation" },
2162
- "AccountingService": { "@id": "schema:AccountingService" },
2163
- "AchieveAction": { "@id": "schema:AchieveAction" },
2164
- "Action": { "@id": "schema:Action" },
2165
- "ActionAccessSpecification": { "@id": "schema:ActionAccessSpecification" },
2166
- "ActionStatusType": { "@id": "schema:ActionStatusType" },
2167
- "ActivateAction": { "@id": "schema:ActivateAction" },
2168
- "ActivationFee": { "@id": "schema:ActivationFee" },
2169
- "ActiveActionStatus": { "@id": "schema:ActiveActionStatus" },
2170
- "ActiveNotRecruiting": { "@id": "schema:ActiveNotRecruiting" },
2171
- "AddAction": { "@id": "schema:AddAction" },
2172
- "AdministrativeArea": { "@id": "schema:AdministrativeArea" },
2173
- "AdultEntertainment": { "@id": "schema:AdultEntertainment" },
2174
- "AdultOrientedEnumeration": { "@id": "schema:AdultOrientedEnumeration" },
2175
- "AdvertiserContentArticle": { "@id": "schema:AdvertiserContentArticle" },
2176
- "AerobicActivity": { "@id": "schema:AerobicActivity" },
2177
- "AggregateOffer": { "@id": "schema:AggregateOffer" },
2178
- "AggregateRating": { "@id": "schema:AggregateRating" },
2179
- "AgreeAction": { "@id": "schema:AgreeAction" },
2180
- "Airline": { "@id": "schema:Airline" },
2181
- "Airport": { "@id": "schema:Airport" },
2182
- "AlbumRelease": { "@id": "schema:AlbumRelease" },
2183
- "AlcoholConsideration": { "@id": "schema:AlcoholConsideration" },
2184
- "AlgorithmicMediaDigitalSource": { "@id": "schema:AlgorithmicMediaDigitalSource" },
2185
- "AlgorithmicallyEnhancedDigitalSource": { "@id": "schema:AlgorithmicallyEnhancedDigitalSource" },
2186
- "AlignmentObject": { "@id": "schema:AlignmentObject" },
2187
- "AllWheelDriveConfiguration": { "@id": "schema:AllWheelDriveConfiguration" },
2188
- "AllergiesHealthAspect": { "@id": "schema:AllergiesHealthAspect" },
2189
- "AllocateAction": { "@id": "schema:AllocateAction" },
2190
- "AmpStory": { "@id": "schema:AmpStory" },
2191
- "AmusementPark": { "@id": "schema:AmusementPark" },
2192
- "AnaerobicActivity": { "@id": "schema:AnaerobicActivity" },
2193
- "AnalysisNewsArticle": { "@id": "schema:AnalysisNewsArticle" },
2194
- "AnatomicalStructure": { "@id": "schema:AnatomicalStructure" },
2195
- "AnatomicalSystem": { "@id": "schema:AnatomicalSystem" },
2196
- "AndroidPlatform": { "@id": "schema:AndroidPlatform" },
2197
- "Anesthesia": { "@id": "schema:Anesthesia" },
2198
- "AnimalShelter": { "@id": "schema:AnimalShelter" },
2199
- "Answer": { "@id": "schema:Answer" },
2200
- "Apartment": { "@id": "schema:Apartment" },
2201
- "ApartmentComplex": { "@id": "schema:ApartmentComplex" },
2202
- "Appearance": { "@id": "schema:Appearance" },
2203
- "AppendAction": { "@id": "schema:AppendAction" },
2204
- "ApplyAction": { "@id": "schema:ApplyAction" },
2205
- "ApprovedIndication": { "@id": "schema:ApprovedIndication" },
2206
- "Aquarium": { "@id": "schema:Aquarium" },
2207
- "ArchiveComponent": { "@id": "schema:ArchiveComponent" },
2208
- "ArchiveOrganization": { "@id": "schema:ArchiveOrganization" },
2209
- "ArriveAction": { "@id": "schema:ArriveAction" },
2210
- "ArtGallery": { "@id": "schema:ArtGallery" },
2211
- "Artery": { "@id": "schema:Artery" },
2212
- "Article": { "@id": "schema:Article" },
2213
- "AskAction": { "@id": "schema:AskAction" },
2214
- "AskPublicNewsArticle": { "@id": "schema:AskPublicNewsArticle" },
2215
- "AssessAction": { "@id": "schema:AssessAction" },
2216
- "AssignAction": { "@id": "schema:AssignAction" },
2217
- "Atlas": { "@id": "schema:Atlas" },
2218
- "Attorney": { "@id": "schema:Attorney" },
2219
- "Audience": { "@id": "schema:Audience" },
2220
- "AudioObject": { "@id": "schema:AudioObject" },
2221
- "AudioObjectSnapshot": { "@id": "schema:AudioObjectSnapshot" },
2222
- "Audiobook": { "@id": "schema:Audiobook" },
2223
- "AudiobookFormat": { "@id": "schema:AudiobookFormat" },
2224
- "AuthoritativeLegalValue": { "@id": "schema:AuthoritativeLegalValue" },
2225
- "AuthorizeAction": { "@id": "schema:AuthorizeAction" },
2226
- "AutoBodyShop": { "@id": "schema:AutoBodyShop" },
2227
- "AutoDealer": { "@id": "schema:AutoDealer" },
2228
- "AutoPartsStore": { "@id": "schema:AutoPartsStore" },
2229
- "AutoRental": { "@id": "schema:AutoRental" },
2230
- "AutoRepair": { "@id": "schema:AutoRepair" },
2231
- "AutoWash": { "@id": "schema:AutoWash" },
2232
- "AutomatedTeller": { "@id": "schema:AutomatedTeller" },
2233
- "AutomotiveBusiness": { "@id": "schema:AutomotiveBusiness" },
2234
- "Ayurvedic": { "@id": "schema:Ayurvedic" },
2235
- "BackOrder": { "@id": "schema:BackOrder" },
2236
- "BackgroundNewsArticle": { "@id": "schema:BackgroundNewsArticle" },
2237
- "Bacteria": { "@id": "schema:Bacteria" },
2238
- "Bakery": { "@id": "schema:Bakery" },
2239
- "Balance": { "@id": "schema:Balance" },
2240
- "BankAccount": { "@id": "schema:BankAccount" },
2241
- "BankOrCreditUnion": { "@id": "schema:BankOrCreditUnion" },
2242
- "BarOrPub": { "@id": "schema:BarOrPub" },
2243
- "Barcode": { "@id": "schema:Barcode" },
2244
- "BasicIncome": { "@id": "schema:BasicIncome" },
2245
- "Beach": { "@id": "schema:Beach" },
2246
- "BeautySalon": { "@id": "schema:BeautySalon" },
2247
- "BedAndBreakfast": { "@id": "schema:BedAndBreakfast" },
2248
- "BedDetails": { "@id": "schema:BedDetails" },
2249
- "BedType": { "@id": "schema:BedType" },
2250
- "BefriendAction": { "@id": "schema:BefriendAction" },
2251
- "BenefitsHealthAspect": { "@id": "schema:BenefitsHealthAspect" },
2252
- "BikeStore": { "@id": "schema:BikeStore" },
2253
- "BioChemEntity": { "@id": "schema:BioChemEntity" },
2254
- "Blog": { "@id": "schema:Blog" },
2255
- "BlogPosting": { "@id": "schema:BlogPosting" },
2256
- "BloodTest": { "@id": "schema:BloodTest" },
2257
- "BoardingPolicyType": { "@id": "schema:BoardingPolicyType" },
2258
- "BoatReservation": { "@id": "schema:BoatReservation" },
2259
- "BoatTerminal": { "@id": "schema:BoatTerminal" },
2260
- "BoatTrip": { "@id": "schema:BoatTrip" },
2261
- "BodyMeasurementArm": { "@id": "schema:BodyMeasurementArm" },
2262
- "BodyMeasurementBust": { "@id": "schema:BodyMeasurementBust" },
2263
- "BodyMeasurementChest": { "@id": "schema:BodyMeasurementChest" },
2264
- "BodyMeasurementFoot": { "@id": "schema:BodyMeasurementFoot" },
2265
- "BodyMeasurementHand": { "@id": "schema:BodyMeasurementHand" },
2266
- "BodyMeasurementHead": { "@id": "schema:BodyMeasurementHead" },
2267
- "BodyMeasurementHeight": { "@id": "schema:BodyMeasurementHeight" },
2268
- "BodyMeasurementHips": { "@id": "schema:BodyMeasurementHips" },
2269
- "BodyMeasurementInsideLeg": { "@id": "schema:BodyMeasurementInsideLeg" },
2270
- "BodyMeasurementNeck": { "@id": "schema:BodyMeasurementNeck" },
2271
- "BodyMeasurementTypeEnumeration": { "@id": "schema:BodyMeasurementTypeEnumeration" },
2272
- "BodyMeasurementUnderbust": { "@id": "schema:BodyMeasurementUnderbust" },
2273
- "BodyMeasurementWaist": { "@id": "schema:BodyMeasurementWaist" },
2274
- "BodyMeasurementWeight": { "@id": "schema:BodyMeasurementWeight" },
2275
- "BodyOfWater": { "@id": "schema:BodyOfWater" },
2276
- "Bone": { "@id": "schema:Bone" },
2277
- "Book": { "@id": "schema:Book" },
2278
- "BookFormatType": { "@id": "schema:BookFormatType" },
2279
- "BookSeries": { "@id": "schema:BookSeries" },
2280
- "BookStore": { "@id": "schema:BookStore" },
2281
- "BookmarkAction": { "@id": "schema:BookmarkAction" },
2282
- "Boolean": { "@id": "schema:Boolean" },
2283
- "BorrowAction": { "@id": "schema:BorrowAction" },
2284
- "BowlingAlley": { "@id": "schema:BowlingAlley" },
2285
- "BrainStructure": { "@id": "schema:BrainStructure" },
2286
- "Brand": { "@id": "schema:Brand" },
2287
- "BreadcrumbList": { "@id": "schema:BreadcrumbList" },
2288
- "Brewery": { "@id": "schema:Brewery" },
2289
- "Bridge": { "@id": "schema:Bridge" },
2290
- "BroadcastChannel": { "@id": "schema:BroadcastChannel" },
2291
- "BroadcastEvent": { "@id": "schema:BroadcastEvent" },
2292
- "BroadcastFrequencySpecification": { "@id": "schema:BroadcastFrequencySpecification" },
2293
- "BroadcastRelease": { "@id": "schema:BroadcastRelease" },
2294
- "BroadcastService": { "@id": "schema:BroadcastService" },
2295
- "BrokerageAccount": { "@id": "schema:BrokerageAccount" },
2296
- "BuddhistTemple": { "@id": "schema:BuddhistTemple" },
2297
- "BusOrCoach": { "@id": "schema:BusOrCoach" },
2298
- "BusReservation": { "@id": "schema:BusReservation" },
2299
- "BusStation": { "@id": "schema:BusStation" },
2300
- "BusStop": { "@id": "schema:BusStop" },
2301
- "BusTrip": { "@id": "schema:BusTrip" },
2302
- "BusinessAudience": { "@id": "schema:BusinessAudience" },
2303
- "BusinessEntityType": { "@id": "schema:BusinessEntityType" },
2304
- "BusinessEvent": { "@id": "schema:BusinessEvent" },
2305
- "BusinessFunction": { "@id": "schema:BusinessFunction" },
2306
- "BusinessSupport": { "@id": "schema:BusinessSupport" },
2307
- "BuyAction": { "@id": "schema:BuyAction" },
2308
- "ByBankTransferInAdvance": { "@id": "schema:ByBankTransferInAdvance" },
2309
- "ByInvoice": { "@id": "schema:ByInvoice" },
2310
- "CDCPMDRecord": { "@id": "schema:CDCPMDRecord" },
2311
- "CDFormat": { "@id": "schema:CDFormat" },
2312
- "COD": { "@id": "schema:COD" },
2313
- "CT": { "@id": "schema:CT" },
2314
- "CableOrSatelliteService": { "@id": "schema:CableOrSatelliteService" },
2315
- "CafeOrCoffeeShop": { "@id": "schema:CafeOrCoffeeShop" },
2316
- "Campground": { "@id": "schema:Campground" },
2317
- "CampingPitch": { "@id": "schema:CampingPitch" },
2318
- "Canal": { "@id": "schema:Canal" },
2319
- "CancelAction": { "@id": "schema:CancelAction" },
2320
- "Car": { "@id": "schema:Car" },
2321
- "CarUsageType": { "@id": "schema:CarUsageType" },
2322
- "Cardiovascular": { "@id": "schema:Cardiovascular" },
2323
- "CardiovascularExam": { "@id": "schema:CardiovascularExam" },
2324
- "CaseSeries": { "@id": "schema:CaseSeries" },
2325
- "Cash": { "@id": "schema:Cash" },
2326
- "Casino": { "@id": "schema:Casino" },
2327
- "CassetteFormat": { "@id": "schema:CassetteFormat" },
2328
- "CategoryCode": { "@id": "schema:CategoryCode" },
2329
- "CategoryCodeSet": { "@id": "schema:CategoryCodeSet" },
2330
- "CatholicChurch": { "@id": "schema:CatholicChurch" },
2331
- "CausesHealthAspect": { "@id": "schema:CausesHealthAspect" },
2332
- "Cemetery": { "@id": "schema:Cemetery" },
2333
- "Certification": { "@id": "schema:Certification" },
2334
- "CertificationActive": { "@id": "schema:CertificationActive" },
2335
- "CertificationInactive": { "@id": "schema:CertificationInactive" },
2336
- "CertificationStatusEnumeration": { "@id": "schema:CertificationStatusEnumeration" },
2337
- "Chapter": { "@id": "schema:Chapter" },
2338
- "CharitableIncorporatedOrganization": { "@id": "schema:CharitableIncorporatedOrganization" },
2339
- "CheckAction": { "@id": "schema:CheckAction" },
2340
- "CheckInAction": { "@id": "schema:CheckInAction" },
2341
- "CheckInAdvance": { "@id": "schema:CheckInAdvance" },
2342
- "CheckOutAction": { "@id": "schema:CheckOutAction" },
2343
- "CheckoutPage": { "@id": "schema:CheckoutPage" },
2344
- "ChemicalSubstance": { "@id": "schema:ChemicalSubstance" },
2345
- "ChildCare": { "@id": "schema:ChildCare" },
2346
- "ChildrensEvent": { "@id": "schema:ChildrensEvent" },
2347
- "Chiropractic": { "@id": "schema:Chiropractic" },
2348
- "ChooseAction": { "@id": "schema:ChooseAction" },
2349
- "Church": { "@id": "schema:Church" },
2350
- "City": { "@id": "schema:City" },
2351
- "CityHall": { "@id": "schema:CityHall" },
2352
- "CivicStructure": { "@id": "schema:CivicStructure" },
2353
- "Claim": { "@id": "schema:Claim" },
2354
- "ClaimReview": { "@id": "schema:ClaimReview" },
2355
- "Class": { "@id": "schema:Class" },
2356
- "CleaningFee": { "@id": "schema:CleaningFee" },
2357
- "Clinician": { "@id": "schema:Clinician" },
2358
- "Clip": { "@id": "schema:Clip" },
2359
- "ClothingStore": { "@id": "schema:ClothingStore" },
2360
- "CoOp": { "@id": "schema:CoOp" },
2361
- "Code": { "@id": "schema:Code" },
2362
- "CohortStudy": { "@id": "schema:CohortStudy" },
2363
- "Collection": { "@id": "schema:Collection" },
2364
- "CollectionPage": { "@id": "schema:CollectionPage" },
2365
- "CollegeOrUniversity": { "@id": "schema:CollegeOrUniversity" },
2366
- "ComedyClub": { "@id": "schema:ComedyClub" },
2367
- "ComedyEvent": { "@id": "schema:ComedyEvent" },
2368
- "ComicCoverArt": { "@id": "schema:ComicCoverArt" },
2369
- "ComicIssue": { "@id": "schema:ComicIssue" },
2370
- "ComicSeries": { "@id": "schema:ComicSeries" },
2371
- "ComicStory": { "@id": "schema:ComicStory" },
2372
- "Comment": { "@id": "schema:Comment" },
2373
- "CommentAction": { "@id": "schema:CommentAction" },
2374
- "CommentPermission": { "@id": "schema:CommentPermission" },
2375
- "CommunicateAction": { "@id": "schema:CommunicateAction" },
2376
- "CommunityHealth": { "@id": "schema:CommunityHealth" },
2377
- "CompilationAlbum": { "@id": "schema:CompilationAlbum" },
2378
- "CompleteDataFeed": { "@id": "schema:CompleteDataFeed" },
2379
- "Completed": { "@id": "schema:Completed" },
2380
- "CompletedActionStatus": { "@id": "schema:CompletedActionStatus" },
2381
- "CompositeCaptureDigitalSource": { "@id": "schema:CompositeCaptureDigitalSource" },
2382
- "CompositeSyntheticDigitalSource": { "@id": "schema:CompositeSyntheticDigitalSource" },
2383
- "CompositeWithTrainedAlgorithmicMediaDigitalSource": { "@id": "schema:CompositeWithTrainedAlgorithmicMediaDigitalSource" },
2384
- "CompoundPriceSpecification": { "@id": "schema:CompoundPriceSpecification" },
2385
- "ComputerLanguage": { "@id": "schema:ComputerLanguage" },
2386
- "ComputerStore": { "@id": "schema:ComputerStore" },
2387
- "ConfirmAction": { "@id": "schema:ConfirmAction" },
2388
- "Consortium": { "@id": "schema:Consortium" },
2389
- "ConstraintNode": { "@id": "schema:ConstraintNode" },
2390
- "ConsumeAction": { "@id": "schema:ConsumeAction" },
2391
- "ContactPage": { "@id": "schema:ContactPage" },
2392
- "ContactPoint": { "@id": "schema:ContactPoint" },
2393
- "ContactPointOption": { "@id": "schema:ContactPointOption" },
2394
- "ContagiousnessHealthAspect": { "@id": "schema:ContagiousnessHealthAspect" },
2395
- "Continent": { "@id": "schema:Continent" },
2396
- "ControlAction": { "@id": "schema:ControlAction" },
2397
- "ConvenienceStore": { "@id": "schema:ConvenienceStore" },
2398
- "Conversation": { "@id": "schema:Conversation" },
2399
- "CookAction": { "@id": "schema:CookAction" },
2400
- "Corporation": { "@id": "schema:Corporation" },
2401
- "CorrectionComment": { "@id": "schema:CorrectionComment" },
2402
- "Country": { "@id": "schema:Country" },
2403
- "Course": { "@id": "schema:Course" },
2404
- "CourseInstance": { "@id": "schema:CourseInstance" },
2405
- "Courthouse": { "@id": "schema:Courthouse" },
2406
- "CoverArt": { "@id": "schema:CoverArt" },
2407
- "CovidTestingFacility": { "@id": "schema:CovidTestingFacility" },
2408
- "CreateAction": { "@id": "schema:CreateAction" },
2409
- "CreativeWork": { "@id": "schema:CreativeWork" },
2410
- "CreativeWorkSeason": { "@id": "schema:CreativeWorkSeason" },
2411
- "CreativeWorkSeries": { "@id": "schema:CreativeWorkSeries" },
2412
- "CreditCard": { "@id": "schema:CreditCard" },
2413
- "Crematorium": { "@id": "schema:Crematorium" },
2414
- "CriticReview": { "@id": "schema:CriticReview" },
2415
- "CrossSectional": { "@id": "schema:CrossSectional" },
2416
- "CssSelectorType": { "@id": "schema:CssSelectorType" },
2417
- "CurrencyConversionService": { "@id": "schema:CurrencyConversionService" },
2418
- "DDxElement": { "@id": "schema:DDxElement" },
2419
- "DJMixAlbum": { "@id": "schema:DJMixAlbum" },
2420
- "DVDFormat": { "@id": "schema:DVDFormat" },
2421
- "DamagedCondition": { "@id": "schema:DamagedCondition" },
2422
- "DanceEvent": { "@id": "schema:DanceEvent" },
2423
- "DanceGroup": { "@id": "schema:DanceGroup" },
2424
- "DangerousGoodConsideration": { "@id": "schema:DangerousGoodConsideration" },
2425
- "DataCatalog": { "@id": "schema:DataCatalog" },
2426
- "DataDownload": { "@id": "schema:DataDownload" },
2427
- "DataDrivenMediaDigitalSource": { "@id": "schema:DataDrivenMediaDigitalSource" },
2428
- "DataFeed": { "@id": "schema:DataFeed" },
2429
- "DataFeedItem": { "@id": "schema:DataFeedItem" },
2430
- "DataType": { "@id": "schema:DataType" },
2431
- "Dataset": { "@id": "schema:Dataset" },
2432
- "Date": { "@id": "schema:Date" },
2433
- "DateTime": { "@id": "schema:DateTime" },
2434
- "DatedMoneySpecification": { "@id": "schema:DatedMoneySpecification" },
2435
- "DayOfWeek": { "@id": "schema:DayOfWeek" },
2436
- "DaySpa": { "@id": "schema:DaySpa" },
2437
- "DeactivateAction": { "@id": "schema:DeactivateAction" },
2438
- "DecontextualizedContent": { "@id": "schema:DecontextualizedContent" },
2439
- "DefenceEstablishment": { "@id": "schema:DefenceEstablishment" },
2440
- "DefinedRegion": { "@id": "schema:DefinedRegion" },
2441
- "DefinedTerm": { "@id": "schema:DefinedTerm" },
2442
- "DefinedTermSet": { "@id": "schema:DefinedTermSet" },
2443
- "DefinitiveLegalValue": { "@id": "schema:DefinitiveLegalValue" },
2444
- "DeleteAction": { "@id": "schema:DeleteAction" },
2445
- "DeliveryChargeSpecification": { "@id": "schema:DeliveryChargeSpecification" },
2446
- "DeliveryEvent": { "@id": "schema:DeliveryEvent" },
2447
- "DeliveryMethod": { "@id": "schema:DeliveryMethod" },
2448
- "DeliveryTimeSettings": { "@id": "schema:DeliveryTimeSettings" },
2449
- "Demand": { "@id": "schema:Demand" },
2450
- "DemoAlbum": { "@id": "schema:DemoAlbum" },
2451
- "DemoGameAvailability": { "@id": "schema:DemoGameAvailability" },
2452
- "Dentist": { "@id": "schema:Dentist" },
2453
- "Dentistry": { "@id": "schema:Dentistry" },
2454
- "DepartAction": { "@id": "schema:DepartAction" },
2455
- "DepartmentStore": { "@id": "schema:DepartmentStore" },
2456
- "DepositAccount": { "@id": "schema:DepositAccount" },
2457
- "Dermatologic": { "@id": "schema:Dermatologic" },
2458
- "Dermatology": { "@id": "schema:Dermatology" },
2459
- "DesktopWebPlatform": { "@id": "schema:DesktopWebPlatform" },
2460
- "DiabeticDiet": { "@id": "schema:DiabeticDiet" },
2461
- "Diagnostic": { "@id": "schema:Diagnostic" },
2462
- "DiagnosticLab": { "@id": "schema:DiagnosticLab" },
2463
- "DiagnosticProcedure": { "@id": "schema:DiagnosticProcedure" },
2464
- "Diet": { "@id": "schema:Diet" },
2465
- "DietNutrition": { "@id": "schema:DietNutrition" },
2466
- "DietarySupplement": { "@id": "schema:DietarySupplement" },
2467
- "DigitalArtDigitalSource": { "@id": "schema:DigitalArtDigitalSource" },
2468
- "DigitalAudioTapeFormat": { "@id": "schema:DigitalAudioTapeFormat" },
2469
- "DigitalCaptureDigitalSource": { "@id": "schema:DigitalCaptureDigitalSource" },
2470
- "DigitalDocument": { "@id": "schema:DigitalDocument" },
2471
- "DigitalDocumentPermission": { "@id": "schema:DigitalDocumentPermission" },
2472
- "DigitalDocumentPermissionType": { "@id": "schema:DigitalDocumentPermissionType" },
2473
- "DigitalFormat": { "@id": "schema:DigitalFormat" },
2474
- "DigitalPlatformEnumeration": { "@id": "schema:DigitalPlatformEnumeration" },
2475
- "DirectDebit": { "@id": "schema:DirectDebit" },
2476
- "DisabilitySupport": { "@id": "schema:DisabilitySupport" },
2477
- "DisagreeAction": { "@id": "schema:DisagreeAction" },
2478
- "Discontinued": { "@id": "schema:Discontinued" },
2479
- "DiscoverAction": { "@id": "schema:DiscoverAction" },
2480
- "DiscussionForumPosting": { "@id": "schema:DiscussionForumPosting" },
2481
- "DislikeAction": { "@id": "schema:DislikeAction" },
2482
- "Distance": { "@id": "schema:Distance" },
2483
- "DistanceFee": { "@id": "schema:DistanceFee" },
2484
- "Distillery": { "@id": "schema:Distillery" },
2485
- "DonateAction": { "@id": "schema:DonateAction" },
2486
- "DoseSchedule": { "@id": "schema:DoseSchedule" },
2487
- "DoubleBlindedTrial": { "@id": "schema:DoubleBlindedTrial" },
2488
- "DownloadAction": { "@id": "schema:DownloadAction" },
2489
- "Downpayment": { "@id": "schema:Downpayment" },
2490
- "DrawAction": { "@id": "schema:DrawAction" },
2491
- "Drawing": { "@id": "schema:Drawing" },
2492
- "DrinkAction": { "@id": "schema:DrinkAction" },
2493
- "DriveWheelConfigurationValue": { "@id": "schema:DriveWheelConfigurationValue" },
2494
- "DrivingSchoolVehicleUsage": { "@id": "schema:DrivingSchoolVehicleUsage" },
2495
- "Drug": { "@id": "schema:Drug" },
2496
- "DrugClass": { "@id": "schema:DrugClass" },
2497
- "DrugCost": { "@id": "schema:DrugCost" },
2498
- "DrugCostCategory": { "@id": "schema:DrugCostCategory" },
2499
- "DrugLegalStatus": { "@id": "schema:DrugLegalStatus" },
2500
- "DrugPregnancyCategory": { "@id": "schema:DrugPregnancyCategory" },
2501
- "DrugPrescriptionStatus": { "@id": "schema:DrugPrescriptionStatus" },
2502
- "DrugStrength": { "@id": "schema:DrugStrength" },
2503
- "DryCleaningOrLaundry": { "@id": "schema:DryCleaningOrLaundry" },
2504
- "Duration": { "@id": "schema:Duration" },
2505
- "EBook": { "@id": "schema:EBook" },
2506
- "EPRelease": { "@id": "schema:EPRelease" },
2507
- "EUEnergyEfficiencyCategoryA": { "@id": "schema:EUEnergyEfficiencyCategoryA" },
2508
- "EUEnergyEfficiencyCategoryA1Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA1Plus" },
2509
- "EUEnergyEfficiencyCategoryA2Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA2Plus" },
2510
- "EUEnergyEfficiencyCategoryA3Plus": { "@id": "schema:EUEnergyEfficiencyCategoryA3Plus" },
2511
- "EUEnergyEfficiencyCategoryB": { "@id": "schema:EUEnergyEfficiencyCategoryB" },
2512
- "EUEnergyEfficiencyCategoryC": { "@id": "schema:EUEnergyEfficiencyCategoryC" },
2513
- "EUEnergyEfficiencyCategoryD": { "@id": "schema:EUEnergyEfficiencyCategoryD" },
2514
- "EUEnergyEfficiencyCategoryE": { "@id": "schema:EUEnergyEfficiencyCategoryE" },
2515
- "EUEnergyEfficiencyCategoryF": { "@id": "schema:EUEnergyEfficiencyCategoryF" },
2516
- "EUEnergyEfficiencyCategoryG": { "@id": "schema:EUEnergyEfficiencyCategoryG" },
2517
- "EUEnergyEfficiencyEnumeration": { "@id": "schema:EUEnergyEfficiencyEnumeration" },
2518
- "Ear": { "@id": "schema:Ear" },
2519
- "EatAction": { "@id": "schema:EatAction" },
2520
- "EditedOrCroppedContent": { "@id": "schema:EditedOrCroppedContent" },
2521
- "EducationEvent": { "@id": "schema:EducationEvent" },
2522
- "EducationalAudience": { "@id": "schema:EducationalAudience" },
2523
- "EducationalOccupationalCredential": { "@id": "schema:EducationalOccupationalCredential" },
2524
- "EducationalOccupationalProgram": { "@id": "schema:EducationalOccupationalProgram" },
2525
- "EducationalOrganization": { "@id": "schema:EducationalOrganization" },
2526
- "EffectivenessHealthAspect": { "@id": "schema:EffectivenessHealthAspect" },
2527
- "Electrician": { "@id": "schema:Electrician" },
2528
- "ElectronicsStore": { "@id": "schema:ElectronicsStore" },
2529
- "ElementarySchool": { "@id": "schema:ElementarySchool" },
2530
- "EmailMessage": { "@id": "schema:EmailMessage" },
2531
- "Embassy": { "@id": "schema:Embassy" },
2532
- "Emergency": { "@id": "schema:Emergency" },
2533
- "EmergencyService": { "@id": "schema:EmergencyService" },
2534
- "EmployeeRole": { "@id": "schema:EmployeeRole" },
2535
- "EmployerAggregateRating": { "@id": "schema:EmployerAggregateRating" },
2536
- "EmployerReview": { "@id": "schema:EmployerReview" },
2537
- "EmploymentAgency": { "@id": "schema:EmploymentAgency" },
2538
- "Endocrine": { "@id": "schema:Endocrine" },
2539
- "EndorseAction": { "@id": "schema:EndorseAction" },
2540
- "EndorsementRating": { "@id": "schema:EndorsementRating" },
2541
- "Energy": { "@id": "schema:Energy" },
2542
- "EnergyConsumptionDetails": { "@id": "schema:EnergyConsumptionDetails" },
2543
- "EnergyEfficiencyEnumeration": { "@id": "schema:EnergyEfficiencyEnumeration" },
2544
- "EnergyStarCertified": { "@id": "schema:EnergyStarCertified" },
2545
- "EnergyStarEnergyEfficiencyEnumeration": { "@id": "schema:EnergyStarEnergyEfficiencyEnumeration" },
2546
- "EngineSpecification": { "@id": "schema:EngineSpecification" },
2547
- "EnrollingByInvitation": { "@id": "schema:EnrollingByInvitation" },
2548
- "EntertainmentBusiness": { "@id": "schema:EntertainmentBusiness" },
2549
- "EntryPoint": { "@id": "schema:EntryPoint" },
2550
- "Enumeration": { "@id": "schema:Enumeration" },
2551
- "Episode": { "@id": "schema:Episode" },
2552
- "Event": { "@id": "schema:Event" },
2553
- "EventAttendanceModeEnumeration": { "@id": "schema:EventAttendanceModeEnumeration" },
2554
- "EventCancelled": { "@id": "schema:EventCancelled" },
2555
- "EventMovedOnline": { "@id": "schema:EventMovedOnline" },
2556
- "EventPostponed": { "@id": "schema:EventPostponed" },
2557
- "EventRescheduled": { "@id": "schema:EventRescheduled" },
2558
- "EventReservation": { "@id": "schema:EventReservation" },
2559
- "EventScheduled": { "@id": "schema:EventScheduled" },
2560
- "EventSeries": { "@id": "schema:EventSeries" },
2561
- "EventStatusType": { "@id": "schema:EventStatusType" },
2562
- "EventVenue": { "@id": "schema:EventVenue" },
2563
- "EvidenceLevelA": { "@id": "schema:EvidenceLevelA" },
2564
- "EvidenceLevelB": { "@id": "schema:EvidenceLevelB" },
2565
- "EvidenceLevelC": { "@id": "schema:EvidenceLevelC" },
2566
- "ExampleMeasurementMethodEnum": { "@id": "schema:ExampleMeasurementMethodEnum" },
2567
- "ExchangeRateSpecification": { "@id": "schema:ExchangeRateSpecification" },
2568
- "ExchangeRefund": { "@id": "schema:ExchangeRefund" },
2569
- "ExerciseAction": { "@id": "schema:ExerciseAction" },
2570
- "ExerciseGym": { "@id": "schema:ExerciseGym" },
2571
- "ExercisePlan": { "@id": "schema:ExercisePlan" },
2572
- "ExhibitionEvent": { "@id": "schema:ExhibitionEvent" },
2573
- "Eye": { "@id": "schema:Eye" },
2574
- "FAQPage": { "@id": "schema:FAQPage" },
2575
- "FDAcategoryA": { "@id": "schema:FDAcategoryA" },
2576
- "FDAcategoryB": { "@id": "schema:FDAcategoryB" },
2577
- "FDAcategoryC": { "@id": "schema:FDAcategoryC" },
2578
- "FDAcategoryD": { "@id": "schema:FDAcategoryD" },
2579
- "FDAcategoryX": { "@id": "schema:FDAcategoryX" },
2580
- "FDAnotEvaluated": { "@id": "schema:FDAnotEvaluated" },
2581
- "FMRadioChannel": { "@id": "schema:FMRadioChannel" },
2582
- "FailedActionStatus": { "@id": "schema:FailedActionStatus" },
2583
- "False": { "@id": "schema:False" },
2584
- "FastFoodRestaurant": { "@id": "schema:FastFoodRestaurant" },
2585
- "Female": { "@id": "schema:Female" },
2586
- "Festival": { "@id": "schema:Festival" },
2587
- "FilmAction": { "@id": "schema:FilmAction" },
2588
- "FinancialProduct": { "@id": "schema:FinancialProduct" },
2589
- "FinancialService": { "@id": "schema:FinancialService" },
2590
- "FindAction": { "@id": "schema:FindAction" },
2591
- "FireStation": { "@id": "schema:FireStation" },
2592
- "Flexibility": { "@id": "schema:Flexibility" },
2593
- "Flight": { "@id": "schema:Flight" },
2594
- "FlightReservation": { "@id": "schema:FlightReservation" },
2595
- "Float": { "@id": "schema:Float" },
2596
- "FloorPlan": { "@id": "schema:FloorPlan" },
2597
- "Florist": { "@id": "schema:Florist" },
2598
- "FollowAction": { "@id": "schema:FollowAction" },
2599
- "FoodEstablishment": { "@id": "schema:FoodEstablishment" },
2600
- "FoodEstablishmentReservation": { "@id": "schema:FoodEstablishmentReservation" },
2601
- "FoodEvent": { "@id": "schema:FoodEvent" },
2602
- "FoodService": { "@id": "schema:FoodService" },
2603
- "FourWheelDriveConfiguration": { "@id": "schema:FourWheelDriveConfiguration" },
2604
- "FreeReturn": { "@id": "schema:FreeReturn" },
2605
- "Friday": { "@id": "schema:Friday" },
2606
- "FrontWheelDriveConfiguration": { "@id": "schema:FrontWheelDriveConfiguration" },
2607
- "FullGameAvailability": { "@id": "schema:FullGameAvailability" },
2608
- "FullRefund": { "@id": "schema:FullRefund" },
2609
- "FundingAgency": { "@id": "schema:FundingAgency" },
2610
- "FundingScheme": { "@id": "schema:FundingScheme" },
2611
- "Fungus": { "@id": "schema:Fungus" },
2612
- "FurnitureStore": { "@id": "schema:FurnitureStore" },
2613
- "Game": { "@id": "schema:Game" },
2614
- "GameAvailabilityEnumeration": { "@id": "schema:GameAvailabilityEnumeration" },
2615
- "GamePlayMode": { "@id": "schema:GamePlayMode" },
2616
- "GameServer": { "@id": "schema:GameServer" },
2617
- "GameServerStatus": { "@id": "schema:GameServerStatus" },
2618
- "GardenStore": { "@id": "schema:GardenStore" },
2619
- "GasStation": { "@id": "schema:GasStation" },
2620
- "Gastroenterologic": { "@id": "schema:Gastroenterologic" },
2621
- "GatedResidenceCommunity": { "@id": "schema:GatedResidenceCommunity" },
2622
- "GenderType": { "@id": "schema:GenderType" },
2623
- "Gene": { "@id": "schema:Gene" },
2624
- "GeneralContractor": { "@id": "schema:GeneralContractor" },
2625
- "GenericWebPlatform": { "@id": "schema:GenericWebPlatform" },
2626
- "Genetic": { "@id": "schema:Genetic" },
2627
- "Genitourinary": { "@id": "schema:Genitourinary" },
2628
- "GeoCircle": { "@id": "schema:GeoCircle" },
2629
- "GeoCoordinates": { "@id": "schema:GeoCoordinates" },
2630
- "GeoShape": { "@id": "schema:GeoShape" },
2631
- "GeospatialGeometry": { "@id": "schema:GeospatialGeometry" },
2632
- "Geriatric": { "@id": "schema:Geriatric" },
2633
- "GettingAccessHealthAspect": { "@id": "schema:GettingAccessHealthAspect" },
2634
- "GiveAction": { "@id": "schema:GiveAction" },
2635
- "GlutenFreeDiet": { "@id": "schema:GlutenFreeDiet" },
2636
- "GolfCourse": { "@id": "schema:GolfCourse" },
2637
- "GovernmentBenefitsType": { "@id": "schema:GovernmentBenefitsType" },
2638
- "GovernmentBuilding": { "@id": "schema:GovernmentBuilding" },
2639
- "GovernmentOffice": { "@id": "schema:GovernmentOffice" },
2640
- "GovernmentOrganization": { "@id": "schema:GovernmentOrganization" },
2641
- "GovernmentPermit": { "@id": "schema:GovernmentPermit" },
2642
- "GovernmentService": { "@id": "schema:GovernmentService" },
2643
- "Grant": { "@id": "schema:Grant" },
2644
- "GraphicNovel": { "@id": "schema:GraphicNovel" },
2645
- "GroceryStore": { "@id": "schema:GroceryStore" },
2646
- "GroupBoardingPolicy": { "@id": "schema:GroupBoardingPolicy" },
2647
- "Guide": { "@id": "schema:Guide" },
2648
- "Gynecologic": { "@id": "schema:Gynecologic" },
2649
- "HVACBusiness": { "@id": "schema:HVACBusiness" },
2650
- "Hackathon": { "@id": "schema:Hackathon" },
2651
- "HairSalon": { "@id": "schema:HairSalon" },
2652
- "HalalDiet": { "@id": "schema:HalalDiet" },
2653
- "Hardcover": { "@id": "schema:Hardcover" },
2654
- "HardwareStore": { "@id": "schema:HardwareStore" },
2655
- "Head": { "@id": "schema:Head" },
2656
- "HealthAndBeautyBusiness": { "@id": "schema:HealthAndBeautyBusiness" },
2657
- "HealthAspectEnumeration": { "@id": "schema:HealthAspectEnumeration" },
2658
- "HealthCare": { "@id": "schema:HealthCare" },
2659
- "HealthClub": { "@id": "schema:HealthClub" },
2660
- "HealthInsurancePlan": { "@id": "schema:HealthInsurancePlan" },
2661
- "HealthPlanCostSharingSpecification": { "@id": "schema:HealthPlanCostSharingSpecification" },
2662
- "HealthPlanFormulary": { "@id": "schema:HealthPlanFormulary" },
2663
- "HealthPlanNetwork": { "@id": "schema:HealthPlanNetwork" },
2664
- "HealthTopicContent": { "@id": "schema:HealthTopicContent" },
2665
- "HealthcareConsideration": { "@id": "schema:HealthcareConsideration" },
2666
- "HearingImpairedSupported": { "@id": "schema:HearingImpairedSupported" },
2667
- "Hematologic": { "@id": "schema:Hematologic" },
2668
- "HighSchool": { "@id": "schema:HighSchool" },
2669
- "HinduDiet": { "@id": "schema:HinduDiet" },
2670
- "HinduTemple": { "@id": "schema:HinduTemple" },
2671
- "HobbyShop": { "@id": "schema:HobbyShop" },
2672
- "HomeAndConstructionBusiness": { "@id": "schema:HomeAndConstructionBusiness" },
2673
- "HomeGoodsStore": { "@id": "schema:HomeGoodsStore" },
2674
- "Homeopathic": { "@id": "schema:Homeopathic" },
2675
- "Hospital": { "@id": "schema:Hospital" },
2676
- "Hostel": { "@id": "schema:Hostel" },
2677
- "Hotel": { "@id": "schema:Hotel" },
2678
- "HotelRoom": { "@id": "schema:HotelRoom" },
2679
- "House": { "@id": "schema:House" },
2680
- "HousePainter": { "@id": "schema:HousePainter" },
2681
- "HowItWorksHealthAspect": { "@id": "schema:HowItWorksHealthAspect" },
2682
- "HowOrWhereHealthAspect": { "@id": "schema:HowOrWhereHealthAspect" },
2683
- "HowTo": { "@id": "schema:HowTo" },
2684
- "HowToDirection": { "@id": "schema:HowToDirection" },
2685
- "HowToItem": { "@id": "schema:HowToItem" },
2686
- "HowToSection": { "@id": "schema:HowToSection" },
2687
- "HowToStep": { "@id": "schema:HowToStep" },
2688
- "HowToSupply": { "@id": "schema:HowToSupply" },
2689
- "HowToTip": { "@id": "schema:HowToTip" },
2690
- "HowToTool": { "@id": "schema:HowToTool" },
2691
- "HyperToc": { "@id": "schema:HyperToc" },
2692
- "HyperTocEntry": { "@id": "schema:HyperTocEntry" },
2693
- "IOSPlatform": { "@id": "schema:IOSPlatform" },
2694
- "IPTCDigitalSourceEnumeration": { "@id": "schema:IPTCDigitalSourceEnumeration" },
2695
- "IceCreamShop": { "@id": "schema:IceCreamShop" },
2696
- "IgnoreAction": { "@id": "schema:IgnoreAction" },
2697
- "ImageGallery": { "@id": "schema:ImageGallery" },
2698
- "ImageObject": { "@id": "schema:ImageObject" },
2699
- "ImageObjectSnapshot": { "@id": "schema:ImageObjectSnapshot" },
2700
- "ImagingTest": { "@id": "schema:ImagingTest" },
2701
- "InForce": { "@id": "schema:InForce" },
2702
- "InStock": { "@id": "schema:InStock" },
2703
- "InStoreOnly": { "@id": "schema:InStoreOnly" },
2704
- "InStorePrepay": { "@id": "schema:InStorePrepay" },
2705
- "IndividualPhysician": { "@id": "schema:IndividualPhysician" },
2706
- "IndividualProduct": { "@id": "schema:IndividualProduct" },
2707
- "Infectious": { "@id": "schema:Infectious" },
2708
- "InfectiousAgentClass": { "@id": "schema:InfectiousAgentClass" },
2709
- "InfectiousDisease": { "@id": "schema:InfectiousDisease" },
2710
- "InformAction": { "@id": "schema:InformAction" },
2711
- "IngredientsHealthAspect": { "@id": "schema:IngredientsHealthAspect" },
2712
- "InsertAction": { "@id": "schema:InsertAction" },
2713
- "InstallAction": { "@id": "schema:InstallAction" },
2714
- "Installment": { "@id": "schema:Installment" },
2715
- "InsuranceAgency": { "@id": "schema:InsuranceAgency" },
2716
- "Intangible": { "@id": "schema:Intangible" },
2717
- "Integer": { "@id": "schema:Integer" },
2718
- "InteractAction": { "@id": "schema:InteractAction" },
2719
- "InteractionCounter": { "@id": "schema:InteractionCounter" },
2720
- "InternationalTrial": { "@id": "schema:InternationalTrial" },
2721
- "InternetCafe": { "@id": "schema:InternetCafe" },
2722
- "InvestmentFund": { "@id": "schema:InvestmentFund" },
2723
- "InvestmentOrDeposit": { "@id": "schema:InvestmentOrDeposit" },
2724
- "InviteAction": { "@id": "schema:InviteAction" },
2725
- "Invoice": { "@id": "schema:Invoice" },
2726
- "InvoicePrice": { "@id": "schema:InvoicePrice" },
2727
- "ItemAvailability": { "@id": "schema:ItemAvailability" },
2728
- "ItemList": { "@id": "schema:ItemList" },
2729
- "ItemListOrderAscending": { "@id": "schema:ItemListOrderAscending" },
2730
- "ItemListOrderDescending": { "@id": "schema:ItemListOrderDescending" },
2731
- "ItemListOrderType": { "@id": "schema:ItemListOrderType" },
2732
- "ItemListUnordered": { "@id": "schema:ItemListUnordered" },
2733
- "ItemPage": { "@id": "schema:ItemPage" },
2734
- "JewelryStore": { "@id": "schema:JewelryStore" },
2735
- "JobPosting": { "@id": "schema:JobPosting" },
2736
- "JoinAction": { "@id": "schema:JoinAction" },
2737
- "Joint": { "@id": "schema:Joint" },
2738
- "KeepProduct": { "@id": "schema:KeepProduct" },
2739
- "KosherDiet": { "@id": "schema:KosherDiet" },
2740
- "LaboratoryScience": { "@id": "schema:LaboratoryScience" },
2741
- "LakeBodyOfWater": { "@id": "schema:LakeBodyOfWater" },
2742
- "Landform": { "@id": "schema:Landform" },
2743
- "LandmarksOrHistoricalBuildings": { "@id": "schema:LandmarksOrHistoricalBuildings" },
2744
- "Language": { "@id": "schema:Language" },
2745
- "LaserDiscFormat": { "@id": "schema:LaserDiscFormat" },
2746
- "LearningResource": { "@id": "schema:LearningResource" },
2747
- "LeaveAction": { "@id": "schema:LeaveAction" },
2748
- "LeftHandDriving": { "@id": "schema:LeftHandDriving" },
2749
- "LegalForceStatus": { "@id": "schema:LegalForceStatus" },
2750
- "LegalService": { "@id": "schema:LegalService" },
2751
- "LegalValueLevel": { "@id": "schema:LegalValueLevel" },
2752
- "Legislation": { "@id": "schema:Legislation" },
2753
- "LegislationObject": { "@id": "schema:LegislationObject" },
2754
- "LegislativeBuilding": { "@id": "schema:LegislativeBuilding" },
2755
- "LeisureTimeActivity": { "@id": "schema:LeisureTimeActivity" },
2756
- "LendAction": { "@id": "schema:LendAction" },
2757
- "Library": { "@id": "schema:Library" },
2758
- "LibrarySystem": { "@id": "schema:LibrarySystem" },
2759
- "LifestyleModification": { "@id": "schema:LifestyleModification" },
2760
- "Ligament": { "@id": "schema:Ligament" },
2761
- "LikeAction": { "@id": "schema:LikeAction" },
2762
- "LimitedAvailability": { "@id": "schema:LimitedAvailability" },
2763
- "LimitedByGuaranteeCharity": { "@id": "schema:LimitedByGuaranteeCharity" },
2764
- "LinkRole": { "@id": "schema:LinkRole" },
2765
- "LiquorStore": { "@id": "schema:LiquorStore" },
2766
- "ListItem": { "@id": "schema:ListItem" },
2767
- "ListPrice": { "@id": "schema:ListPrice" },
2768
- "ListenAction": { "@id": "schema:ListenAction" },
2769
- "LiteraryEvent": { "@id": "schema:LiteraryEvent" },
2770
- "LiveAlbum": { "@id": "schema:LiveAlbum" },
2771
- "LiveBlogPosting": { "@id": "schema:LiveBlogPosting" },
2772
- "LivingWithHealthAspect": { "@id": "schema:LivingWithHealthAspect" },
2773
- "LoanOrCredit": { "@id": "schema:LoanOrCredit" },
2774
- "LocalBusiness": { "@id": "schema:LocalBusiness" },
2775
- "LocationFeatureSpecification": { "@id": "schema:LocationFeatureSpecification" },
2776
- "LockerDelivery": { "@id": "schema:LockerDelivery" },
2777
- "Locksmith": { "@id": "schema:Locksmith" },
2778
- "LodgingBusiness": { "@id": "schema:LodgingBusiness" },
2779
- "LodgingReservation": { "@id": "schema:LodgingReservation" },
2780
- "Longitudinal": { "@id": "schema:Longitudinal" },
2781
- "LoseAction": { "@id": "schema:LoseAction" },
2782
- "LowCalorieDiet": { "@id": "schema:LowCalorieDiet" },
2783
- "LowFatDiet": { "@id": "schema:LowFatDiet" },
2784
- "LowLactoseDiet": { "@id": "schema:LowLactoseDiet" },
2785
- "LowSaltDiet": { "@id": "schema:LowSaltDiet" },
2786
- "Lung": { "@id": "schema:Lung" },
2787
- "LymphaticVessel": { "@id": "schema:LymphaticVessel" },
2788
- "MRI": { "@id": "schema:MRI" },
2789
- "MSRP": { "@id": "schema:MSRP" },
2790
- "MadeToOrder": { "@id": "schema:MadeToOrder" },
2791
- "Male": { "@id": "schema:Male" },
2792
- "Manuscript": { "@id": "schema:Manuscript" },
2793
- "Map": { "@id": "schema:Map" },
2794
- "MapCategoryType": { "@id": "schema:MapCategoryType" },
2795
- "MarryAction": { "@id": "schema:MarryAction" },
2796
- "Mass": { "@id": "schema:Mass" },
2797
- "MathSolver": { "@id": "schema:MathSolver" },
2798
- "MaximumDoseSchedule": { "@id": "schema:MaximumDoseSchedule" },
2799
- "MayTreatHealthAspect": { "@id": "schema:MayTreatHealthAspect" },
2800
- "MeasurementMethodEnum": { "@id": "schema:MeasurementMethodEnum" },
2801
- "MeasurementTypeEnumeration": { "@id": "schema:MeasurementTypeEnumeration" },
2802
- "MediaEnumeration": { "@id": "schema:MediaEnumeration" },
2803
- "MediaGallery": { "@id": "schema:MediaGallery" },
2804
- "MediaManipulationRatingEnumeration": { "@id": "schema:MediaManipulationRatingEnumeration" },
2805
- "MediaObject": { "@id": "schema:MediaObject" },
2806
- "MediaReview": { "@id": "schema:MediaReview" },
2807
- "MediaReviewItem": { "@id": "schema:MediaReviewItem" },
2808
- "MediaSubscription": { "@id": "schema:MediaSubscription" },
2809
- "MedicalAudience": { "@id": "schema:MedicalAudience" },
2810
- "MedicalAudienceType": { "@id": "schema:MedicalAudienceType" },
2811
- "MedicalBusiness": { "@id": "schema:MedicalBusiness" },
2812
- "MedicalCause": { "@id": "schema:MedicalCause" },
2813
- "MedicalClinic": { "@id": "schema:MedicalClinic" },
2814
- "MedicalCode": { "@id": "schema:MedicalCode" },
2815
- "MedicalCondition": { "@id": "schema:MedicalCondition" },
2816
- "MedicalConditionStage": { "@id": "schema:MedicalConditionStage" },
2817
- "MedicalContraindication": { "@id": "schema:MedicalContraindication" },
2818
- "MedicalDevice": { "@id": "schema:MedicalDevice" },
2819
- "MedicalDevicePurpose": { "@id": "schema:MedicalDevicePurpose" },
2820
- "MedicalEntity": { "@id": "schema:MedicalEntity" },
2821
- "MedicalEnumeration": { "@id": "schema:MedicalEnumeration" },
2822
- "MedicalEvidenceLevel": { "@id": "schema:MedicalEvidenceLevel" },
2823
- "MedicalGuideline": { "@id": "schema:MedicalGuideline" },
2824
- "MedicalGuidelineContraindication": { "@id": "schema:MedicalGuidelineContraindication" },
2825
- "MedicalGuidelineRecommendation": { "@id": "schema:MedicalGuidelineRecommendation" },
2826
- "MedicalImagingTechnique": { "@id": "schema:MedicalImagingTechnique" },
2827
- "MedicalIndication": { "@id": "schema:MedicalIndication" },
2828
- "MedicalIntangible": { "@id": "schema:MedicalIntangible" },
2829
- "MedicalObservationalStudy": { "@id": "schema:MedicalObservationalStudy" },
2830
- "MedicalObservationalStudyDesign": { "@id": "schema:MedicalObservationalStudyDesign" },
2831
- "MedicalOrganization": { "@id": "schema:MedicalOrganization" },
2832
- "MedicalProcedure": { "@id": "schema:MedicalProcedure" },
2833
- "MedicalProcedureType": { "@id": "schema:MedicalProcedureType" },
2834
- "MedicalResearcher": { "@id": "schema:MedicalResearcher" },
2835
- "MedicalRiskCalculator": { "@id": "schema:MedicalRiskCalculator" },
2836
- "MedicalRiskEstimator": { "@id": "schema:MedicalRiskEstimator" },
2837
- "MedicalRiskFactor": { "@id": "schema:MedicalRiskFactor" },
2838
- "MedicalRiskScore": { "@id": "schema:MedicalRiskScore" },
2839
- "MedicalScholarlyArticle": { "@id": "schema:MedicalScholarlyArticle" },
2840
- "MedicalSign": { "@id": "schema:MedicalSign" },
2841
- "MedicalSignOrSymptom": { "@id": "schema:MedicalSignOrSymptom" },
2842
- "MedicalSpecialty": { "@id": "schema:MedicalSpecialty" },
2843
- "MedicalStudy": { "@id": "schema:MedicalStudy" },
2844
- "MedicalStudyStatus": { "@id": "schema:MedicalStudyStatus" },
2845
- "MedicalSymptom": { "@id": "schema:MedicalSymptom" },
2846
- "MedicalTest": { "@id": "schema:MedicalTest" },
2847
- "MedicalTestPanel": { "@id": "schema:MedicalTestPanel" },
2848
- "MedicalTherapy": { "@id": "schema:MedicalTherapy" },
2849
- "MedicalTrial": { "@id": "schema:MedicalTrial" },
2850
- "MedicalTrialDesign": { "@id": "schema:MedicalTrialDesign" },
2851
- "MedicalWebPage": { "@id": "schema:MedicalWebPage" },
2852
- "MedicineSystem": { "@id": "schema:MedicineSystem" },
2853
- "MeetingRoom": { "@id": "schema:MeetingRoom" },
2854
- "MemberProgram": { "@id": "schema:MemberProgram" },
2855
- "MemberProgramTier": { "@id": "schema:MemberProgramTier" },
2856
- "MensClothingStore": { "@id": "schema:MensClothingStore" },
2857
- "Menu": { "@id": "schema:Menu" },
2858
- "MenuItem": { "@id": "schema:MenuItem" },
2859
- "MenuSection": { "@id": "schema:MenuSection" },
2860
- "MerchantReturnEnumeration": { "@id": "schema:MerchantReturnEnumeration" },
2861
- "MerchantReturnFiniteReturnWindow": { "@id": "schema:MerchantReturnFiniteReturnWindow" },
2862
- "MerchantReturnNotPermitted": { "@id": "schema:MerchantReturnNotPermitted" },
2863
- "MerchantReturnPolicy": { "@id": "schema:MerchantReturnPolicy" },
2864
- "MerchantReturnPolicySeasonalOverride": { "@id": "schema:MerchantReturnPolicySeasonalOverride" },
2865
- "MerchantReturnUnlimitedWindow": { "@id": "schema:MerchantReturnUnlimitedWindow" },
2866
- "MerchantReturnUnspecified": { "@id": "schema:MerchantReturnUnspecified" },
2867
- "Message": { "@id": "schema:Message" },
2868
- "MiddleSchool": { "@id": "schema:MiddleSchool" },
2869
- "Midwifery": { "@id": "schema:Midwifery" },
2870
- "MinimumAdvertisedPrice": { "@id": "schema:MinimumAdvertisedPrice" },
2871
- "MinorHumanEditsDigitalSource": { "@id": "schema:MinorHumanEditsDigitalSource" },
2872
- "MisconceptionsHealthAspect": { "@id": "schema:MisconceptionsHealthAspect" },
2873
- "MixedEventAttendanceMode": { "@id": "schema:MixedEventAttendanceMode" },
2874
- "MixtapeAlbum": { "@id": "schema:MixtapeAlbum" },
2875
- "MobileApplication": { "@id": "schema:MobileApplication" },
2876
- "MobilePhoneStore": { "@id": "schema:MobilePhoneStore" },
2877
- "MobileWebPlatform": { "@id": "schema:MobileWebPlatform" },
2878
- "MolecularEntity": { "@id": "schema:MolecularEntity" },
2879
- "Monday": { "@id": "schema:Monday" },
2880
- "MonetaryAmount": { "@id": "schema:MonetaryAmount" },
2881
- "MonetaryAmountDistribution": { "@id": "schema:MonetaryAmountDistribution" },
2882
- "MonetaryGrant": { "@id": "schema:MonetaryGrant" },
2883
- "MoneyTransfer": { "@id": "schema:MoneyTransfer" },
2884
- "MortgageLoan": { "@id": "schema:MortgageLoan" },
2885
- "Mosque": { "@id": "schema:Mosque" },
2886
- "Motel": { "@id": "schema:Motel" },
2887
- "Motorcycle": { "@id": "schema:Motorcycle" },
2888
- "MotorcycleDealer": { "@id": "schema:MotorcycleDealer" },
2889
- "MotorcycleRepair": { "@id": "schema:MotorcycleRepair" },
2890
- "MotorizedBicycle": { "@id": "schema:MotorizedBicycle" },
2891
- "Mountain": { "@id": "schema:Mountain" },
2892
- "MoveAction": { "@id": "schema:MoveAction" },
2893
- "Movie": { "@id": "schema:Movie" },
2894
- "MovieClip": { "@id": "schema:MovieClip" },
2895
- "MovieRentalStore": { "@id": "schema:MovieRentalStore" },
2896
- "MovieSeries": { "@id": "schema:MovieSeries" },
2897
- "MovieTheater": { "@id": "schema:MovieTheater" },
2898
- "MovingCompany": { "@id": "schema:MovingCompany" },
2899
- "MultiCenterTrial": { "@id": "schema:MultiCenterTrial" },
2900
- "MultiPlayer": { "@id": "schema:MultiPlayer" },
2901
- "MulticellularParasite": { "@id": "schema:MulticellularParasite" },
2902
- "Muscle": { "@id": "schema:Muscle" },
2903
- "Musculoskeletal": { "@id": "schema:Musculoskeletal" },
2904
- "MusculoskeletalExam": { "@id": "schema:MusculoskeletalExam" },
2905
- "Museum": { "@id": "schema:Museum" },
2906
- "MusicAlbum": { "@id": "schema:MusicAlbum" },
2907
- "MusicAlbumProductionType": { "@id": "schema:MusicAlbumProductionType" },
2908
- "MusicAlbumReleaseType": { "@id": "schema:MusicAlbumReleaseType" },
2909
- "MusicComposition": { "@id": "schema:MusicComposition" },
2910
- "MusicEvent": { "@id": "schema:MusicEvent" },
2911
- "MusicGroup": { "@id": "schema:MusicGroup" },
2912
- "MusicPlaylist": { "@id": "schema:MusicPlaylist" },
2913
- "MusicRecording": { "@id": "schema:MusicRecording" },
2914
- "MusicRelease": { "@id": "schema:MusicRelease" },
2915
- "MusicReleaseFormatType": { "@id": "schema:MusicReleaseFormatType" },
2916
- "MusicStore": { "@id": "schema:MusicStore" },
2917
- "MusicVenue": { "@id": "schema:MusicVenue" },
2918
- "MusicVideoObject": { "@id": "schema:MusicVideoObject" },
2919
- "NGO": { "@id": "schema:NGO" },
2920
- "NLNonprofitType": { "@id": "schema:NLNonprofitType" },
2921
- "NailSalon": { "@id": "schema:NailSalon" },
2922
- "NarcoticConsideration": { "@id": "schema:NarcoticConsideration" },
2923
- "Neck": { "@id": "schema:Neck" },
2924
- "NegativeFilmDigitalSource": { "@id": "schema:NegativeFilmDigitalSource" },
2925
- "Nerve": { "@id": "schema:Nerve" },
2926
- "Neuro": { "@id": "schema:Neuro" },
2927
- "Neurologic": { "@id": "schema:Neurologic" },
2928
- "NewCondition": { "@id": "schema:NewCondition" },
2929
- "NewsArticle": { "@id": "schema:NewsArticle" },
2930
- "NewsMediaOrganization": { "@id": "schema:NewsMediaOrganization" },
2931
- "Newspaper": { "@id": "schema:Newspaper" },
2932
- "NightClub": { "@id": "schema:NightClub" },
2933
- "NoninvasiveProcedure": { "@id": "schema:NoninvasiveProcedure" },
2934
- "Nonprofit501a": { "@id": "schema:Nonprofit501a" },
2935
- "Nonprofit501c1": { "@id": "schema:Nonprofit501c1" },
2936
- "Nonprofit501c10": { "@id": "schema:Nonprofit501c10" },
2937
- "Nonprofit501c11": { "@id": "schema:Nonprofit501c11" },
2938
- "Nonprofit501c12": { "@id": "schema:Nonprofit501c12" },
2939
- "Nonprofit501c13": { "@id": "schema:Nonprofit501c13" },
2940
- "Nonprofit501c14": { "@id": "schema:Nonprofit501c14" },
2941
- "Nonprofit501c15": { "@id": "schema:Nonprofit501c15" },
2942
- "Nonprofit501c16": { "@id": "schema:Nonprofit501c16" },
2943
- "Nonprofit501c17": { "@id": "schema:Nonprofit501c17" },
2944
- "Nonprofit501c18": { "@id": "schema:Nonprofit501c18" },
2945
- "Nonprofit501c19": { "@id": "schema:Nonprofit501c19" },
2946
- "Nonprofit501c2": { "@id": "schema:Nonprofit501c2" },
2947
- "Nonprofit501c20": { "@id": "schema:Nonprofit501c20" },
2948
- "Nonprofit501c21": { "@id": "schema:Nonprofit501c21" },
2949
- "Nonprofit501c22": { "@id": "schema:Nonprofit501c22" },
2950
- "Nonprofit501c23": { "@id": "schema:Nonprofit501c23" },
2951
- "Nonprofit501c24": { "@id": "schema:Nonprofit501c24" },
2952
- "Nonprofit501c25": { "@id": "schema:Nonprofit501c25" },
2953
- "Nonprofit501c26": { "@id": "schema:Nonprofit501c26" },
2954
- "Nonprofit501c27": { "@id": "schema:Nonprofit501c27" },
2955
- "Nonprofit501c28": { "@id": "schema:Nonprofit501c28" },
2956
- "Nonprofit501c3": { "@id": "schema:Nonprofit501c3" },
2957
- "Nonprofit501c4": { "@id": "schema:Nonprofit501c4" },
2958
- "Nonprofit501c5": { "@id": "schema:Nonprofit501c5" },
2959
- "Nonprofit501c6": { "@id": "schema:Nonprofit501c6" },
2960
- "Nonprofit501c7": { "@id": "schema:Nonprofit501c7" },
2961
- "Nonprofit501c8": { "@id": "schema:Nonprofit501c8" },
2962
- "Nonprofit501c9": { "@id": "schema:Nonprofit501c9" },
2963
- "Nonprofit501d": { "@id": "schema:Nonprofit501d" },
2964
- "Nonprofit501e": { "@id": "schema:Nonprofit501e" },
2965
- "Nonprofit501f": { "@id": "schema:Nonprofit501f" },
2966
- "Nonprofit501k": { "@id": "schema:Nonprofit501k" },
2967
- "Nonprofit501n": { "@id": "schema:Nonprofit501n" },
2968
- "Nonprofit501q": { "@id": "schema:Nonprofit501q" },
2969
- "Nonprofit527": { "@id": "schema:Nonprofit527" },
2970
- "NonprofitANBI": { "@id": "schema:NonprofitANBI" },
2971
- "NonprofitSBBI": { "@id": "schema:NonprofitSBBI" },
2972
- "NonprofitType": { "@id": "schema:NonprofitType" },
2973
- "Nose": { "@id": "schema:Nose" },
2974
- "NotInForce": { "@id": "schema:NotInForce" },
2975
- "NotYetRecruiting": { "@id": "schema:NotYetRecruiting" },
2976
- "Notary": { "@id": "schema:Notary" },
2977
- "NoteDigitalDocument": { "@id": "schema:NoteDigitalDocument" },
2978
- "Number": { "@id": "schema:Number" },
2979
- "Nursing": { "@id": "schema:Nursing" },
2980
- "NutritionInformation": { "@id": "schema:NutritionInformation" },
2981
- "OTC": { "@id": "schema:OTC" },
2982
- "Observation": { "@id": "schema:Observation" },
2983
- "Observational": { "@id": "schema:Observational" },
2984
- "Obstetric": { "@id": "schema:Obstetric" },
2985
- "Occupation": { "@id": "schema:Occupation" },
2986
- "OccupationalActivity": { "@id": "schema:OccupationalActivity" },
2987
- "OccupationalExperienceRequirements": { "@id": "schema:OccupationalExperienceRequirements" },
2988
- "OccupationalTherapy": { "@id": "schema:OccupationalTherapy" },
2989
- "OceanBodyOfWater": { "@id": "schema:OceanBodyOfWater" },
2990
- "Offer": { "@id": "schema:Offer" },
2991
- "OfferCatalog": { "@id": "schema:OfferCatalog" },
2992
- "OfferForLease": { "@id": "schema:OfferForLease" },
2993
- "OfferForPurchase": { "@id": "schema:OfferForPurchase" },
2994
- "OfferItemCondition": { "@id": "schema:OfferItemCondition" },
2995
- "OfferShippingDetails": { "@id": "schema:OfferShippingDetails" },
2996
- "OfficeEquipmentStore": { "@id": "schema:OfficeEquipmentStore" },
2997
- "OfficialLegalValue": { "@id": "schema:OfficialLegalValue" },
2998
- "OfflineEventAttendanceMode": { "@id": "schema:OfflineEventAttendanceMode" },
2999
- "OfflinePermanently": { "@id": "schema:OfflinePermanently" },
3000
- "OfflineTemporarily": { "@id": "schema:OfflineTemporarily" },
3001
- "OnDemandEvent": { "@id": "schema:OnDemandEvent" },
3002
- "OnSitePickup": { "@id": "schema:OnSitePickup" },
3003
- "Oncologic": { "@id": "schema:Oncologic" },
3004
- "OneTimePayments": { "@id": "schema:OneTimePayments" },
3005
- "Online": { "@id": "schema:Online" },
3006
- "OnlineBusiness": { "@id": "schema:OnlineBusiness" },
3007
- "OnlineEventAttendanceMode": { "@id": "schema:OnlineEventAttendanceMode" },
3008
- "OnlineFull": { "@id": "schema:OnlineFull" },
3009
- "OnlineOnly": { "@id": "schema:OnlineOnly" },
3010
- "OnlineStore": { "@id": "schema:OnlineStore" },
3011
- "OpenTrial": { "@id": "schema:OpenTrial" },
3012
- "OpeningHoursSpecification": { "@id": "schema:OpeningHoursSpecification" },
3013
- "OpinionNewsArticle": { "@id": "schema:OpinionNewsArticle" },
3014
- "Optician": { "@id": "schema:Optician" },
3015
- "Optometric": { "@id": "schema:Optometric" },
3016
- "Order": { "@id": "schema:Order" },
3017
- "OrderAction": { "@id": "schema:OrderAction" },
3018
- "OrderCancelled": { "@id": "schema:OrderCancelled" },
3019
- "OrderDelivered": { "@id": "schema:OrderDelivered" },
3020
- "OrderInTransit": { "@id": "schema:OrderInTransit" },
3021
- "OrderItem": { "@id": "schema:OrderItem" },
3022
- "OrderPaymentDue": { "@id": "schema:OrderPaymentDue" },
3023
- "OrderPickupAvailable": { "@id": "schema:OrderPickupAvailable" },
3024
- "OrderProblem": { "@id": "schema:OrderProblem" },
3025
- "OrderProcessing": { "@id": "schema:OrderProcessing" },
3026
- "OrderReturned": { "@id": "schema:OrderReturned" },
3027
- "OrderStatus": { "@id": "schema:OrderStatus" },
3028
- "Organization": { "@id": "schema:Organization" },
3029
- "OrganizationRole": { "@id": "schema:OrganizationRole" },
3030
- "OrganizeAction": { "@id": "schema:OrganizeAction" },
3031
- "OriginalMediaContent": { "@id": "schema:OriginalMediaContent" },
3032
- "OriginalShippingFees": { "@id": "schema:OriginalShippingFees" },
3033
- "Osteopathic": { "@id": "schema:Osteopathic" },
3034
- "Otolaryngologic": { "@id": "schema:Otolaryngologic" },
3035
- "OutOfStock": { "@id": "schema:OutOfStock" },
3036
- "OutletStore": { "@id": "schema:OutletStore" },
3037
- "OverviewHealthAspect": { "@id": "schema:OverviewHealthAspect" },
3038
- "OwnershipInfo": { "@id": "schema:OwnershipInfo" },
3039
- "PET": { "@id": "schema:PET" },
3040
- "PaidLeave": { "@id": "schema:PaidLeave" },
3041
- "PaintAction": { "@id": "schema:PaintAction" },
3042
- "Painting": { "@id": "schema:Painting" },
3043
- "PalliativeProcedure": { "@id": "schema:PalliativeProcedure" },
3044
- "Paperback": { "@id": "schema:Paperback" },
3045
- "ParcelDelivery": { "@id": "schema:ParcelDelivery" },
3046
- "ParcelService": { "@id": "schema:ParcelService" },
3047
- "ParentAudience": { "@id": "schema:ParentAudience" },
3048
- "ParentalSupport": { "@id": "schema:ParentalSupport" },
3049
- "Park": { "@id": "schema:Park" },
3050
- "ParkingFacility": { "@id": "schema:ParkingFacility" },
3051
- "ParkingMap": { "@id": "schema:ParkingMap" },
3052
- "PartiallyInForce": { "@id": "schema:PartiallyInForce" },
3053
- "Pathology": { "@id": "schema:Pathology" },
3054
- "PathologyTest": { "@id": "schema:PathologyTest" },
3055
- "Patient": { "@id": "schema:Patient" },
3056
- "PatientExperienceHealthAspect": { "@id": "schema:PatientExperienceHealthAspect" },
3057
- "PawnShop": { "@id": "schema:PawnShop" },
3058
- "PayAction": { "@id": "schema:PayAction" },
3059
- "PaymentAutomaticallyApplied": { "@id": "schema:PaymentAutomaticallyApplied" },
3060
- "PaymentCard": { "@id": "schema:PaymentCard" },
3061
- "PaymentChargeSpecification": { "@id": "schema:PaymentChargeSpecification" },
3062
- "PaymentComplete": { "@id": "schema:PaymentComplete" },
3063
- "PaymentDeclined": { "@id": "schema:PaymentDeclined" },
3064
- "PaymentDue": { "@id": "schema:PaymentDue" },
3065
- "PaymentMethod": { "@id": "schema:PaymentMethod" },
3066
- "PaymentMethodType": { "@id": "schema:PaymentMethodType" },
3067
- "PaymentPastDue": { "@id": "schema:PaymentPastDue" },
3068
- "PaymentService": { "@id": "schema:PaymentService" },
3069
- "PaymentStatusType": { "@id": "schema:PaymentStatusType" },
3070
- "Pediatric": { "@id": "schema:Pediatric" },
3071
- "PeopleAudience": { "@id": "schema:PeopleAudience" },
3072
- "PercutaneousProcedure": { "@id": "schema:PercutaneousProcedure" },
3073
- "PerformAction": { "@id": "schema:PerformAction" },
3074
- "PerformanceRole": { "@id": "schema:PerformanceRole" },
3075
- "PerformingArtsTheater": { "@id": "schema:PerformingArtsTheater" },
3076
- "PerformingGroup": { "@id": "schema:PerformingGroup" },
3077
- "Periodical": { "@id": "schema:Periodical" },
3078
- "Permit": { "@id": "schema:Permit" },
3079
- "Person": { "@id": "schema:Person" },
3080
- "PetStore": { "@id": "schema:PetStore" },
3081
- "Pharmacy": { "@id": "schema:Pharmacy" },
3082
- "PharmacySpecialty": { "@id": "schema:PharmacySpecialty" },
3083
- "PhoneCarrierPayment": { "@id": "schema:PhoneCarrierPayment" },
3084
- "Photograph": { "@id": "schema:Photograph" },
3085
- "PhotographAction": { "@id": "schema:PhotographAction" },
3086
- "PhysicalActivity": { "@id": "schema:PhysicalActivity" },
3087
- "PhysicalActivityCategory": { "@id": "schema:PhysicalActivityCategory" },
3088
- "PhysicalExam": { "@id": "schema:PhysicalExam" },
3089
- "PhysicalTherapy": { "@id": "schema:PhysicalTherapy" },
3090
- "Physician": { "@id": "schema:Physician" },
3091
- "PhysiciansOffice": { "@id": "schema:PhysiciansOffice" },
3092
- "Physiotherapy": { "@id": "schema:Physiotherapy" },
3093
- "Place": { "@id": "schema:Place" },
3094
- "PlaceOfWorship": { "@id": "schema:PlaceOfWorship" },
3095
- "PlaceboControlledTrial": { "@id": "schema:PlaceboControlledTrial" },
3096
- "PlanAction": { "@id": "schema:PlanAction" },
3097
- "PlasticSurgery": { "@id": "schema:PlasticSurgery" },
3098
- "Play": { "@id": "schema:Play" },
3099
- "PlayAction": { "@id": "schema:PlayAction" },
3100
- "PlayGameAction": { "@id": "schema:PlayGameAction" },
3101
- "Playground": { "@id": "schema:Playground" },
3102
- "Plumber": { "@id": "schema:Plumber" },
3103
- "PodcastEpisode": { "@id": "schema:PodcastEpisode" },
3104
- "PodcastSeason": { "@id": "schema:PodcastSeason" },
3105
- "PodcastSeries": { "@id": "schema:PodcastSeries" },
3106
- "Podiatric": { "@id": "schema:Podiatric" },
3107
- "PoliceStation": { "@id": "schema:PoliceStation" },
3108
- "PoliticalParty": { "@id": "schema:PoliticalParty" },
3109
- "Pond": { "@id": "schema:Pond" },
3110
- "PositiveFilmDigitalSource": { "@id": "schema:PositiveFilmDigitalSource" },
3111
- "PostOffice": { "@id": "schema:PostOffice" },
3112
- "PostalAddress": { "@id": "schema:PostalAddress" },
3113
- "PostalCodeRangeSpecification": { "@id": "schema:PostalCodeRangeSpecification" },
3114
- "Poster": { "@id": "schema:Poster" },
3115
- "PotentialActionStatus": { "@id": "schema:PotentialActionStatus" },
3116
- "PreOrder": { "@id": "schema:PreOrder" },
3117
- "PreOrderAction": { "@id": "schema:PreOrderAction" },
3118
- "PreSale": { "@id": "schema:PreSale" },
3119
- "PregnancyHealthAspect": { "@id": "schema:PregnancyHealthAspect" },
3120
- "PrependAction": { "@id": "schema:PrependAction" },
3121
- "Preschool": { "@id": "schema:Preschool" },
3122
- "PrescriptionOnly": { "@id": "schema:PrescriptionOnly" },
3123
- "PresentationDigitalDocument": { "@id": "schema:PresentationDigitalDocument" },
3124
- "PreventionHealthAspect": { "@id": "schema:PreventionHealthAspect" },
3125
- "PreventionIndication": { "@id": "schema:PreventionIndication" },
3126
- "PriceComponentTypeEnumeration": { "@id": "schema:PriceComponentTypeEnumeration" },
3127
- "PriceSpecification": { "@id": "schema:PriceSpecification" },
3128
- "PriceTypeEnumeration": { "@id": "schema:PriceTypeEnumeration" },
3129
- "PrimaryCare": { "@id": "schema:PrimaryCare" },
3130
- "PrintDigitalSource": { "@id": "schema:PrintDigitalSource" },
3131
- "Prion": { "@id": "schema:Prion" },
3132
- "Product": { "@id": "schema:Product" },
3133
- "ProductCollection": { "@id": "schema:ProductCollection" },
3134
- "ProductGroup": { "@id": "schema:ProductGroup" },
3135
- "ProductModel": { "@id": "schema:ProductModel" },
3136
- "ProductReturnEnumeration": { "@id": "schema:ProductReturnEnumeration" },
3137
- "ProductReturnFiniteReturnWindow": { "@id": "schema:ProductReturnFiniteReturnWindow" },
3138
- "ProductReturnNotPermitted": { "@id": "schema:ProductReturnNotPermitted" },
3139
- "ProductReturnPolicy": { "@id": "schema:ProductReturnPolicy" },
3140
- "ProductReturnUnlimitedWindow": { "@id": "schema:ProductReturnUnlimitedWindow" },
3141
- "ProductReturnUnspecified": { "@id": "schema:ProductReturnUnspecified" },
3142
- "ProfessionalService": { "@id": "schema:ProfessionalService" },
3143
- "ProfilePage": { "@id": "schema:ProfilePage" },
3144
- "PrognosisHealthAspect": { "@id": "schema:PrognosisHealthAspect" },
3145
- "ProgramMembership": { "@id": "schema:ProgramMembership" },
3146
- "Project": { "@id": "schema:Project" },
3147
- "PronounceableText": { "@id": "schema:PronounceableText" },
3148
- "Property": { "@id": "schema:Property" },
3149
- "PropertyValue": { "@id": "schema:PropertyValue" },
3150
- "PropertyValueSpecification": { "@id": "schema:PropertyValueSpecification" },
3151
- "Protein": { "@id": "schema:Protein" },
3152
- "Protozoa": { "@id": "schema:Protozoa" },
3153
- "Psychiatric": { "@id": "schema:Psychiatric" },
3154
- "PsychologicalTreatment": { "@id": "schema:PsychologicalTreatment" },
3155
- "PublicHealth": { "@id": "schema:PublicHealth" },
3156
- "PublicHolidays": { "@id": "schema:PublicHolidays" },
3157
- "PublicSwimmingPool": { "@id": "schema:PublicSwimmingPool" },
3158
- "PublicToilet": { "@id": "schema:PublicToilet" },
3159
- "PublicationEvent": { "@id": "schema:PublicationEvent" },
3160
- "PublicationIssue": { "@id": "schema:PublicationIssue" },
3161
- "PublicationVolume": { "@id": "schema:PublicationVolume" },
3162
- "Pulmonary": { "@id": "schema:Pulmonary" },
3163
- "QAPage": { "@id": "schema:QAPage" },
3164
- "QualitativeValue": { "@id": "schema:QualitativeValue" },
3165
- "QuantitativeValue": { "@id": "schema:QuantitativeValue" },
3166
- "QuantitativeValueDistribution": { "@id": "schema:QuantitativeValueDistribution" },
3167
- "Quantity": { "@id": "schema:Quantity" },
3168
- "Question": { "@id": "schema:Question" },
3169
- "Quiz": { "@id": "schema:Quiz" },
3170
- "Quotation": { "@id": "schema:Quotation" },
3171
- "QuoteAction": { "@id": "schema:QuoteAction" },
3172
- "RVPark": { "@id": "schema:RVPark" },
3173
- "RadiationTherapy": { "@id": "schema:RadiationTherapy" },
3174
- "RadioBroadcastService": { "@id": "schema:RadioBroadcastService" },
3175
- "RadioChannel": { "@id": "schema:RadioChannel" },
3176
- "RadioClip": { "@id": "schema:RadioClip" },
3177
- "RadioEpisode": { "@id": "schema:RadioEpisode" },
3178
- "RadioSeason": { "@id": "schema:RadioSeason" },
3179
- "RadioSeries": { "@id": "schema:RadioSeries" },
3180
- "RadioStation": { "@id": "schema:RadioStation" },
3181
- "Radiography": { "@id": "schema:Radiography" },
3182
- "RandomizedTrial": { "@id": "schema:RandomizedTrial" },
3183
- "Rating": { "@id": "schema:Rating" },
3184
- "ReactAction": { "@id": "schema:ReactAction" },
3185
- "ReadAction": { "@id": "schema:ReadAction" },
3186
- "ReadPermission": { "@id": "schema:ReadPermission" },
3187
- "RealEstateAgent": { "@id": "schema:RealEstateAgent" },
3188
- "RealEstateListing": { "@id": "schema:RealEstateListing" },
3189
- "RearWheelDriveConfiguration": { "@id": "schema:RearWheelDriveConfiguration" },
3190
- "ReceiveAction": { "@id": "schema:ReceiveAction" },
3191
- "Recipe": { "@id": "schema:Recipe" },
3192
- "Recommendation": { "@id": "schema:Recommendation" },
3193
- "RecommendedDoseSchedule": { "@id": "schema:RecommendedDoseSchedule" },
3194
- "Recruiting": { "@id": "schema:Recruiting" },
3195
- "RecyclingCenter": { "@id": "schema:RecyclingCenter" },
3196
- "ReducedRelevanceForChildrenConsideration": { "@id": "schema:ReducedRelevanceForChildrenConsideration" },
3197
- "RefundTypeEnumeration": { "@id": "schema:RefundTypeEnumeration" },
3198
- "RefurbishedCondition": { "@id": "schema:RefurbishedCondition" },
3199
- "RegisterAction": { "@id": "schema:RegisterAction" },
3200
- "Registry": { "@id": "schema:Registry" },
3201
- "RegularPrice": { "@id": "schema:RegularPrice" },
3202
- "ReimbursementCap": { "@id": "schema:ReimbursementCap" },
3203
- "RejectAction": { "@id": "schema:RejectAction" },
3204
- "RelatedTopicsHealthAspect": { "@id": "schema:RelatedTopicsHealthAspect" },
3205
- "RemixAlbum": { "@id": "schema:RemixAlbum" },
3206
- "Renal": { "@id": "schema:Renal" },
3207
- "RentAction": { "@id": "schema:RentAction" },
3208
- "RentalCarReservation": { "@id": "schema:RentalCarReservation" },
3209
- "RentalVehicleUsage": { "@id": "schema:RentalVehicleUsage" },
3210
- "RepaymentSpecification": { "@id": "schema:RepaymentSpecification" },
3211
- "ReplaceAction": { "@id": "schema:ReplaceAction" },
3212
- "ReplyAction": { "@id": "schema:ReplyAction" },
3213
- "Report": { "@id": "schema:Report" },
3214
- "ReportageNewsArticle": { "@id": "schema:ReportageNewsArticle" },
3215
- "ReportedDoseSchedule": { "@id": "schema:ReportedDoseSchedule" },
3216
- "ResearchOrganization": { "@id": "schema:ResearchOrganization" },
3217
- "ResearchProject": { "@id": "schema:ResearchProject" },
3218
- "Researcher": { "@id": "schema:Researcher" },
3219
- "Reservation": { "@id": "schema:Reservation" },
3220
- "ReservationCancelled": { "@id": "schema:ReservationCancelled" },
3221
- "ReservationConfirmed": { "@id": "schema:ReservationConfirmed" },
3222
- "ReservationHold": { "@id": "schema:ReservationHold" },
3223
- "ReservationPackage": { "@id": "schema:ReservationPackage" },
3224
- "ReservationPending": { "@id": "schema:ReservationPending" },
3225
- "ReservationStatusType": { "@id": "schema:ReservationStatusType" },
3226
- "ReserveAction": { "@id": "schema:ReserveAction" },
3227
- "Reserved": { "@id": "schema:Reserved" },
3228
- "Reservoir": { "@id": "schema:Reservoir" },
3229
- "Residence": { "@id": "schema:Residence" },
3230
- "Resort": { "@id": "schema:Resort" },
3231
- "RespiratoryTherapy": { "@id": "schema:RespiratoryTherapy" },
3232
- "Restaurant": { "@id": "schema:Restaurant" },
3233
- "RestockingFees": { "@id": "schema:RestockingFees" },
3234
- "RestrictedDiet": { "@id": "schema:RestrictedDiet" },
3235
- "ResultsAvailable": { "@id": "schema:ResultsAvailable" },
3236
- "ResultsNotAvailable": { "@id": "schema:ResultsNotAvailable" },
3237
- "ResumeAction": { "@id": "schema:ResumeAction" },
3238
- "Retail": { "@id": "schema:Retail" },
3239
- "ReturnAction": { "@id": "schema:ReturnAction" },
3240
- "ReturnAtKiosk": { "@id": "schema:ReturnAtKiosk" },
3241
- "ReturnByMail": { "@id": "schema:ReturnByMail" },
3242
- "ReturnFeesCustomerResponsibility": { "@id": "schema:ReturnFeesCustomerResponsibility" },
3243
- "ReturnFeesEnumeration": { "@id": "schema:ReturnFeesEnumeration" },
3244
- "ReturnInStore": { "@id": "schema:ReturnInStore" },
3245
- "ReturnLabelCustomerResponsibility": { "@id": "schema:ReturnLabelCustomerResponsibility" },
3246
- "ReturnLabelDownloadAndPrint": { "@id": "schema:ReturnLabelDownloadAndPrint" },
3247
- "ReturnLabelInBox": { "@id": "schema:ReturnLabelInBox" },
3248
- "ReturnLabelSourceEnumeration": { "@id": "schema:ReturnLabelSourceEnumeration" },
3249
- "ReturnMethodEnumeration": { "@id": "schema:ReturnMethodEnumeration" },
3250
- "ReturnShippingFees": { "@id": "schema:ReturnShippingFees" },
3251
- "Review": { "@id": "schema:Review" },
3252
- "ReviewAction": { "@id": "schema:ReviewAction" },
3253
- "ReviewNewsArticle": { "@id": "schema:ReviewNewsArticle" },
3254
- "Rheumatologic": { "@id": "schema:Rheumatologic" },
3255
- "RightHandDriving": { "@id": "schema:RightHandDriving" },
3256
- "RisksOrComplicationsHealthAspect": { "@id": "schema:RisksOrComplicationsHealthAspect" },
3257
- "RiverBodyOfWater": { "@id": "schema:RiverBodyOfWater" },
3258
- "Role": { "@id": "schema:Role" },
3259
- "RoofingContractor": { "@id": "schema:RoofingContractor" },
3260
- "Room": { "@id": "schema:Room" },
3261
- "RsvpAction": { "@id": "schema:RsvpAction" },
3262
- "RsvpResponseMaybe": { "@id": "schema:RsvpResponseMaybe" },
3263
- "RsvpResponseNo": { "@id": "schema:RsvpResponseNo" },
3264
- "RsvpResponseType": { "@id": "schema:RsvpResponseType" },
3265
- "RsvpResponseYes": { "@id": "schema:RsvpResponseYes" },
3266
- "SRP": { "@id": "schema:SRP" },
3267
- "SafetyHealthAspect": { "@id": "schema:SafetyHealthAspect" },
3268
- "SaleEvent": { "@id": "schema:SaleEvent" },
3269
- "SalePrice": { "@id": "schema:SalePrice" },
3270
- "SatireOrParodyContent": { "@id": "schema:SatireOrParodyContent" },
3271
- "SatiricalArticle": { "@id": "schema:SatiricalArticle" },
3272
- "Saturday": { "@id": "schema:Saturday" },
3273
- "Schedule": { "@id": "schema:Schedule" },
3274
- "ScheduleAction": { "@id": "schema:ScheduleAction" },
3275
- "ScholarlyArticle": { "@id": "schema:ScholarlyArticle" },
3276
- "School": { "@id": "schema:School" },
3277
- "SchoolDistrict": { "@id": "schema:SchoolDistrict" },
3278
- "ScreeningEvent": { "@id": "schema:ScreeningEvent" },
3279
- "ScreeningHealthAspect": { "@id": "schema:ScreeningHealthAspect" },
3280
- "Sculpture": { "@id": "schema:Sculpture" },
3281
- "SeaBodyOfWater": { "@id": "schema:SeaBodyOfWater" },
3282
- "SearchAction": { "@id": "schema:SearchAction" },
3283
- "SearchRescueOrganization": { "@id": "schema:SearchRescueOrganization" },
3284
- "SearchResultsPage": { "@id": "schema:SearchResultsPage" },
3285
- "Season": { "@id": "schema:Season" },
3286
- "Seat": { "@id": "schema:Seat" },
3287
- "SeatingMap": { "@id": "schema:SeatingMap" },
3288
- "SeeDoctorHealthAspect": { "@id": "schema:SeeDoctorHealthAspect" },
3289
- "SeekToAction": { "@id": "schema:SeekToAction" },
3290
- "SelfCareHealthAspect": { "@id": "schema:SelfCareHealthAspect" },
3291
- "SelfStorage": { "@id": "schema:SelfStorage" },
3292
- "SellAction": { "@id": "schema:SellAction" },
3293
- "SendAction": { "@id": "schema:SendAction" },
3294
- "Series": { "@id": "schema:Series" },
3295
- "Service": { "@id": "schema:Service" },
3296
- "ServiceChannel": { "@id": "schema:ServiceChannel" },
3297
- "SexualContentConsideration": { "@id": "schema:SexualContentConsideration" },
3298
- "ShareAction": { "@id": "schema:ShareAction" },
3299
- "SheetMusic": { "@id": "schema:SheetMusic" },
3300
- "ShippingDeliveryTime": { "@id": "schema:ShippingDeliveryTime" },
3301
- "ShippingRateSettings": { "@id": "schema:ShippingRateSettings" },
3302
- "ShoeStore": { "@id": "schema:ShoeStore" },
3303
- "ShoppingCenter": { "@id": "schema:ShoppingCenter" },
3304
- "ShortStory": { "@id": "schema:ShortStory" },
3305
- "SideEffectsHealthAspect": { "@id": "schema:SideEffectsHealthAspect" },
3306
- "SingleBlindedTrial": { "@id": "schema:SingleBlindedTrial" },
3307
- "SingleCenterTrial": { "@id": "schema:SingleCenterTrial" },
3308
- "SingleFamilyResidence": { "@id": "schema:SingleFamilyResidence" },
3309
- "SinglePlayer": { "@id": "schema:SinglePlayer" },
3310
- "SingleRelease": { "@id": "schema:SingleRelease" },
3311
- "SiteNavigationElement": { "@id": "schema:SiteNavigationElement" },
3312
- "SizeGroupEnumeration": { "@id": "schema:SizeGroupEnumeration" },
3313
- "SizeSpecification": { "@id": "schema:SizeSpecification" },
3314
- "SizeSystemEnumeration": { "@id": "schema:SizeSystemEnumeration" },
3315
- "SizeSystemImperial": { "@id": "schema:SizeSystemImperial" },
3316
- "SizeSystemMetric": { "@id": "schema:SizeSystemMetric" },
3317
- "SkiResort": { "@id": "schema:SkiResort" },
3318
- "Skin": { "@id": "schema:Skin" },
3319
- "SocialEvent": { "@id": "schema:SocialEvent" },
3320
- "SocialMediaPosting": { "@id": "schema:SocialMediaPosting" },
3321
- "SoftwareApplication": { "@id": "schema:SoftwareApplication" },
3322
- "SoftwareSourceCode": { "@id": "schema:SoftwareSourceCode" },
3323
- "SoldOut": { "@id": "schema:SoldOut" },
3324
- "SolveMathAction": { "@id": "schema:SolveMathAction" },
3325
- "SomeProducts": { "@id": "schema:SomeProducts" },
3326
- "SoundtrackAlbum": { "@id": "schema:SoundtrackAlbum" },
3327
- "SpeakableSpecification": { "@id": "schema:SpeakableSpecification" },
3328
- "SpecialAnnouncement": { "@id": "schema:SpecialAnnouncement" },
3329
- "Specialty": { "@id": "schema:Specialty" },
3330
- "SpeechPathology": { "@id": "schema:SpeechPathology" },
3331
- "SpokenWordAlbum": { "@id": "schema:SpokenWordAlbum" },
3332
- "SportingGoodsStore": { "@id": "schema:SportingGoodsStore" },
3333
- "SportsActivityLocation": { "@id": "schema:SportsActivityLocation" },
3334
- "SportsClub": { "@id": "schema:SportsClub" },
3335
- "SportsEvent": { "@id": "schema:SportsEvent" },
3336
- "SportsOrganization": { "@id": "schema:SportsOrganization" },
3337
- "SportsTeam": { "@id": "schema:SportsTeam" },
3338
- "SpreadsheetDigitalDocument": { "@id": "schema:SpreadsheetDigitalDocument" },
3339
- "StadiumOrArena": { "@id": "schema:StadiumOrArena" },
3340
- "StagedContent": { "@id": "schema:StagedContent" },
3341
- "StagesHealthAspect": { "@id": "schema:StagesHealthAspect" },
3342
- "State": { "@id": "schema:State" },
3343
- "Statement": { "@id": "schema:Statement" },
3344
- "StatisticalPopulation": { "@id": "schema:StatisticalPopulation" },
3345
- "StatisticalVariable": { "@id": "schema:StatisticalVariable" },
3346
- "StatusEnumeration": { "@id": "schema:StatusEnumeration" },
3347
- "SteeringPositionValue": { "@id": "schema:SteeringPositionValue" },
3348
- "Store": { "@id": "schema:Store" },
3349
- "StoreCreditRefund": { "@id": "schema:StoreCreditRefund" },
3350
- "StrengthTraining": { "@id": "schema:StrengthTraining" },
3351
- "StructuredValue": { "@id": "schema:StructuredValue" },
3352
- "StudioAlbum": { "@id": "schema:StudioAlbum" },
3353
- "StupidType": { "@id": "schema:StupidType" },
3354
- "SubscribeAction": { "@id": "schema:SubscribeAction" },
3355
- "Subscription": { "@id": "schema:Subscription" },
3356
- "Substance": { "@id": "schema:Substance" },
3357
- "SubwayStation": { "@id": "schema:SubwayStation" },
3358
- "Suite": { "@id": "schema:Suite" },
3359
- "Sunday": { "@id": "schema:Sunday" },
3360
- "SuperficialAnatomy": { "@id": "schema:SuperficialAnatomy" },
3361
- "Surgical": { "@id": "schema:Surgical" },
3362
- "SurgicalProcedure": { "@id": "schema:SurgicalProcedure" },
3363
- "SuspendAction": { "@id": "schema:SuspendAction" },
3364
- "Suspended": { "@id": "schema:Suspended" },
3365
- "Syllabus": { "@id": "schema:Syllabus" },
3366
- "SymptomsHealthAspect": { "@id": "schema:SymptomsHealthAspect" },
3367
- "Synagogue": { "@id": "schema:Synagogue" },
3368
- "TVClip": { "@id": "schema:TVClip" },
3369
- "TVEpisode": { "@id": "schema:TVEpisode" },
3370
- "TVSeason": { "@id": "schema:TVSeason" },
3371
- "TVSeries": { "@id": "schema:TVSeries" },
3372
- "Table": { "@id": "schema:Table" },
3373
- "TakeAction": { "@id": "schema:TakeAction" },
3374
- "TattooParlor": { "@id": "schema:TattooParlor" },
3375
- "Taxi": { "@id": "schema:Taxi" },
3376
- "TaxiReservation": { "@id": "schema:TaxiReservation" },
3377
- "TaxiService": { "@id": "schema:TaxiService" },
3378
- "TaxiStand": { "@id": "schema:TaxiStand" },
3379
- "TaxiVehicleUsage": { "@id": "schema:TaxiVehicleUsage" },
3380
- "Taxon": { "@id": "schema:Taxon" },
3381
- "TechArticle": { "@id": "schema:TechArticle" },
3382
- "TelevisionChannel": { "@id": "schema:TelevisionChannel" },
3383
- "TelevisionStation": { "@id": "schema:TelevisionStation" },
3384
- "TennisComplex": { "@id": "schema:TennisComplex" },
3385
- "Terminated": { "@id": "schema:Terminated" },
3386
- "Text": { "@id": "schema:Text" },
3387
- "TextDigitalDocument": { "@id": "schema:TextDigitalDocument" },
3388
- "TextObject": { "@id": "schema:TextObject" },
3389
- "TheaterEvent": { "@id": "schema:TheaterEvent" },
3390
- "TheaterGroup": { "@id": "schema:TheaterGroup" },
3391
- "Therapeutic": { "@id": "schema:Therapeutic" },
3392
- "TherapeuticProcedure": { "@id": "schema:TherapeuticProcedure" },
3393
- "Thesis": { "@id": "schema:Thesis" },
3394
- "Thing": { "@id": "schema:Thing" },
3395
- "Throat": { "@id": "schema:Throat" },
3396
- "Thursday": { "@id": "schema:Thursday" },
3397
- "Ticket": { "@id": "schema:Ticket" },
3398
- "TieAction": { "@id": "schema:TieAction" },
3399
- "TierBenefitEnumeration": { "@id": "schema:TierBenefitEnumeration" },
3400
- "TierBenefitLoyaltyPoints": { "@id": "schema:TierBenefitLoyaltyPoints" },
3401
- "TierBenefitLoyaltyPrice": { "@id": "schema:TierBenefitLoyaltyPrice" },
3402
- "TierBenefitLoyaltyReturns": { "@id": "schema:TierBenefitLoyaltyReturns" },
3403
- "TierBenefitLoyaltyShipping": { "@id": "schema:TierBenefitLoyaltyShipping" },
3404
- "Time": { "@id": "schema:Time" },
3405
- "TipAction": { "@id": "schema:TipAction" },
3406
- "TireShop": { "@id": "schema:TireShop" },
3407
- "TobaccoNicotineConsideration": { "@id": "schema:TobaccoNicotineConsideration" },
3408
- "TollFree": { "@id": "schema:TollFree" },
3409
- "TouristAttraction": { "@id": "schema:TouristAttraction" },
3410
- "TouristDestination": { "@id": "schema:TouristDestination" },
3411
- "TouristInformationCenter": { "@id": "schema:TouristInformationCenter" },
3412
- "TouristTrip": { "@id": "schema:TouristTrip" },
3413
- "Toxicologic": { "@id": "schema:Toxicologic" },
3414
- "ToyStore": { "@id": "schema:ToyStore" },
3415
- "TrackAction": { "@id": "schema:TrackAction" },
3416
- "TradeAction": { "@id": "schema:TradeAction" },
3417
- "TraditionalChinese": { "@id": "schema:TraditionalChinese" },
3418
- "TrainReservation": { "@id": "schema:TrainReservation" },
3419
- "TrainStation": { "@id": "schema:TrainStation" },
3420
- "TrainTrip": { "@id": "schema:TrainTrip" },
3421
- "TrainedAlgorithmicMediaDigitalSource": { "@id": "schema:TrainedAlgorithmicMediaDigitalSource" },
3422
- "TransferAction": { "@id": "schema:TransferAction" },
3423
- "TransformedContent": { "@id": "schema:TransformedContent" },
3424
- "TransitMap": { "@id": "schema:TransitMap" },
3425
- "TravelAction": { "@id": "schema:TravelAction" },
3426
- "TravelAgency": { "@id": "schema:TravelAgency" },
3427
- "TreatmentIndication": { "@id": "schema:TreatmentIndication" },
3428
- "TreatmentsHealthAspect": { "@id": "schema:TreatmentsHealthAspect" },
3429
- "Trip": { "@id": "schema:Trip" },
3430
- "TripleBlindedTrial": { "@id": "schema:TripleBlindedTrial" },
3431
- "True": { "@id": "schema:True" },
3432
- "Tuesday": { "@id": "schema:Tuesday" },
3433
- "TypeAndQuantityNode": { "@id": "schema:TypeAndQuantityNode" },
3434
- "TypesHealthAspect": { "@id": "schema:TypesHealthAspect" },
3435
- "UKNonprofitType": { "@id": "schema:UKNonprofitType" },
3436
- "UKTrust": { "@id": "schema:UKTrust" },
3437
- "URL": { "@id": "schema:URL" },
3438
- "USNonprofitType": { "@id": "schema:USNonprofitType" },
3439
- "Ultrasound": { "@id": "schema:Ultrasound" },
3440
- "UnRegisterAction": { "@id": "schema:UnRegisterAction" },
3441
- "UnclassifiedAdultConsideration": { "@id": "schema:UnclassifiedAdultConsideration" },
3442
- "UnemploymentSupport": { "@id": "schema:UnemploymentSupport" },
3443
- "UnincorporatedAssociationCharity": { "@id": "schema:UnincorporatedAssociationCharity" },
3444
- "UnitPriceSpecification": { "@id": "schema:UnitPriceSpecification" },
3445
- "UnofficialLegalValue": { "@id": "schema:UnofficialLegalValue" },
3446
- "UpdateAction": { "@id": "schema:UpdateAction" },
3447
- "Urologic": { "@id": "schema:Urologic" },
3448
- "UsageOrScheduleHealthAspect": { "@id": "schema:UsageOrScheduleHealthAspect" },
3449
- "UseAction": { "@id": "schema:UseAction" },
3450
- "UsedCondition": { "@id": "schema:UsedCondition" },
3451
- "UserBlocks": { "@id": "schema:UserBlocks" },
3452
- "UserCheckins": { "@id": "schema:UserCheckins" },
3453
- "UserComments": { "@id": "schema:UserComments" },
3454
- "UserDownloads": { "@id": "schema:UserDownloads" },
3455
- "UserInteraction": { "@id": "schema:UserInteraction" },
3456
- "UserLikes": { "@id": "schema:UserLikes" },
3457
- "UserPageVisits": { "@id": "schema:UserPageVisits" },
3458
- "UserPlays": { "@id": "schema:UserPlays" },
3459
- "UserPlusOnes": { "@id": "schema:UserPlusOnes" },
3460
- "UserReview": { "@id": "schema:UserReview" },
3461
- "UserTweets": { "@id": "schema:UserTweets" },
3462
- "VacationRental": { "@id": "schema:VacationRental" },
3463
- "VeganDiet": { "@id": "schema:VeganDiet" },
3464
- "VegetarianDiet": { "@id": "schema:VegetarianDiet" },
3465
- "Vehicle": { "@id": "schema:Vehicle" },
3466
- "Vein": { "@id": "schema:Vein" },
3467
- "VenueMap": { "@id": "schema:VenueMap" },
3468
- "Vessel": { "@id": "schema:Vessel" },
3469
- "VeterinaryCare": { "@id": "schema:VeterinaryCare" },
3470
- "VideoGallery": { "@id": "schema:VideoGallery" },
3471
- "VideoGame": { "@id": "schema:VideoGame" },
3472
- "VideoGameClip": { "@id": "schema:VideoGameClip" },
3473
- "VideoGameSeries": { "@id": "schema:VideoGameSeries" },
3474
- "VideoObject": { "@id": "schema:VideoObject" },
3475
- "VideoObjectSnapshot": { "@id": "schema:VideoObjectSnapshot" },
3476
- "ViewAction": { "@id": "schema:ViewAction" },
3477
- "VinylFormat": { "@id": "schema:VinylFormat" },
3478
- "ViolenceConsideration": { "@id": "schema:ViolenceConsideration" },
3479
- "VirtualLocation": { "@id": "schema:VirtualLocation" },
3480
- "VirtualRecordingDigitalSource": { "@id": "schema:VirtualRecordingDigitalSource" },
3481
- "Virus": { "@id": "schema:Virus" },
3482
- "VisualArtsEvent": { "@id": "schema:VisualArtsEvent" },
3483
- "VisualArtwork": { "@id": "schema:VisualArtwork" },
3484
- "VitalSign": { "@id": "schema:VitalSign" },
3485
- "Volcano": { "@id": "schema:Volcano" },
3486
- "VoteAction": { "@id": "schema:VoteAction" },
3487
- "WPAdBlock": { "@id": "schema:WPAdBlock" },
3488
- "WPFooter": { "@id": "schema:WPFooter" },
3489
- "WPHeader": { "@id": "schema:WPHeader" },
3490
- "WPSideBar": { "@id": "schema:WPSideBar" },
3491
- "WantAction": { "@id": "schema:WantAction" },
3492
- "WarrantyPromise": { "@id": "schema:WarrantyPromise" },
3493
- "WarrantyScope": { "@id": "schema:WarrantyScope" },
3494
- "WatchAction": { "@id": "schema:WatchAction" },
3495
- "Waterfall": { "@id": "schema:Waterfall" },
3496
- "WeaponConsideration": { "@id": "schema:WeaponConsideration" },
3497
- "WearAction": { "@id": "schema:WearAction" },
3498
- "WearableMeasurementBack": { "@id": "schema:WearableMeasurementBack" },
3499
- "WearableMeasurementChestOrBust": { "@id": "schema:WearableMeasurementChestOrBust" },
3500
- "WearableMeasurementCollar": { "@id": "schema:WearableMeasurementCollar" },
3501
- "WearableMeasurementCup": { "@id": "schema:WearableMeasurementCup" },
3502
- "WearableMeasurementHeight": { "@id": "schema:WearableMeasurementHeight" },
3503
- "WearableMeasurementHips": { "@id": "schema:WearableMeasurementHips" },
3504
- "WearableMeasurementInseam": { "@id": "schema:WearableMeasurementInseam" },
3505
- "WearableMeasurementLength": { "@id": "schema:WearableMeasurementLength" },
3506
- "WearableMeasurementOutsideLeg": { "@id": "schema:WearableMeasurementOutsideLeg" },
3507
- "WearableMeasurementSleeve": { "@id": "schema:WearableMeasurementSleeve" },
3508
- "WearableMeasurementTypeEnumeration": { "@id": "schema:WearableMeasurementTypeEnumeration" },
3509
- "WearableMeasurementWaist": { "@id": "schema:WearableMeasurementWaist" },
3510
- "WearableMeasurementWidth": { "@id": "schema:WearableMeasurementWidth" },
3511
- "WearableSizeGroupBig": { "@id": "schema:WearableSizeGroupBig" },
3512
- "WearableSizeGroupBoys": { "@id": "schema:WearableSizeGroupBoys" },
3513
- "WearableSizeGroupEnumeration": { "@id": "schema:WearableSizeGroupEnumeration" },
3514
- "WearableSizeGroupExtraShort": { "@id": "schema:WearableSizeGroupExtraShort" },
3515
- "WearableSizeGroupExtraTall": { "@id": "schema:WearableSizeGroupExtraTall" },
3516
- "WearableSizeGroupGirls": { "@id": "schema:WearableSizeGroupGirls" },
3517
- "WearableSizeGroupHusky": { "@id": "schema:WearableSizeGroupHusky" },
3518
- "WearableSizeGroupInfants": { "@id": "schema:WearableSizeGroupInfants" },
3519
- "WearableSizeGroupJuniors": { "@id": "schema:WearableSizeGroupJuniors" },
3520
- "WearableSizeGroupMaternity": { "@id": "schema:WearableSizeGroupMaternity" },
3521
- "WearableSizeGroupMens": { "@id": "schema:WearableSizeGroupMens" },
3522
- "WearableSizeGroupMisses": { "@id": "schema:WearableSizeGroupMisses" },
3523
- "WearableSizeGroupPetite": { "@id": "schema:WearableSizeGroupPetite" },
3524
- "WearableSizeGroupPlus": { "@id": "schema:WearableSizeGroupPlus" },
3525
- "WearableSizeGroupRegular": { "@id": "schema:WearableSizeGroupRegular" },
3526
- "WearableSizeGroupShort": { "@id": "schema:WearableSizeGroupShort" },
3527
- "WearableSizeGroupTall": { "@id": "schema:WearableSizeGroupTall" },
3528
- "WearableSizeGroupWomens": { "@id": "schema:WearableSizeGroupWomens" },
3529
- "WearableSizeSystemAU": { "@id": "schema:WearableSizeSystemAU" },
3530
- "WearableSizeSystemBR": { "@id": "schema:WearableSizeSystemBR" },
3531
- "WearableSizeSystemCN": { "@id": "schema:WearableSizeSystemCN" },
3532
- "WearableSizeSystemContinental": { "@id": "schema:WearableSizeSystemContinental" },
3533
- "WearableSizeSystemDE": { "@id": "schema:WearableSizeSystemDE" },
3534
- "WearableSizeSystemEN13402": { "@id": "schema:WearableSizeSystemEN13402" },
3535
- "WearableSizeSystemEnumeration": { "@id": "schema:WearableSizeSystemEnumeration" },
3536
- "WearableSizeSystemEurope": { "@id": "schema:WearableSizeSystemEurope" },
3537
- "WearableSizeSystemFR": { "@id": "schema:WearableSizeSystemFR" },
3538
- "WearableSizeSystemGS1": { "@id": "schema:WearableSizeSystemGS1" },
3539
- "WearableSizeSystemIT": { "@id": "schema:WearableSizeSystemIT" },
3540
- "WearableSizeSystemJP": { "@id": "schema:WearableSizeSystemJP" },
3541
- "WearableSizeSystemMX": { "@id": "schema:WearableSizeSystemMX" },
3542
- "WearableSizeSystemUK": { "@id": "schema:WearableSizeSystemUK" },
3543
- "WearableSizeSystemUS": { "@id": "schema:WearableSizeSystemUS" },
3544
- "WebAPI": { "@id": "schema:WebAPI" },
3545
- "WebApplication": { "@id": "schema:WebApplication" },
3546
- "WebContent": { "@id": "schema:WebContent" },
3547
- "WebPage": { "@id": "schema:WebPage" },
3548
- "WebPageElement": { "@id": "schema:WebPageElement" },
3549
- "WebSite": { "@id": "schema:WebSite" },
3550
- "Wednesday": { "@id": "schema:Wednesday" },
3551
- "WesternConventional": { "@id": "schema:WesternConventional" },
3552
- "Wholesale": { "@id": "schema:Wholesale" },
3553
- "WholesaleStore": { "@id": "schema:WholesaleStore" },
3554
- "WinAction": { "@id": "schema:WinAction" },
3555
- "Winery": { "@id": "schema:Winery" },
3556
- "Withdrawn": { "@id": "schema:Withdrawn" },
3557
- "WorkBasedProgram": { "@id": "schema:WorkBasedProgram" },
3558
- "WorkersUnion": { "@id": "schema:WorkersUnion" },
3559
- "WriteAction": { "@id": "schema:WriteAction" },
3560
- "WritePermission": { "@id": "schema:WritePermission" },
3561
- "XPathType": { "@id": "schema:XPathType" },
3562
- "XRay": { "@id": "schema:XRay" },
3563
- "ZoneBoardingPolicy": { "@id": "schema:ZoneBoardingPolicy" },
3564
- "Zoo": { "@id": "schema:Zoo" },
3565
- "about": { "@id": "schema:about" },
3566
- "abridged": { "@id": "schema:abridged" },
3567
- "abstract": { "@id": "schema:abstract" },
3568
- "accelerationTime": { "@id": "schema:accelerationTime" },
3569
- "acceptedAnswer": { "@id": "schema:acceptedAnswer" },
3570
- "acceptedOffer": { "@id": "schema:acceptedOffer" },
3571
- "acceptedPaymentMethod": { "@id": "schema:acceptedPaymentMethod" },
3572
- "acceptsReservations": { "@id": "schema:acceptsReservations" },
3573
- "accessCode": { "@id": "schema:accessCode" },
3574
- "accessMode": { "@id": "schema:accessMode" },
3575
- "accessModeSufficient": { "@id": "schema:accessModeSufficient" },
3576
- "accessibilityAPI": { "@id": "schema:accessibilityAPI" },
3577
- "accessibilityControl": { "@id": "schema:accessibilityControl" },
3578
- "accessibilityFeature": { "@id": "schema:accessibilityFeature" },
3579
- "accessibilityHazard": { "@id": "schema:accessibilityHazard" },
3580
- "accessibilitySummary": { "@id": "schema:accessibilitySummary" },
3581
- "accommodationCategory": { "@id": "schema:accommodationCategory" },
3582
- "accommodationFloorPlan": { "@id": "schema:accommodationFloorPlan" },
3583
- "accountId": { "@id": "schema:accountId" },
3584
- "accountMinimumInflow": { "@id": "schema:accountMinimumInflow" },
3585
- "accountOverdraftLimit": { "@id": "schema:accountOverdraftLimit" },
3586
- "accountablePerson": { "@id": "schema:accountablePerson" },
3587
- "acquireLicensePage": {
3588
- "@id": "schema:acquireLicensePage",
3589
- "@type": "@id"
3590
- },
3591
- "acquiredFrom": { "@id": "schema:acquiredFrom" },
3592
- "acrissCode": { "@id": "schema:acrissCode" },
3593
- "actionAccessibilityRequirement": { "@id": "schema:actionAccessibilityRequirement" },
3594
- "actionApplication": { "@id": "schema:actionApplication" },
3595
- "actionOption": { "@id": "schema:actionOption" },
3596
- "actionPlatform": { "@id": "schema:actionPlatform" },
3597
- "actionStatus": { "@id": "schema:actionStatus" },
3598
- "actionableFeedbackPolicy": {
3599
- "@id": "schema:actionableFeedbackPolicy",
3600
- "@type": "@id"
3601
- },
3602
- "activeIngredient": { "@id": "schema:activeIngredient" },
3603
- "activityDuration": { "@id": "schema:activityDuration" },
3604
- "activityFrequency": { "@id": "schema:activityFrequency" },
3605
- "actor": { "@id": "schema:actor" },
3606
- "actors": { "@id": "schema:actors" },
3607
- "addOn": { "@id": "schema:addOn" },
3608
- "additionalName": { "@id": "schema:additionalName" },
3609
- "additionalNumberOfGuests": { "@id": "schema:additionalNumberOfGuests" },
3610
- "additionalProperty": { "@id": "schema:additionalProperty" },
3611
- "additionalType": { "@id": "schema:additionalType" },
3612
- "additionalVariable": { "@id": "schema:additionalVariable" },
3613
- "address": { "@id": "schema:address" },
3614
- "addressCountry": { "@id": "schema:addressCountry" },
3615
- "addressLocality": { "@id": "schema:addressLocality" },
3616
- "addressRegion": { "@id": "schema:addressRegion" },
3617
- "administrationRoute": { "@id": "schema:administrationRoute" },
3618
- "advanceBookingRequirement": { "@id": "schema:advanceBookingRequirement" },
3619
- "adverseOutcome": { "@id": "schema:adverseOutcome" },
3620
- "affectedBy": { "@id": "schema:affectedBy" },
3621
- "affiliation": { "@id": "schema:affiliation" },
3622
- "afterMedia": {
3623
- "@id": "schema:afterMedia",
3624
- "@type": "@id"
3625
- },
3626
- "agent": { "@id": "schema:agent" },
3627
- "agentInteractionStatistic": { "@id": "schema:agentInteractionStatistic" },
3628
- "aggregateRating": { "@id": "schema:aggregateRating" },
3629
- "aircraft": { "@id": "schema:aircraft" },
3630
- "album": { "@id": "schema:album" },
3631
- "albumProductionType": { "@id": "schema:albumProductionType" },
3632
- "albumRelease": { "@id": "schema:albumRelease" },
3633
- "albumReleaseType": { "@id": "schema:albumReleaseType" },
3634
- "albums": { "@id": "schema:albums" },
3635
- "alcoholWarning": { "@id": "schema:alcoholWarning" },
3636
- "algorithm": { "@id": "schema:algorithm" },
3637
- "alignmentType": { "@id": "schema:alignmentType" },
3638
- "alternateName": { "@id": "schema:alternateName" },
3639
- "alternativeHeadline": { "@id": "schema:alternativeHeadline" },
3640
- "alternativeOf": { "@id": "schema:alternativeOf" },
3641
- "alumni": { "@id": "schema:alumni" },
3642
- "alumniOf": { "@id": "schema:alumniOf" },
3643
- "amenityFeature": { "@id": "schema:amenityFeature" },
3644
- "amount": { "@id": "schema:amount" },
3645
- "amountOfThisGood": { "@id": "schema:amountOfThisGood" },
3646
- "announcementLocation": { "@id": "schema:announcementLocation" },
3647
- "annualPercentageRate": { "@id": "schema:annualPercentageRate" },
3648
- "answerCount": { "@id": "schema:answerCount" },
3649
- "answerExplanation": { "@id": "schema:answerExplanation" },
3650
- "antagonist": { "@id": "schema:antagonist" },
3651
- "appearance": { "@id": "schema:appearance" },
3652
- "applicableCountry": { "@id": "schema:applicableCountry" },
3653
- "applicableLocation": { "@id": "schema:applicableLocation" },
3654
- "applicantLocationRequirements": { "@id": "schema:applicantLocationRequirements" },
3655
- "application": { "@id": "schema:application" },
3656
- "applicationCategory": { "@id": "schema:applicationCategory" },
3657
- "applicationContact": { "@id": "schema:applicationContact" },
3658
- "applicationDeadline": {
3659
- "@id": "schema:applicationDeadline",
3660
- "@type": "Date"
3661
- },
3662
- "applicationStartDate": {
3663
- "@id": "schema:applicationStartDate",
3664
- "@type": "Date"
3665
- },
3666
- "applicationSubCategory": { "@id": "schema:applicationSubCategory" },
3667
- "applicationSuite": { "@id": "schema:applicationSuite" },
3668
- "appliesToDeliveryMethod": { "@id": "schema:appliesToDeliveryMethod" },
3669
- "appliesToPaymentMethod": { "@id": "schema:appliesToPaymentMethod" },
3670
- "archiveHeld": { "@id": "schema:archiveHeld" },
3671
- "archivedAt": {
3672
- "@id": "schema:archivedAt",
3673
- "@type": "@id"
3674
- },
3675
- "area": { "@id": "schema:area" },
3676
- "areaServed": { "@id": "schema:areaServed" },
3677
- "arrivalAirport": { "@id": "schema:arrivalAirport" },
3678
- "arrivalBoatTerminal": { "@id": "schema:arrivalBoatTerminal" },
3679
- "arrivalBusStop": { "@id": "schema:arrivalBusStop" },
3680
- "arrivalGate": { "@id": "schema:arrivalGate" },
3681
- "arrivalPlatform": { "@id": "schema:arrivalPlatform" },
3682
- "arrivalStation": { "@id": "schema:arrivalStation" },
3683
- "arrivalTerminal": { "@id": "schema:arrivalTerminal" },
3684
- "arrivalTime": { "@id": "schema:arrivalTime" },
3685
- "artEdition": { "@id": "schema:artEdition" },
3686
- "artMedium": { "@id": "schema:artMedium" },
3687
- "arterialBranch": { "@id": "schema:arterialBranch" },
3688
- "artform": { "@id": "schema:artform" },
3689
- "articleBody": { "@id": "schema:articleBody" },
3690
- "articleSection": { "@id": "schema:articleSection" },
3691
- "artist": { "@id": "schema:artist" },
3692
- "artworkSurface": { "@id": "schema:artworkSurface" },
3693
- "asin": { "@id": "schema:asin" },
3694
- "aspect": { "@id": "schema:aspect" },
3695
- "assembly": { "@id": "schema:assembly" },
3696
- "assemblyVersion": { "@id": "schema:assemblyVersion" },
3697
- "assesses": { "@id": "schema:assesses" },
3698
- "associatedAnatomy": { "@id": "schema:associatedAnatomy" },
3699
- "associatedArticle": { "@id": "schema:associatedArticle" },
3700
- "associatedClaimReview": { "@id": "schema:associatedClaimReview" },
3701
- "associatedDisease": {
3702
- "@id": "schema:associatedDisease",
3703
- "@type": "@id"
3704
- },
3705
- "associatedMedia": { "@id": "schema:associatedMedia" },
3706
- "associatedMediaReview": { "@id": "schema:associatedMediaReview" },
3707
- "associatedPathophysiology": { "@id": "schema:associatedPathophysiology" },
3708
- "associatedReview": { "@id": "schema:associatedReview" },
3709
- "athlete": { "@id": "schema:athlete" },
3710
- "attendee": { "@id": "schema:attendee" },
3711
- "attendees": { "@id": "schema:attendees" },
3712
- "audience": { "@id": "schema:audience" },
3713
- "audienceType": { "@id": "schema:audienceType" },
3714
- "audio": { "@id": "schema:audio" },
3715
- "auditDate": {
3716
- "@id": "schema:auditDate",
3717
- "@type": "Date"
3718
- },
3719
- "authenticator": { "@id": "schema:authenticator" },
3720
- "author": { "@id": "schema:author" },
3721
- "availability": { "@id": "schema:availability" },
3722
- "availabilityEnds": {
3723
- "@id": "schema:availabilityEnds",
3724
- "@type": "Date"
3725
- },
3726
- "availabilityStarts": {
3727
- "@id": "schema:availabilityStarts",
3728
- "@type": "Date"
3729
- },
3730
- "availableAtOrFrom": { "@id": "schema:availableAtOrFrom" },
3731
- "availableChannel": { "@id": "schema:availableChannel" },
3732
- "availableDeliveryMethod": { "@id": "schema:availableDeliveryMethod" },
3733
- "availableFrom": { "@id": "schema:availableFrom" },
3734
- "availableIn": { "@id": "schema:availableIn" },
3735
- "availableLanguage": { "@id": "schema:availableLanguage" },
3736
- "availableOnDevice": { "@id": "schema:availableOnDevice" },
3737
- "availableService": { "@id": "schema:availableService" },
3738
- "availableStrength": { "@id": "schema:availableStrength" },
3739
- "availableTest": { "@id": "schema:availableTest" },
3740
- "availableThrough": { "@id": "schema:availableThrough" },
3741
- "award": { "@id": "schema:award" },
3742
- "awards": { "@id": "schema:awards" },
3743
- "awayTeam": { "@id": "schema:awayTeam" },
3744
- "backstory": { "@id": "schema:backstory" },
3745
- "bankAccountType": { "@id": "schema:bankAccountType" },
3746
- "baseSalary": { "@id": "schema:baseSalary" },
3747
- "bccRecipient": { "@id": "schema:bccRecipient" },
3748
- "bed": { "@id": "schema:bed" },
3749
- "beforeMedia": {
3750
- "@id": "schema:beforeMedia",
3751
- "@type": "@id"
3752
- },
3753
- "beneficiaryBank": { "@id": "schema:beneficiaryBank" },
3754
- "benefits": { "@id": "schema:benefits" },
3755
- "benefitsSummaryUrl": {
3756
- "@id": "schema:benefitsSummaryUrl",
3757
- "@type": "@id"
3758
- },
3759
- "bestRating": { "@id": "schema:bestRating" },
3760
- "billingAddress": { "@id": "schema:billingAddress" },
3761
- "billingDuration": { "@id": "schema:billingDuration" },
3762
- "billingIncrement": { "@id": "schema:billingIncrement" },
3763
- "billingPeriod": { "@id": "schema:billingPeriod" },
3764
- "billingStart": { "@id": "schema:billingStart" },
3765
- "bioChemInteraction": { "@id": "schema:bioChemInteraction" },
3766
- "bioChemSimilarity": { "@id": "schema:bioChemSimilarity" },
3767
- "biologicalRole": { "@id": "schema:biologicalRole" },
3768
- "biomechnicalClass": { "@id": "schema:biomechnicalClass" },
3769
- "birthDate": {
3770
- "@id": "schema:birthDate",
3771
- "@type": "Date"
3772
- },
3773
- "birthPlace": { "@id": "schema:birthPlace" },
3774
- "bitrate": { "@id": "schema:bitrate" },
3775
- "blogPost": { "@id": "schema:blogPost" },
3776
- "blogPosts": { "@id": "schema:blogPosts" },
3777
- "bloodSupply": { "@id": "schema:bloodSupply" },
3778
- "boardingGroup": { "@id": "schema:boardingGroup" },
3779
- "boardingPolicy": { "@id": "schema:boardingPolicy" },
3780
- "bodyLocation": { "@id": "schema:bodyLocation" },
3781
- "bodyType": { "@id": "schema:bodyType" },
3782
- "bookEdition": { "@id": "schema:bookEdition" },
3783
- "bookFormat": { "@id": "schema:bookFormat" },
3784
- "bookingAgent": { "@id": "schema:bookingAgent" },
3785
- "bookingTime": { "@id": "schema:bookingTime" },
3786
- "borrower": { "@id": "schema:borrower" },
3787
- "box": { "@id": "schema:box" },
3788
- "branch": { "@id": "schema:branch" },
3789
- "branchCode": { "@id": "schema:branchCode" },
3790
- "branchOf": { "@id": "schema:branchOf" },
3791
- "brand": { "@id": "schema:brand" },
3792
- "breadcrumb": { "@id": "schema:breadcrumb" },
3793
- "breastfeedingWarning": { "@id": "schema:breastfeedingWarning" },
3794
- "broadcastAffiliateOf": { "@id": "schema:broadcastAffiliateOf" },
3795
- "broadcastChannelId": { "@id": "schema:broadcastChannelId" },
3796
- "broadcastDisplayName": { "@id": "schema:broadcastDisplayName" },
3797
- "broadcastFrequency": { "@id": "schema:broadcastFrequency" },
3798
- "broadcastFrequencyValue": { "@id": "schema:broadcastFrequencyValue" },
3799
- "broadcastOfEvent": { "@id": "schema:broadcastOfEvent" },
3800
- "broadcastServiceTier": { "@id": "schema:broadcastServiceTier" },
3801
- "broadcastSignalModulation": { "@id": "schema:broadcastSignalModulation" },
3802
- "broadcastSubChannel": { "@id": "schema:broadcastSubChannel" },
3803
- "broadcastTimezone": { "@id": "schema:broadcastTimezone" },
3804
- "broadcaster": { "@id": "schema:broadcaster" },
3805
- "broker": { "@id": "schema:broker" },
3806
- "browserRequirements": { "@id": "schema:browserRequirements" },
3807
- "busName": { "@id": "schema:busName" },
3808
- "busNumber": { "@id": "schema:busNumber" },
3809
- "businessDays": { "@id": "schema:businessDays" },
3810
- "businessFunction": { "@id": "schema:businessFunction" },
3811
- "buyer": { "@id": "schema:buyer" },
3812
- "byArtist": { "@id": "schema:byArtist" },
3813
- "byDay": { "@id": "schema:byDay" },
3814
- "byMonth": { "@id": "schema:byMonth" },
3815
- "byMonthDay": { "@id": "schema:byMonthDay" },
3816
- "byMonthWeek": { "@id": "schema:byMonthWeek" },
3817
- "callSign": { "@id": "schema:callSign" },
3818
- "calories": { "@id": "schema:calories" },
3819
- "candidate": { "@id": "schema:candidate" },
3820
- "caption": { "@id": "schema:caption" },
3821
- "carbohydrateContent": { "@id": "schema:carbohydrateContent" },
3822
- "cargoVolume": { "@id": "schema:cargoVolume" },
3823
- "carrier": { "@id": "schema:carrier" },
3824
- "carrierRequirements": { "@id": "schema:carrierRequirements" },
3825
- "cashBack": { "@id": "schema:cashBack" },
3826
- "catalog": { "@id": "schema:catalog" },
3827
- "catalogNumber": { "@id": "schema:catalogNumber" },
3828
- "category": { "@id": "schema:category" },
3829
- "causeOf": { "@id": "schema:causeOf" },
3830
- "ccRecipient": { "@id": "schema:ccRecipient" },
3831
- "certificationIdentification": { "@id": "schema:certificationIdentification" },
3832
- "certificationRating": { "@id": "schema:certificationRating" },
3833
- "certificationStatus": { "@id": "schema:certificationStatus" },
3834
- "character": { "@id": "schema:character" },
3835
- "characterAttribute": { "@id": "schema:characterAttribute" },
3836
- "characterName": { "@id": "schema:characterName" },
3837
- "cheatCode": { "@id": "schema:cheatCode" },
3838
- "checkinTime": { "@id": "schema:checkinTime" },
3839
- "checkoutPageURLTemplate": { "@id": "schema:checkoutPageURLTemplate" },
3840
- "checkoutTime": { "@id": "schema:checkoutTime" },
3841
- "chemicalComposition": { "@id": "schema:chemicalComposition" },
3842
- "chemicalRole": { "@id": "schema:chemicalRole" },
3843
- "childMaxAge": { "@id": "schema:childMaxAge" },
3844
- "childMinAge": { "@id": "schema:childMinAge" },
3845
- "childTaxon": { "@id": "schema:childTaxon" },
3846
- "children": { "@id": "schema:children" },
3847
- "cholesterolContent": { "@id": "schema:cholesterolContent" },
3848
- "circle": { "@id": "schema:circle" },
3849
- "citation": { "@id": "schema:citation" },
3850
- "claimInterpreter": { "@id": "schema:claimInterpreter" },
3851
- "claimReviewed": { "@id": "schema:claimReviewed" },
3852
- "clincalPharmacology": { "@id": "schema:clincalPharmacology" },
3853
- "clinicalPharmacology": { "@id": "schema:clinicalPharmacology" },
3854
- "clipNumber": { "@id": "schema:clipNumber" },
3855
- "closes": { "@id": "schema:closes" },
3856
- "coach": { "@id": "schema:coach" },
3857
- "code": { "@id": "schema:code" },
3858
- "codeRepository": {
3859
- "@id": "schema:codeRepository",
3860
- "@type": "@id"
3861
- },
3862
- "codeSampleType": { "@id": "schema:codeSampleType" },
3863
- "codeValue": { "@id": "schema:codeValue" },
3864
- "codingSystem": { "@id": "schema:codingSystem" },
3865
- "colleague": {
3866
- "@id": "schema:colleague",
3867
- "@type": "@id"
3868
- },
3869
- "colleagues": { "@id": "schema:colleagues" },
3870
- "collection": { "@id": "schema:collection" },
3871
- "collectionSize": { "@id": "schema:collectionSize" },
3872
- "color": { "@id": "schema:color" },
3873
- "colorSwatch": {
3874
- "@id": "schema:colorSwatch",
3875
- "@type": "@id"
3876
- },
3877
- "colorist": { "@id": "schema:colorist" },
3878
- "comment": { "@id": "schema:comment" },
3879
- "commentCount": { "@id": "schema:commentCount" },
3880
- "commentText": { "@id": "schema:commentText" },
3881
- "commentTime": {
3882
- "@id": "schema:commentTime",
3883
- "@type": "Date"
3884
- },
3885
- "competencyRequired": { "@id": "schema:competencyRequired" },
3886
- "competitor": { "@id": "schema:competitor" },
3887
- "composer": { "@id": "schema:composer" },
3888
- "comprisedOf": { "@id": "schema:comprisedOf" },
3889
- "conditionsOfAccess": { "@id": "schema:conditionsOfAccess" },
3890
- "confirmationNumber": { "@id": "schema:confirmationNumber" },
3891
- "connectedTo": { "@id": "schema:connectedTo" },
3892
- "constraintProperty": {
3893
- "@id": "schema:constraintProperty",
3894
- "@type": "@id"
3895
- },
3896
- "contactOption": { "@id": "schema:contactOption" },
3897
- "contactPoint": { "@id": "schema:contactPoint" },
3898
- "contactPoints": { "@id": "schema:contactPoints" },
3899
- "contactType": { "@id": "schema:contactType" },
3900
- "contactlessPayment": { "@id": "schema:contactlessPayment" },
3901
- "containedIn": { "@id": "schema:containedIn" },
3902
- "containedInPlace": { "@id": "schema:containedInPlace" },
3903
- "containsPlace": { "@id": "schema:containsPlace" },
3904
- "containsSeason": { "@id": "schema:containsSeason" },
3905
- "contentLocation": { "@id": "schema:contentLocation" },
3906
- "contentRating": { "@id": "schema:contentRating" },
3907
- "contentReferenceTime": { "@id": "schema:contentReferenceTime" },
3908
- "contentSize": { "@id": "schema:contentSize" },
3909
- "contentType": { "@id": "schema:contentType" },
3910
- "contentUrl": {
3911
- "@id": "schema:contentUrl",
3912
- "@type": "@id"
3913
- },
3914
- "contraindication": { "@id": "schema:contraindication" },
3915
- "contributor": { "@id": "schema:contributor" },
3916
- "cookTime": { "@id": "schema:cookTime" },
3917
- "cookingMethod": { "@id": "schema:cookingMethod" },
3918
- "copyrightHolder": { "@id": "schema:copyrightHolder" },
3919
- "copyrightNotice": { "@id": "schema:copyrightNotice" },
3920
- "copyrightYear": { "@id": "schema:copyrightYear" },
3921
- "correction": { "@id": "schema:correction" },
3922
- "correctionsPolicy": {
3923
- "@id": "schema:correctionsPolicy",
3924
- "@type": "@id"
3925
- },
3926
- "costCategory": { "@id": "schema:costCategory" },
3927
- "costCurrency": { "@id": "schema:costCurrency" },
3928
- "costOrigin": { "@id": "schema:costOrigin" },
3929
- "costPerUnit": { "@id": "schema:costPerUnit" },
3930
- "countriesNotSupported": { "@id": "schema:countriesNotSupported" },
3931
- "countriesSupported": { "@id": "schema:countriesSupported" },
3932
- "countryOfAssembly": { "@id": "schema:countryOfAssembly" },
3933
- "countryOfLastProcessing": { "@id": "schema:countryOfLastProcessing" },
3934
- "countryOfOrigin": { "@id": "schema:countryOfOrigin" },
3935
- "course": { "@id": "schema:course" },
3936
- "courseCode": { "@id": "schema:courseCode" },
3937
- "courseMode": { "@id": "schema:courseMode" },
3938
- "coursePrerequisites": { "@id": "schema:coursePrerequisites" },
3939
- "courseSchedule": { "@id": "schema:courseSchedule" },
3940
- "courseWorkload": { "@id": "schema:courseWorkload" },
3941
- "coverageEndTime": { "@id": "schema:coverageEndTime" },
3942
- "coverageStartTime": { "@id": "schema:coverageStartTime" },
3943
- "creativeWorkStatus": { "@id": "schema:creativeWorkStatus" },
3944
- "creator": { "@id": "schema:creator" },
3945
- "credentialCategory": { "@id": "schema:credentialCategory" },
3946
- "creditText": { "@id": "schema:creditText" },
3947
- "creditedTo": { "@id": "schema:creditedTo" },
3948
- "cssSelector": { "@id": "schema:cssSelector" },
3949
- "currenciesAccepted": { "@id": "schema:currenciesAccepted" },
3950
- "currency": { "@id": "schema:currency" },
3951
- "currentExchangeRate": { "@id": "schema:currentExchangeRate" },
3952
- "customer": { "@id": "schema:customer" },
3953
- "customerRemorseReturnFees": { "@id": "schema:customerRemorseReturnFees" },
3954
- "customerRemorseReturnLabelSource": { "@id": "schema:customerRemorseReturnLabelSource" },
3955
- "customerRemorseReturnShippingFeesAmount": { "@id": "schema:customerRemorseReturnShippingFeesAmount" },
3956
- "cutoffTime": { "@id": "schema:cutoffTime" },
3957
- "cvdCollectionDate": { "@id": "schema:cvdCollectionDate" },
3958
- "cvdFacilityCounty": { "@id": "schema:cvdFacilityCounty" },
3959
- "cvdFacilityId": { "@id": "schema:cvdFacilityId" },
3960
- "cvdNumBeds": { "@id": "schema:cvdNumBeds" },
3961
- "cvdNumBedsOcc": { "@id": "schema:cvdNumBedsOcc" },
3962
- "cvdNumC19Died": { "@id": "schema:cvdNumC19Died" },
3963
- "cvdNumC19HOPats": { "@id": "schema:cvdNumC19HOPats" },
3964
- "cvdNumC19HospPats": { "@id": "schema:cvdNumC19HospPats" },
3965
- "cvdNumC19MechVentPats": { "@id": "schema:cvdNumC19MechVentPats" },
3966
- "cvdNumC19OFMechVentPats": { "@id": "schema:cvdNumC19OFMechVentPats" },
3967
- "cvdNumC19OverflowPats": { "@id": "schema:cvdNumC19OverflowPats" },
3968
- "cvdNumICUBeds": { "@id": "schema:cvdNumICUBeds" },
3969
- "cvdNumICUBedsOcc": { "@id": "schema:cvdNumICUBedsOcc" },
3970
- "cvdNumTotBeds": { "@id": "schema:cvdNumTotBeds" },
3971
- "cvdNumVent": { "@id": "schema:cvdNumVent" },
3972
- "cvdNumVentUse": { "@id": "schema:cvdNumVentUse" },
3973
- "dataFeedElement": { "@id": "schema:dataFeedElement" },
3974
- "dataset": { "@id": "schema:dataset" },
3975
- "datasetTimeInterval": { "@id": "schema:datasetTimeInterval" },
3976
- "dateCreated": {
3977
- "@id": "schema:dateCreated",
3978
- "@type": "Date"
3979
- },
3980
- "dateDeleted": {
3981
- "@id": "schema:dateDeleted",
3982
- "@type": "Date"
3983
- },
3984
- "dateIssued": {
3985
- "@id": "schema:dateIssued",
3986
- "@type": "Date"
3987
- },
3988
- "dateModified": {
3989
- "@id": "schema:dateModified",
3990
- "@type": "Date"
3991
- },
3992
- "datePosted": {
3993
- "@id": "schema:datePosted",
3994
- "@type": "Date"
3995
- },
3996
- "datePublished": {
3997
- "@id": "schema:datePublished",
3998
- "@type": "Date"
3999
- },
4000
- "dateRead": {
4001
- "@id": "schema:dateRead",
4002
- "@type": "Date"
4003
- },
4004
- "dateReceived": { "@id": "schema:dateReceived" },
4005
- "dateSent": { "@id": "schema:dateSent" },
4006
- "dateVehicleFirstRegistered": {
4007
- "@id": "schema:dateVehicleFirstRegistered",
4008
- "@type": "Date"
4009
- },
4010
- "dateline": { "@id": "schema:dateline" },
4011
- "dayOfWeek": { "@id": "schema:dayOfWeek" },
4012
- "deathDate": {
4013
- "@id": "schema:deathDate",
4014
- "@type": "Date"
4015
- },
4016
- "deathPlace": { "@id": "schema:deathPlace" },
4017
- "defaultValue": { "@id": "schema:defaultValue" },
4018
- "deliveryAddress": { "@id": "schema:deliveryAddress" },
4019
- "deliveryLeadTime": { "@id": "schema:deliveryLeadTime" },
4020
- "deliveryMethod": { "@id": "schema:deliveryMethod" },
4021
- "deliveryStatus": { "@id": "schema:deliveryStatus" },
4022
- "deliveryTime": { "@id": "schema:deliveryTime" },
4023
- "department": { "@id": "schema:department" },
4024
- "departureAirport": { "@id": "schema:departureAirport" },
4025
- "departureBoatTerminal": { "@id": "schema:departureBoatTerminal" },
4026
- "departureBusStop": { "@id": "schema:departureBusStop" },
4027
- "departureGate": { "@id": "schema:departureGate" },
4028
- "departurePlatform": { "@id": "schema:departurePlatform" },
4029
- "departureStation": { "@id": "schema:departureStation" },
4030
- "departureTerminal": { "@id": "schema:departureTerminal" },
4031
- "departureTime": { "@id": "schema:departureTime" },
4032
- "dependencies": { "@id": "schema:dependencies" },
4033
- "depth": { "@id": "schema:depth" },
4034
- "description": { "@id": "schema:description" },
4035
- "device": { "@id": "schema:device" },
4036
- "diagnosis": { "@id": "schema:diagnosis" },
4037
- "diagram": { "@id": "schema:diagram" },
4038
- "diet": { "@id": "schema:diet" },
4039
- "dietFeatures": { "@id": "schema:dietFeatures" },
4040
- "differentialDiagnosis": { "@id": "schema:differentialDiagnosis" },
4041
- "digitalSourceType": { "@id": "schema:digitalSourceType" },
4042
- "directApply": { "@id": "schema:directApply" },
4043
- "director": { "@id": "schema:director" },
4044
- "directors": { "@id": "schema:directors" },
4045
- "disambiguatingDescription": { "@id": "schema:disambiguatingDescription" },
4046
- "discount": { "@id": "schema:discount" },
4047
- "discountCode": { "@id": "schema:discountCode" },
4048
- "discountCurrency": { "@id": "schema:discountCurrency" },
4049
- "discusses": { "@id": "schema:discusses" },
4050
- "discussionUrl": {
4051
- "@id": "schema:discussionUrl",
4052
- "@type": "@id"
4053
- },
4054
- "diseasePreventionInfo": {
4055
- "@id": "schema:diseasePreventionInfo",
4056
- "@type": "@id"
4057
- },
4058
- "diseaseSpreadStatistics": {
4059
- "@id": "schema:diseaseSpreadStatistics",
4060
- "@type": "@id"
4061
- },
4062
- "dissolutionDate": {
4063
- "@id": "schema:dissolutionDate",
4064
- "@type": "Date"
4065
- },
4066
- "distance": { "@id": "schema:distance" },
4067
- "distinguishingSign": { "@id": "schema:distinguishingSign" },
4068
- "distribution": { "@id": "schema:distribution" },
4069
- "diversityPolicy": {
4070
- "@id": "schema:diversityPolicy",
4071
- "@type": "@id"
4072
- },
4073
- "diversityStaffingReport": {
4074
- "@id": "schema:diversityStaffingReport",
4075
- "@type": "@id"
4076
- },
4077
- "documentation": {
4078
- "@id": "schema:documentation",
4079
- "@type": "@id"
4080
- },
4081
- "doesNotShip": { "@id": "schema:doesNotShip" },
4082
- "domainIncludes": { "@id": "schema:domainIncludes" },
4083
- "domiciledMortgage": { "@id": "schema:domiciledMortgage" },
4084
- "doorTime": { "@id": "schema:doorTime" },
4085
- "dosageForm": { "@id": "schema:dosageForm" },
4086
- "doseSchedule": { "@id": "schema:doseSchedule" },
4087
- "doseUnit": { "@id": "schema:doseUnit" },
4088
- "doseValue": { "@id": "schema:doseValue" },
4089
- "downPayment": { "@id": "schema:downPayment" },
4090
- "downloadUrl": {
4091
- "@id": "schema:downloadUrl",
4092
- "@type": "@id"
4093
- },
4094
- "downvoteCount": { "@id": "schema:downvoteCount" },
4095
- "drainsTo": { "@id": "schema:drainsTo" },
4096
- "driveWheelConfiguration": { "@id": "schema:driveWheelConfiguration" },
4097
- "dropoffLocation": { "@id": "schema:dropoffLocation" },
4098
- "dropoffTime": { "@id": "schema:dropoffTime" },
4099
- "drug": { "@id": "schema:drug" },
4100
- "drugClass": { "@id": "schema:drugClass" },
4101
- "drugUnit": { "@id": "schema:drugUnit" },
4102
- "duns": { "@id": "schema:duns" },
4103
- "duplicateTherapy": { "@id": "schema:duplicateTherapy" },
4104
- "duration": { "@id": "schema:duration" },
4105
- "durationOfWarranty": { "@id": "schema:durationOfWarranty" },
4106
- "duringMedia": {
4107
- "@id": "schema:duringMedia",
4108
- "@type": "@id"
4109
- },
4110
- "earlyPrepaymentPenalty": { "@id": "schema:earlyPrepaymentPenalty" },
4111
- "editEIDR": { "@id": "schema:editEIDR" },
4112
- "editor": { "@id": "schema:editor" },
4113
- "eduQuestionType": { "@id": "schema:eduQuestionType" },
4114
- "educationRequirements": { "@id": "schema:educationRequirements" },
4115
- "educationalAlignment": { "@id": "schema:educationalAlignment" },
4116
- "educationalCredentialAwarded": { "@id": "schema:educationalCredentialAwarded" },
4117
- "educationalFramework": { "@id": "schema:educationalFramework" },
4118
- "educationalLevel": { "@id": "schema:educationalLevel" },
4119
- "educationalProgramMode": { "@id": "schema:educationalProgramMode" },
4120
- "educationalRole": { "@id": "schema:educationalRole" },
4121
- "educationalUse": { "@id": "schema:educationalUse" },
4122
- "elevation": { "@id": "schema:elevation" },
4123
- "eligibilityToWorkRequirement": { "@id": "schema:eligibilityToWorkRequirement" },
4124
- "eligibleCustomerType": { "@id": "schema:eligibleCustomerType" },
4125
- "eligibleDuration": { "@id": "schema:eligibleDuration" },
4126
- "eligibleQuantity": { "@id": "schema:eligibleQuantity" },
4127
- "eligibleRegion": { "@id": "schema:eligibleRegion" },
4128
- "eligibleTransactionVolume": { "@id": "schema:eligibleTransactionVolume" },
4129
- "email": { "@id": "schema:email" },
4130
- "embedUrl": {
4131
- "@id": "schema:embedUrl",
4132
- "@type": "@id"
4133
- },
4134
- "embeddedTextCaption": { "@id": "schema:embeddedTextCaption" },
4135
- "emissionsCO2": { "@id": "schema:emissionsCO2" },
4136
- "employee": { "@id": "schema:employee" },
4137
- "employees": { "@id": "schema:employees" },
4138
- "employerOverview": { "@id": "schema:employerOverview" },
4139
- "employmentType": { "@id": "schema:employmentType" },
4140
- "employmentUnit": { "@id": "schema:employmentUnit" },
4141
- "encodesBioChemEntity": { "@id": "schema:encodesBioChemEntity" },
4142
- "encodesCreativeWork": { "@id": "schema:encodesCreativeWork" },
4143
- "encoding": { "@id": "schema:encoding" },
4144
- "encodingFormat": { "@id": "schema:encodingFormat" },
4145
- "encodingType": { "@id": "schema:encodingType" },
4146
- "encodings": { "@id": "schema:encodings" },
4147
- "endDate": {
4148
- "@id": "schema:endDate",
4149
- "@type": "Date"
4150
- },
4151
- "endOffset": { "@id": "schema:endOffset" },
4152
- "endTime": { "@id": "schema:endTime" },
4153
- "endorsee": { "@id": "schema:endorsee" },
4154
- "endorsers": { "@id": "schema:endorsers" },
4155
- "energyEfficiencyScaleMax": { "@id": "schema:energyEfficiencyScaleMax" },
4156
- "energyEfficiencyScaleMin": { "@id": "schema:energyEfficiencyScaleMin" },
4157
- "engineDisplacement": { "@id": "schema:engineDisplacement" },
4158
- "enginePower": { "@id": "schema:enginePower" },
4159
- "engineType": { "@id": "schema:engineType" },
4160
- "entertainmentBusiness": { "@id": "schema:entertainmentBusiness" },
4161
- "epidemiology": { "@id": "schema:epidemiology" },
4162
- "episode": { "@id": "schema:episode" },
4163
- "episodeNumber": { "@id": "schema:episodeNumber" },
4164
- "episodes": { "@id": "schema:episodes" },
4165
- "equal": { "@id": "schema:equal" },
4166
- "error": { "@id": "schema:error" },
4167
- "estimatedCost": { "@id": "schema:estimatedCost" },
4168
- "estimatedFlightDuration": { "@id": "schema:estimatedFlightDuration" },
4169
- "estimatedSalary": { "@id": "schema:estimatedSalary" },
4170
- "estimatesRiskOf": { "@id": "schema:estimatesRiskOf" },
4171
- "ethicsPolicy": {
4172
- "@id": "schema:ethicsPolicy",
4173
- "@type": "@id"
4174
- },
4175
- "event": { "@id": "schema:event" },
4176
- "eventAttendanceMode": { "@id": "schema:eventAttendanceMode" },
4177
- "eventSchedule": { "@id": "schema:eventSchedule" },
4178
- "eventStatus": { "@id": "schema:eventStatus" },
4179
- "events": { "@id": "schema:events" },
4180
- "evidenceLevel": { "@id": "schema:evidenceLevel" },
4181
- "evidenceOrigin": { "@id": "schema:evidenceOrigin" },
4182
- "exampleOfWork": { "@id": "schema:exampleOfWork" },
4183
- "exceptDate": {
4184
- "@id": "schema:exceptDate",
4185
- "@type": "Date"
4186
- },
4187
- "exchangeRateSpread": { "@id": "schema:exchangeRateSpread" },
4188
- "executableLibraryName": { "@id": "schema:executableLibraryName" },
4189
- "exerciseCourse": { "@id": "schema:exerciseCourse" },
4190
- "exercisePlan": { "@id": "schema:exercisePlan" },
4191
- "exerciseRelatedDiet": { "@id": "schema:exerciseRelatedDiet" },
4192
- "exerciseType": { "@id": "schema:exerciseType" },
4193
- "exifData": { "@id": "schema:exifData" },
4194
- "expectedArrivalFrom": {
4195
- "@id": "schema:expectedArrivalFrom",
4196
- "@type": "Date"
4197
- },
4198
- "expectedArrivalUntil": {
4199
- "@id": "schema:expectedArrivalUntil",
4200
- "@type": "Date"
4201
- },
4202
- "expectedPrognosis": { "@id": "schema:expectedPrognosis" },
4203
- "expectsAcceptanceOf": { "@id": "schema:expectsAcceptanceOf" },
4204
- "experienceInPlaceOfEducation": { "@id": "schema:experienceInPlaceOfEducation" },
4205
- "experienceRequirements": { "@id": "schema:experienceRequirements" },
4206
- "expertConsiderations": { "@id": "schema:expertConsiderations" },
4207
- "expires": {
4208
- "@id": "schema:expires",
4209
- "@type": "Date"
4210
- },
4211
- "expressedIn": { "@id": "schema:expressedIn" },
4212
- "familyName": { "@id": "schema:familyName" },
4213
- "fatContent": { "@id": "schema:fatContent" },
4214
- "faxNumber": { "@id": "schema:faxNumber" },
4215
- "featureList": { "@id": "schema:featureList" },
4216
- "feesAndCommissionsSpecification": { "@id": "schema:feesAndCommissionsSpecification" },
4217
- "fiberContent": { "@id": "schema:fiberContent" },
4218
- "fileFormat": { "@id": "schema:fileFormat" },
4219
- "fileSize": { "@id": "schema:fileSize" },
4220
- "financialAidEligible": { "@id": "schema:financialAidEligible" },
4221
- "firstAppearance": { "@id": "schema:firstAppearance" },
4222
- "firstPerformance": { "@id": "schema:firstPerformance" },
4223
- "flightDistance": { "@id": "schema:flightDistance" },
4224
- "flightNumber": { "@id": "schema:flightNumber" },
4225
- "floorLevel": { "@id": "schema:floorLevel" },
4226
- "floorLimit": { "@id": "schema:floorLimit" },
4227
- "floorSize": { "@id": "schema:floorSize" },
4228
- "followee": { "@id": "schema:followee" },
4229
- "follows": { "@id": "schema:follows" },
4230
- "followup": { "@id": "schema:followup" },
4231
- "foodEstablishment": { "@id": "schema:foodEstablishment" },
4232
- "foodEvent": { "@id": "schema:foodEvent" },
4233
- "foodWarning": { "@id": "schema:foodWarning" },
4234
- "founder": { "@id": "schema:founder" },
4235
- "founders": { "@id": "schema:founders" },
4236
- "foundingDate": {
4237
- "@id": "schema:foundingDate",
4238
- "@type": "Date"
4239
- },
4240
- "foundingLocation": { "@id": "schema:foundingLocation" },
4241
- "free": { "@id": "schema:free" },
4242
- "freeShippingThreshold": { "@id": "schema:freeShippingThreshold" },
4243
- "frequency": { "@id": "schema:frequency" },
4244
- "fromLocation": { "@id": "schema:fromLocation" },
4245
- "fuelCapacity": { "@id": "schema:fuelCapacity" },
4246
- "fuelConsumption": { "@id": "schema:fuelConsumption" },
4247
- "fuelEfficiency": { "@id": "schema:fuelEfficiency" },
4248
- "fuelType": { "@id": "schema:fuelType" },
4249
- "functionalClass": { "@id": "schema:functionalClass" },
4250
- "fundedItem": { "@id": "schema:fundedItem" },
4251
- "funder": { "@id": "schema:funder" },
4252
- "funding": { "@id": "schema:funding" },
4253
- "game": { "@id": "schema:game" },
4254
- "gameAvailabilityType": { "@id": "schema:gameAvailabilityType" },
4255
- "gameEdition": { "@id": "schema:gameEdition" },
4256
- "gameItem": { "@id": "schema:gameItem" },
4257
- "gameLocation": {
4258
- "@id": "schema:gameLocation",
4259
- "@type": "@id"
4260
- },
4261
- "gamePlatform": { "@id": "schema:gamePlatform" },
4262
- "gameServer": { "@id": "schema:gameServer" },
4263
- "gameTip": { "@id": "schema:gameTip" },
4264
- "gender": { "@id": "schema:gender" },
4265
- "genre": { "@id": "schema:genre" },
4266
- "geo": { "@id": "schema:geo" },
4267
- "geoContains": { "@id": "schema:geoContains" },
4268
- "geoCoveredBy": { "@id": "schema:geoCoveredBy" },
4269
- "geoCovers": { "@id": "schema:geoCovers" },
4270
- "geoCrosses": { "@id": "schema:geoCrosses" },
4271
- "geoDisjoint": { "@id": "schema:geoDisjoint" },
4272
- "geoEquals": { "@id": "schema:geoEquals" },
4273
- "geoIntersects": { "@id": "schema:geoIntersects" },
4274
- "geoMidpoint": { "@id": "schema:geoMidpoint" },
4275
- "geoOverlaps": { "@id": "schema:geoOverlaps" },
4276
- "geoRadius": { "@id": "schema:geoRadius" },
4277
- "geoTouches": { "@id": "schema:geoTouches" },
4278
- "geoWithin": { "@id": "schema:geoWithin" },
4279
- "geographicArea": { "@id": "schema:geographicArea" },
4280
- "gettingTestedInfo": {
4281
- "@id": "schema:gettingTestedInfo",
4282
- "@type": "@id"
4283
- },
4284
- "givenName": { "@id": "schema:givenName" },
4285
- "globalLocationNumber": { "@id": "schema:globalLocationNumber" },
4286
- "governmentBenefitsInfo": { "@id": "schema:governmentBenefitsInfo" },
4287
- "gracePeriod": { "@id": "schema:gracePeriod" },
4288
- "grantee": { "@id": "schema:grantee" },
4289
- "greater": { "@id": "schema:greater" },
4290
- "greaterOrEqual": { "@id": "schema:greaterOrEqual" },
4291
- "gtin": { "@id": "schema:gtin" },
4292
- "gtin12": { "@id": "schema:gtin12" },
4293
- "gtin13": { "@id": "schema:gtin13" },
4294
- "gtin14": { "@id": "schema:gtin14" },
4295
- "gtin8": { "@id": "schema:gtin8" },
4296
- "guideline": { "@id": "schema:guideline" },
4297
- "guidelineDate": {
4298
- "@id": "schema:guidelineDate",
4299
- "@type": "Date"
4300
- },
4301
- "guidelineSubject": { "@id": "schema:guidelineSubject" },
4302
- "handlingTime": { "@id": "schema:handlingTime" },
4303
- "hasAdultConsideration": { "@id": "schema:hasAdultConsideration" },
4304
- "hasBioChemEntityPart": { "@id": "schema:hasBioChemEntityPart" },
4305
- "hasBioPolymerSequence": { "@id": "schema:hasBioPolymerSequence" },
4306
- "hasBroadcastChannel": { "@id": "schema:hasBroadcastChannel" },
4307
- "hasCategoryCode": { "@id": "schema:hasCategoryCode" },
4308
- "hasCertification": { "@id": "schema:hasCertification" },
4309
- "hasCourse": { "@id": "schema:hasCourse" },
4310
- "hasCourseInstance": { "@id": "schema:hasCourseInstance" },
4311
- "hasCredential": { "@id": "schema:hasCredential" },
4312
- "hasDefinedTerm": { "@id": "schema:hasDefinedTerm" },
4313
- "hasDeliveryMethod": { "@id": "schema:hasDeliveryMethod" },
4314
- "hasDigitalDocumentPermission": { "@id": "schema:hasDigitalDocumentPermission" },
4315
- "hasDriveThroughService": { "@id": "schema:hasDriveThroughService" },
4316
- "hasEnergyConsumptionDetails": { "@id": "schema:hasEnergyConsumptionDetails" },
4317
- "hasEnergyEfficiencyCategory": { "@id": "schema:hasEnergyEfficiencyCategory" },
4318
- "hasGS1DigitalLink": {
4319
- "@id": "schema:hasGS1DigitalLink",
4320
- "@type": "@id"
4321
- },
4322
- "hasHealthAspect": { "@id": "schema:hasHealthAspect" },
4323
- "hasMap": {
4324
- "@id": "schema:hasMap",
4325
- "@type": "@id"
4326
- },
4327
- "hasMeasurement": { "@id": "schema:hasMeasurement" },
4328
- "hasMemberProgram": { "@id": "schema:hasMemberProgram" },
4329
- "hasMenu": { "@id": "schema:hasMenu" },
4330
- "hasMenuItem": { "@id": "schema:hasMenuItem" },
4331
- "hasMenuSection": { "@id": "schema:hasMenuSection" },
4332
- "hasMerchantReturnPolicy": { "@id": "schema:hasMerchantReturnPolicy" },
4333
- "hasMolecularFunction": {
4334
- "@id": "schema:hasMolecularFunction",
4335
- "@type": "@id"
4336
- },
4337
- "hasOccupation": { "@id": "schema:hasOccupation" },
4338
- "hasOfferCatalog": { "@id": "schema:hasOfferCatalog" },
4339
- "hasPOS": { "@id": "schema:hasPOS" },
4340
- "hasPart": { "@id": "schema:hasPart" },
4341
- "hasProductReturnPolicy": { "@id": "schema:hasProductReturnPolicy" },
4342
- "hasRepresentation": { "@id": "schema:hasRepresentation" },
4343
- "hasTierBenefit": { "@id": "schema:hasTierBenefit" },
4344
- "hasTierRequirement": { "@id": "schema:hasTierRequirement" },
4345
- "hasTiers": { "@id": "schema:hasTiers" },
4346
- "hasVariant": { "@id": "schema:hasVariant" },
4347
- "headline": { "@id": "schema:headline" },
4348
- "healthCondition": { "@id": "schema:healthCondition" },
4349
- "healthPlanCoinsuranceOption": { "@id": "schema:healthPlanCoinsuranceOption" },
4350
- "healthPlanCoinsuranceRate": { "@id": "schema:healthPlanCoinsuranceRate" },
4351
- "healthPlanCopay": { "@id": "schema:healthPlanCopay" },
4352
- "healthPlanCopayOption": { "@id": "schema:healthPlanCopayOption" },
4353
- "healthPlanCostSharing": { "@id": "schema:healthPlanCostSharing" },
4354
- "healthPlanDrugOption": { "@id": "schema:healthPlanDrugOption" },
4355
- "healthPlanDrugTier": { "@id": "schema:healthPlanDrugTier" },
4356
- "healthPlanId": { "@id": "schema:healthPlanId" },
4357
- "healthPlanMarketingUrl": {
4358
- "@id": "schema:healthPlanMarketingUrl",
4359
- "@type": "@id"
4360
- },
4361
- "healthPlanNetworkId": { "@id": "schema:healthPlanNetworkId" },
4362
- "healthPlanNetworkTier": { "@id": "schema:healthPlanNetworkTier" },
4363
- "healthPlanPharmacyCategory": { "@id": "schema:healthPlanPharmacyCategory" },
4364
- "healthcareReportingData": { "@id": "schema:healthcareReportingData" },
4365
- "height": { "@id": "schema:height" },
4366
- "highPrice": { "@id": "schema:highPrice" },
4367
- "hiringOrganization": { "@id": "schema:hiringOrganization" },
4368
- "holdingArchive": { "@id": "schema:holdingArchive" },
4369
- "homeLocation": { "@id": "schema:homeLocation" },
4370
- "homeTeam": { "@id": "schema:homeTeam" },
4371
- "honorificPrefix": { "@id": "schema:honorificPrefix" },
4372
- "honorificSuffix": { "@id": "schema:honorificSuffix" },
4373
- "hospitalAffiliation": { "@id": "schema:hospitalAffiliation" },
4374
- "hostingOrganization": { "@id": "schema:hostingOrganization" },
4375
- "hoursAvailable": { "@id": "schema:hoursAvailable" },
4376
- "howPerformed": { "@id": "schema:howPerformed" },
4377
- "httpMethod": { "@id": "schema:httpMethod" },
4378
- "iataCode": { "@id": "schema:iataCode" },
4379
- "icaoCode": { "@id": "schema:icaoCode" },
4380
- "identifier": { "@id": "schema:identifier" },
4381
- "identifyingExam": { "@id": "schema:identifyingExam" },
4382
- "identifyingTest": { "@id": "schema:identifyingTest" },
4383
- "illustrator": { "@id": "schema:illustrator" },
4384
- "image": {
4385
- "@id": "schema:image",
4386
- "@type": "@id"
4387
- },
4388
- "imagingTechnique": { "@id": "schema:imagingTechnique" },
4389
- "inAlbum": { "@id": "schema:inAlbum" },
4390
- "inBroadcastLineup": { "@id": "schema:inBroadcastLineup" },
4391
- "inChI": { "@id": "schema:inChI" },
4392
- "inChIKey": { "@id": "schema:inChIKey" },
4393
- "inCodeSet": {
4394
- "@id": "schema:inCodeSet",
4395
- "@type": "@id"
4396
- },
4397
- "inDefinedTermSet": {
4398
- "@id": "schema:inDefinedTermSet",
4399
- "@type": "@id"
4400
- },
4401
- "inLanguage": { "@id": "schema:inLanguage" },
4402
- "inPlaylist": { "@id": "schema:inPlaylist" },
4403
- "inProductGroupWithID": { "@id": "schema:inProductGroupWithID" },
4404
- "inStoreReturnsOffered": { "@id": "schema:inStoreReturnsOffered" },
4405
- "inSupportOf": { "@id": "schema:inSupportOf" },
4406
- "incentiveCompensation": { "@id": "schema:incentiveCompensation" },
4407
- "incentives": { "@id": "schema:incentives" },
4408
- "includedComposition": { "@id": "schema:includedComposition" },
4409
- "includedDataCatalog": { "@id": "schema:includedDataCatalog" },
4410
- "includedInDataCatalog": { "@id": "schema:includedInDataCatalog" },
4411
- "includedInHealthInsurancePlan": { "@id": "schema:includedInHealthInsurancePlan" },
4412
- "includedRiskFactor": { "@id": "schema:includedRiskFactor" },
4413
- "includesAttraction": { "@id": "schema:includesAttraction" },
4414
- "includesHealthPlanFormulary": { "@id": "schema:includesHealthPlanFormulary" },
4415
- "includesHealthPlanNetwork": { "@id": "schema:includesHealthPlanNetwork" },
4416
- "includesObject": { "@id": "schema:includesObject" },
4417
- "increasesRiskOf": { "@id": "schema:increasesRiskOf" },
4418
- "industry": { "@id": "schema:industry" },
4419
- "ineligibleRegion": { "@id": "schema:ineligibleRegion" },
4420
- "infectiousAgent": { "@id": "schema:infectiousAgent" },
4421
- "infectiousAgentClass": { "@id": "schema:infectiousAgentClass" },
4422
- "ingredients": { "@id": "schema:ingredients" },
4423
- "inker": { "@id": "schema:inker" },
4424
- "insertion": { "@id": "schema:insertion" },
4425
- "installUrl": {
4426
- "@id": "schema:installUrl",
4427
- "@type": "@id"
4428
- },
4429
- "instructor": { "@id": "schema:instructor" },
4430
- "instrument": { "@id": "schema:instrument" },
4431
- "intensity": { "@id": "schema:intensity" },
4432
- "interactingDrug": { "@id": "schema:interactingDrug" },
4433
- "interactionCount": { "@id": "schema:interactionCount" },
4434
- "interactionService": { "@id": "schema:interactionService" },
4435
- "interactionStatistic": { "@id": "schema:interactionStatistic" },
4436
- "interactionType": { "@id": "schema:interactionType" },
4437
- "interactivityType": { "@id": "schema:interactivityType" },
4438
- "interestRate": { "@id": "schema:interestRate" },
4439
- "interpretedAsClaim": { "@id": "schema:interpretedAsClaim" },
4440
- "inventoryLevel": { "@id": "schema:inventoryLevel" },
4441
- "inverseOf": { "@id": "schema:inverseOf" },
4442
- "isAcceptingNewPatients": { "@id": "schema:isAcceptingNewPatients" },
4443
- "isAccessibleForFree": { "@id": "schema:isAccessibleForFree" },
4444
- "isAccessoryOrSparePartFor": { "@id": "schema:isAccessoryOrSparePartFor" },
4445
- "isAvailableGenerically": { "@id": "schema:isAvailableGenerically" },
4446
- "isBasedOn": {
4447
- "@id": "schema:isBasedOn",
4448
- "@type": "@id"
4449
- },
4450
- "isBasedOnUrl": {
4451
- "@id": "schema:isBasedOnUrl",
4452
- "@type": "@id"
4453
- },
4454
- "isConsumableFor": { "@id": "schema:isConsumableFor" },
4455
- "isEncodedByBioChemEntity": { "@id": "schema:isEncodedByBioChemEntity" },
4456
- "isFamilyFriendly": { "@id": "schema:isFamilyFriendly" },
4457
- "isGift": { "@id": "schema:isGift" },
4458
- "isInvolvedInBiologicalProcess": {
4459
- "@id": "schema:isInvolvedInBiologicalProcess",
4460
- "@type": "@id"
4461
- },
4462
- "isLiveBroadcast": { "@id": "schema:isLiveBroadcast" },
4463
- "isLocatedInSubcellularLocation": {
4464
- "@id": "schema:isLocatedInSubcellularLocation",
4465
- "@type": "@id"
4466
- },
4467
- "isPartOf": {
4468
- "@id": "schema:isPartOf",
4469
- "@type": "@id"
4470
- },
4471
- "isPartOfBioChemEntity": { "@id": "schema:isPartOfBioChemEntity" },
4472
- "isPlanForApartment": { "@id": "schema:isPlanForApartment" },
4473
- "isProprietary": { "@id": "schema:isProprietary" },
4474
- "isRelatedTo": { "@id": "schema:isRelatedTo" },
4475
- "isResizable": { "@id": "schema:isResizable" },
4476
- "isSimilarTo": { "@id": "schema:isSimilarTo" },
4477
- "isTierOf": { "@id": "schema:isTierOf" },
4478
- "isUnlabelledFallback": { "@id": "schema:isUnlabelledFallback" },
4479
- "isVariantOf": { "@id": "schema:isVariantOf" },
4480
- "isbn": { "@id": "schema:isbn" },
4481
- "isicV4": { "@id": "schema:isicV4" },
4482
- "iso6523Code": { "@id": "schema:iso6523Code" },
4483
- "isrcCode": { "@id": "schema:isrcCode" },
4484
- "issn": { "@id": "schema:issn" },
4485
- "issueNumber": { "@id": "schema:issueNumber" },
4486
- "issuedBy": { "@id": "schema:issuedBy" },
4487
- "issuedThrough": { "@id": "schema:issuedThrough" },
4488
- "iswcCode": { "@id": "schema:iswcCode" },
4489
- "item": { "@id": "schema:item" },
4490
- "itemCondition": { "@id": "schema:itemCondition" },
4491
- "itemDefectReturnFees": { "@id": "schema:itemDefectReturnFees" },
4492
- "itemDefectReturnLabelSource": { "@id": "schema:itemDefectReturnLabelSource" },
4493
- "itemDefectReturnShippingFeesAmount": { "@id": "schema:itemDefectReturnShippingFeesAmount" },
4494
- "itemListElement": { "@id": "schema:itemListElement" },
4495
- "itemListOrder": { "@id": "schema:itemListOrder" },
4496
- "itemLocation": { "@id": "schema:itemLocation" },
4497
- "itemOffered": { "@id": "schema:itemOffered" },
4498
- "itemReviewed": { "@id": "schema:itemReviewed" },
4499
- "itemShipped": { "@id": "schema:itemShipped" },
4500
- "itinerary": { "@id": "schema:itinerary" },
4501
- "iupacName": { "@id": "schema:iupacName" },
4502
- "jobBenefits": { "@id": "schema:jobBenefits" },
4503
- "jobImmediateStart": { "@id": "schema:jobImmediateStart" },
4504
- "jobLocation": { "@id": "schema:jobLocation" },
4505
- "jobLocationType": { "@id": "schema:jobLocationType" },
4506
- "jobStartDate": { "@id": "schema:jobStartDate" },
4507
- "jobTitle": { "@id": "schema:jobTitle" },
4508
- "jurisdiction": { "@id": "schema:jurisdiction" },
4509
- "keywords": { "@id": "schema:keywords" },
4510
- "knownVehicleDamages": { "@id": "schema:knownVehicleDamages" },
4511
- "knows": { "@id": "schema:knows" },
4512
- "knowsAbout": { "@id": "schema:knowsAbout" },
4513
- "knowsLanguage": { "@id": "schema:knowsLanguage" },
4514
- "labelDetails": {
4515
- "@id": "schema:labelDetails",
4516
- "@type": "@id"
4517
- },
4518
- "landlord": { "@id": "schema:landlord" },
4519
- "language": { "@id": "schema:language" },
4520
- "lastReviewed": {
4521
- "@id": "schema:lastReviewed",
4522
- "@type": "Date"
4523
- },
4524
- "latitude": { "@id": "schema:latitude" },
4525
- "layoutImage": {
4526
- "@id": "schema:layoutImage",
4527
- "@type": "@id"
4528
- },
4529
- "learningResourceType": { "@id": "schema:learningResourceType" },
4530
- "leaseLength": { "@id": "schema:leaseLength" },
4531
- "legalName": { "@id": "schema:legalName" },
4532
- "legalStatus": { "@id": "schema:legalStatus" },
4533
- "legislationApplies": { "@id": "schema:legislationApplies" },
4534
- "legislationChanges": { "@id": "schema:legislationChanges" },
4535
- "legislationConsolidates": { "@id": "schema:legislationConsolidates" },
4536
- "legislationDate": {
4537
- "@id": "schema:legislationDate",
4538
- "@type": "Date"
4539
- },
4540
- "legislationDateVersion": {
4541
- "@id": "schema:legislationDateVersion",
4542
- "@type": "Date"
4543
- },
4544
- "legislationIdentifier": { "@id": "schema:legislationIdentifier" },
4545
- "legislationJurisdiction": { "@id": "schema:legislationJurisdiction" },
4546
- "legislationLegalForce": { "@id": "schema:legislationLegalForce" },
4547
- "legislationLegalValue": { "@id": "schema:legislationLegalValue" },
4548
- "legislationPassedBy": { "@id": "schema:legislationPassedBy" },
4549
- "legislationResponsible": { "@id": "schema:legislationResponsible" },
4550
- "legislationTransposes": { "@id": "schema:legislationTransposes" },
4551
- "legislationType": { "@id": "schema:legislationType" },
4552
- "leiCode": { "@id": "schema:leiCode" },
4553
- "lender": { "@id": "schema:lender" },
4554
- "lesser": { "@id": "schema:lesser" },
4555
- "lesserOrEqual": { "@id": "schema:lesserOrEqual" },
4556
- "letterer": { "@id": "schema:letterer" },
4557
- "license": {
4558
- "@id": "schema:license",
4559
- "@type": "@id"
4560
- },
4561
- "line": { "@id": "schema:line" },
4562
- "linkRelationship": { "@id": "schema:linkRelationship" },
4563
- "liveBlogUpdate": { "@id": "schema:liveBlogUpdate" },
4564
- "loanMortgageMandateAmount": { "@id": "schema:loanMortgageMandateAmount" },
4565
- "loanPaymentAmount": { "@id": "schema:loanPaymentAmount" },
4566
- "loanPaymentFrequency": { "@id": "schema:loanPaymentFrequency" },
4567
- "loanRepaymentForm": { "@id": "schema:loanRepaymentForm" },
4568
- "loanTerm": { "@id": "schema:loanTerm" },
4569
- "loanType": { "@id": "schema:loanType" },
4570
- "location": { "@id": "schema:location" },
4571
- "locationCreated": { "@id": "schema:locationCreated" },
4572
- "lodgingUnitDescription": { "@id": "schema:lodgingUnitDescription" },
4573
- "lodgingUnitType": { "@id": "schema:lodgingUnitType" },
4574
- "logo": {
4575
- "@id": "schema:logo",
4576
- "@type": "@id"
4577
- },
4578
- "longitude": { "@id": "schema:longitude" },
4579
- "loser": { "@id": "schema:loser" },
4580
- "lowPrice": { "@id": "schema:lowPrice" },
4581
- "lyricist": { "@id": "schema:lyricist" },
4582
- "lyrics": { "@id": "schema:lyrics" },
4583
- "mainContentOfPage": { "@id": "schema:mainContentOfPage" },
4584
- "mainEntity": { "@id": "schema:mainEntity" },
4585
- "mainEntityOfPage": {
4586
- "@id": "schema:mainEntityOfPage",
4587
- "@type": "@id"
4588
- },
4589
- "maintainer": { "@id": "schema:maintainer" },
4590
- "makesOffer": { "@id": "schema:makesOffer" },
4591
- "manufacturer": { "@id": "schema:manufacturer" },
4592
- "map": {
4593
- "@id": "schema:map",
4594
- "@type": "@id"
4595
- },
4596
- "mapType": { "@id": "schema:mapType" },
4597
- "maps": {
4598
- "@id": "schema:maps",
4599
- "@type": "@id"
4600
- },
4601
- "marginOfError": { "@id": "schema:marginOfError" },
4602
- "masthead": {
4603
- "@id": "schema:masthead",
4604
- "@type": "@id"
4605
- },
4606
- "material": { "@id": "schema:material" },
4607
- "materialExtent": { "@id": "schema:materialExtent" },
4608
- "mathExpression": { "@id": "schema:mathExpression" },
4609
- "maxPrice": { "@id": "schema:maxPrice" },
4610
- "maxValue": { "@id": "schema:maxValue" },
4611
- "maximumAttendeeCapacity": { "@id": "schema:maximumAttendeeCapacity" },
4612
- "maximumEnrollment": { "@id": "schema:maximumEnrollment" },
4613
- "maximumIntake": { "@id": "schema:maximumIntake" },
4614
- "maximumPhysicalAttendeeCapacity": { "@id": "schema:maximumPhysicalAttendeeCapacity" },
4615
- "maximumVirtualAttendeeCapacity": { "@id": "schema:maximumVirtualAttendeeCapacity" },
4616
- "mealService": { "@id": "schema:mealService" },
4617
- "measuredProperty": { "@id": "schema:measuredProperty" },
4618
- "measurementDenominator": { "@id": "schema:measurementDenominator" },
4619
- "measurementMethod": { "@id": "schema:measurementMethod" },
4620
- "measurementQualifier": { "@id": "schema:measurementQualifier" },
4621
- "measurementTechnique": { "@id": "schema:measurementTechnique" },
4622
- "mechanismOfAction": { "@id": "schema:mechanismOfAction" },
4623
- "mediaAuthenticityCategory": { "@id": "schema:mediaAuthenticityCategory" },
4624
- "mediaItemAppearance": { "@id": "schema:mediaItemAppearance" },
4625
- "median": { "@id": "schema:median" },
4626
- "medicalAudience": { "@id": "schema:medicalAudience" },
4627
- "medicalSpecialty": { "@id": "schema:medicalSpecialty" },
4628
- "medicineSystem": { "@id": "schema:medicineSystem" },
4629
- "meetsEmissionStandard": { "@id": "schema:meetsEmissionStandard" },
4630
- "member": { "@id": "schema:member" },
4631
- "memberOf": { "@id": "schema:memberOf" },
4632
- "members": { "@id": "schema:members" },
4633
- "membershipNumber": { "@id": "schema:membershipNumber" },
4634
- "membershipPointsEarned": { "@id": "schema:membershipPointsEarned" },
4635
- "memoryRequirements": { "@id": "schema:memoryRequirements" },
4636
- "mentions": { "@id": "schema:mentions" },
4637
- "menu": { "@id": "schema:menu" },
4638
- "menuAddOn": { "@id": "schema:menuAddOn" },
4639
- "merchant": { "@id": "schema:merchant" },
4640
- "merchantReturnDays": {
4641
- "@id": "schema:merchantReturnDays",
4642
- "@type": "Date"
4643
- },
4644
- "merchantReturnLink": {
4645
- "@id": "schema:merchantReturnLink",
4646
- "@type": "@id"
4647
- },
4648
- "messageAttachment": { "@id": "schema:messageAttachment" },
4649
- "mileageFromOdometer": { "@id": "schema:mileageFromOdometer" },
4650
- "minPrice": { "@id": "schema:minPrice" },
4651
- "minValue": { "@id": "schema:minValue" },
4652
- "minimumPaymentDue": { "@id": "schema:minimumPaymentDue" },
4653
- "missionCoveragePrioritiesPolicy": {
4654
- "@id": "schema:missionCoveragePrioritiesPolicy",
4655
- "@type": "@id"
4656
- },
4657
- "mobileUrl": { "@id": "schema:mobileUrl" },
4658
- "model": { "@id": "schema:model" },
4659
- "modelDate": {
4660
- "@id": "schema:modelDate",
4661
- "@type": "Date"
4662
- },
4663
- "modifiedTime": { "@id": "schema:modifiedTime" },
4664
- "molecularFormula": { "@id": "schema:molecularFormula" },
4665
- "molecularWeight": { "@id": "schema:molecularWeight" },
4666
- "monoisotopicMolecularWeight": { "@id": "schema:monoisotopicMolecularWeight" },
4667
- "monthlyMinimumRepaymentAmount": { "@id": "schema:monthlyMinimumRepaymentAmount" },
4668
- "monthsOfExperience": { "@id": "schema:monthsOfExperience" },
4669
- "mpn": { "@id": "schema:mpn" },
4670
- "multipleValues": { "@id": "schema:multipleValues" },
4671
- "muscleAction": { "@id": "schema:muscleAction" },
4672
- "musicArrangement": { "@id": "schema:musicArrangement" },
4673
- "musicBy": { "@id": "schema:musicBy" },
4674
- "musicCompositionForm": { "@id": "schema:musicCompositionForm" },
4675
- "musicGroupMember": { "@id": "schema:musicGroupMember" },
4676
- "musicReleaseFormat": { "@id": "schema:musicReleaseFormat" },
4677
- "musicalKey": { "@id": "schema:musicalKey" },
4678
- "naics": { "@id": "schema:naics" },
4679
- "name": { "@id": "schema:name" },
4680
- "namedPosition": { "@id": "schema:namedPosition" },
4681
- "nationality": { "@id": "schema:nationality" },
4682
- "naturalProgression": { "@id": "schema:naturalProgression" },
4683
- "negativeNotes": { "@id": "schema:negativeNotes" },
4684
- "nerve": { "@id": "schema:nerve" },
4685
- "nerveMotor": { "@id": "schema:nerveMotor" },
4686
- "netWorth": { "@id": "schema:netWorth" },
4687
- "newsUpdatesAndGuidelines": {
4688
- "@id": "schema:newsUpdatesAndGuidelines",
4689
- "@type": "@id"
4690
- },
4691
- "nextItem": { "@id": "schema:nextItem" },
4692
- "noBylinesPolicy": {
4693
- "@id": "schema:noBylinesPolicy",
4694
- "@type": "@id"
4695
- },
4696
- "nonEqual": { "@id": "schema:nonEqual" },
4697
- "nonProprietaryName": { "@id": "schema:nonProprietaryName" },
4698
- "nonprofitStatus": { "@id": "schema:nonprofitStatus" },
4699
- "normalRange": { "@id": "schema:normalRange" },
4700
- "nsn": { "@id": "schema:nsn" },
4701
- "numAdults": { "@id": "schema:numAdults" },
4702
- "numChildren": { "@id": "schema:numChildren" },
4703
- "numConstraints": { "@id": "schema:numConstraints" },
4704
- "numTracks": { "@id": "schema:numTracks" },
4705
- "numberOfAccommodationUnits": { "@id": "schema:numberOfAccommodationUnits" },
4706
- "numberOfAirbags": { "@id": "schema:numberOfAirbags" },
4707
- "numberOfAvailableAccommodationUnits": { "@id": "schema:numberOfAvailableAccommodationUnits" },
4708
- "numberOfAxles": { "@id": "schema:numberOfAxles" },
4709
- "numberOfBathroomsTotal": { "@id": "schema:numberOfBathroomsTotal" },
4710
- "numberOfBedrooms": { "@id": "schema:numberOfBedrooms" },
4711
- "numberOfBeds": { "@id": "schema:numberOfBeds" },
4712
- "numberOfCredits": { "@id": "schema:numberOfCredits" },
4713
- "numberOfDoors": { "@id": "schema:numberOfDoors" },
4714
- "numberOfEmployees": { "@id": "schema:numberOfEmployees" },
4715
- "numberOfEpisodes": { "@id": "schema:numberOfEpisodes" },
4716
- "numberOfForwardGears": { "@id": "schema:numberOfForwardGears" },
4717
- "numberOfFullBathrooms": { "@id": "schema:numberOfFullBathrooms" },
4718
- "numberOfItems": { "@id": "schema:numberOfItems" },
4719
- "numberOfLoanPayments": { "@id": "schema:numberOfLoanPayments" },
4720
- "numberOfPages": { "@id": "schema:numberOfPages" },
4721
- "numberOfPartialBathrooms": { "@id": "schema:numberOfPartialBathrooms" },
4722
- "numberOfPlayers": { "@id": "schema:numberOfPlayers" },
4723
- "numberOfPreviousOwners": { "@id": "schema:numberOfPreviousOwners" },
4724
- "numberOfRooms": { "@id": "schema:numberOfRooms" },
4725
- "numberOfSeasons": { "@id": "schema:numberOfSeasons" },
4726
- "numberedPosition": { "@id": "schema:numberedPosition" },
4727
- "nutrition": { "@id": "schema:nutrition" },
4728
- "object": { "@id": "schema:object" },
4729
- "observationAbout": { "@id": "schema:observationAbout" },
4730
- "observationDate": { "@id": "schema:observationDate" },
4731
- "observationPeriod": { "@id": "schema:observationPeriod" },
4732
- "occupancy": { "@id": "schema:occupancy" },
4733
- "occupationLocation": { "@id": "schema:occupationLocation" },
4734
- "occupationalCategory": { "@id": "schema:occupationalCategory" },
4735
- "occupationalCredentialAwarded": { "@id": "schema:occupationalCredentialAwarded" },
4736
- "offerCount": { "@id": "schema:offerCount" },
4737
- "offeredBy": { "@id": "schema:offeredBy" },
4738
- "offers": { "@id": "schema:offers" },
4739
- "offersPrescriptionByMail": { "@id": "schema:offersPrescriptionByMail" },
4740
- "openingHours": { "@id": "schema:openingHours" },
4741
- "openingHoursSpecification": { "@id": "schema:openingHoursSpecification" },
4742
- "opens": { "@id": "schema:opens" },
4743
- "operatingSystem": { "@id": "schema:operatingSystem" },
4744
- "opponent": { "@id": "schema:opponent" },
4745
- "option": { "@id": "schema:option" },
4746
- "orderDate": {
4747
- "@id": "schema:orderDate",
4748
- "@type": "Date"
4749
- },
4750
- "orderDelivery": { "@id": "schema:orderDelivery" },
4751
- "orderItemNumber": { "@id": "schema:orderItemNumber" },
4752
- "orderItemStatus": { "@id": "schema:orderItemStatus" },
4753
- "orderNumber": { "@id": "schema:orderNumber" },
4754
- "orderQuantity": { "@id": "schema:orderQuantity" },
4755
- "orderStatus": { "@id": "schema:orderStatus" },
4756
- "orderedItem": { "@id": "schema:orderedItem" },
4757
- "organizer": { "@id": "schema:organizer" },
4758
- "originAddress": { "@id": "schema:originAddress" },
4759
- "originalMediaContextDescription": { "@id": "schema:originalMediaContextDescription" },
4760
- "originalMediaLink": {
4761
- "@id": "schema:originalMediaLink",
4762
- "@type": "@id"
4763
- },
4764
- "originatesFrom": { "@id": "schema:originatesFrom" },
4765
- "overdosage": { "@id": "schema:overdosage" },
4766
- "ownedFrom": { "@id": "schema:ownedFrom" },
4767
- "ownedThrough": { "@id": "schema:ownedThrough" },
4768
- "ownershipFundingInfo": { "@id": "schema:ownershipFundingInfo" },
4769
- "owns": { "@id": "schema:owns" },
4770
- "pageEnd": { "@id": "schema:pageEnd" },
4771
- "pageStart": { "@id": "schema:pageStart" },
4772
- "pagination": { "@id": "schema:pagination" },
4773
- "parent": { "@id": "schema:parent" },
4774
- "parentItem": { "@id": "schema:parentItem" },
4775
- "parentOrganization": { "@id": "schema:parentOrganization" },
4776
- "parentService": { "@id": "schema:parentService" },
4777
- "parentTaxon": { "@id": "schema:parentTaxon" },
4778
- "parents": { "@id": "schema:parents" },
4779
- "partOfEpisode": { "@id": "schema:partOfEpisode" },
4780
- "partOfInvoice": { "@id": "schema:partOfInvoice" },
4781
- "partOfOrder": { "@id": "schema:partOfOrder" },
4782
- "partOfSeason": { "@id": "schema:partOfSeason" },
4783
- "partOfSeries": { "@id": "schema:partOfSeries" },
4784
- "partOfSystem": { "@id": "schema:partOfSystem" },
4785
- "partOfTVSeries": { "@id": "schema:partOfTVSeries" },
4786
- "partOfTrip": { "@id": "schema:partOfTrip" },
4787
- "participant": { "@id": "schema:participant" },
4788
- "partySize": { "@id": "schema:partySize" },
4789
- "passengerPriorityStatus": { "@id": "schema:passengerPriorityStatus" },
4790
- "passengerSequenceNumber": { "@id": "schema:passengerSequenceNumber" },
4791
- "pathophysiology": { "@id": "schema:pathophysiology" },
4792
- "pattern": { "@id": "schema:pattern" },
4793
- "payload": { "@id": "schema:payload" },
4794
- "paymentAccepted": { "@id": "schema:paymentAccepted" },
4795
- "paymentDue": { "@id": "schema:paymentDue" },
4796
- "paymentDueDate": {
4797
- "@id": "schema:paymentDueDate",
4798
- "@type": "Date"
4799
- },
4800
- "paymentMethod": { "@id": "schema:paymentMethod" },
4801
- "paymentMethodId": { "@id": "schema:paymentMethodId" },
4802
- "paymentMethodType": { "@id": "schema:paymentMethodType" },
4803
- "paymentStatus": { "@id": "schema:paymentStatus" },
4804
- "paymentUrl": {
4805
- "@id": "schema:paymentUrl",
4806
- "@type": "@id"
4807
- },
4808
- "penciler": { "@id": "schema:penciler" },
4809
- "percentile10": { "@id": "schema:percentile10" },
4810
- "percentile25": { "@id": "schema:percentile25" },
4811
- "percentile75": { "@id": "schema:percentile75" },
4812
- "percentile90": { "@id": "schema:percentile90" },
4813
- "performTime": { "@id": "schema:performTime" },
4814
- "performer": { "@id": "schema:performer" },
4815
- "performerIn": { "@id": "schema:performerIn" },
4816
- "performers": { "@id": "schema:performers" },
4817
- "permissionType": { "@id": "schema:permissionType" },
4818
- "permissions": { "@id": "schema:permissions" },
4819
- "permitAudience": { "@id": "schema:permitAudience" },
4820
- "permittedUsage": { "@id": "schema:permittedUsage" },
4821
- "petsAllowed": { "@id": "schema:petsAllowed" },
4822
- "phoneticText": { "@id": "schema:phoneticText" },
4823
- "photo": { "@id": "schema:photo" },
4824
- "photos": { "@id": "schema:photos" },
4825
- "physicalRequirement": { "@id": "schema:physicalRequirement" },
4826
- "physiologicalBenefits": { "@id": "schema:physiologicalBenefits" },
4827
- "pickupLocation": { "@id": "schema:pickupLocation" },
4828
- "pickupTime": { "@id": "schema:pickupTime" },
4829
- "playMode": { "@id": "schema:playMode" },
4830
- "playerType": { "@id": "schema:playerType" },
4831
- "playersOnline": { "@id": "schema:playersOnline" },
4832
- "polygon": { "@id": "schema:polygon" },
4833
- "populationType": { "@id": "schema:populationType" },
4834
- "position": { "@id": "schema:position" },
4835
- "positiveNotes": { "@id": "schema:positiveNotes" },
4836
- "possibleComplication": { "@id": "schema:possibleComplication" },
4837
- "possibleTreatment": { "@id": "schema:possibleTreatment" },
4838
- "postOfficeBoxNumber": { "@id": "schema:postOfficeBoxNumber" },
4839
- "postOp": { "@id": "schema:postOp" },
4840
- "postalCode": { "@id": "schema:postalCode" },
4841
- "postalCodeBegin": { "@id": "schema:postalCodeBegin" },
4842
- "postalCodeEnd": { "@id": "schema:postalCodeEnd" },
4843
- "postalCodePrefix": { "@id": "schema:postalCodePrefix" },
4844
- "postalCodeRange": { "@id": "schema:postalCodeRange" },
4845
- "potentialAction": { "@id": "schema:potentialAction" },
4846
- "potentialUse": { "@id": "schema:potentialUse" },
4847
- "practicesAt": { "@id": "schema:practicesAt" },
4848
- "preOp": { "@id": "schema:preOp" },
4849
- "predecessorOf": { "@id": "schema:predecessorOf" },
4850
- "pregnancyCategory": { "@id": "schema:pregnancyCategory" },
4851
- "pregnancyWarning": { "@id": "schema:pregnancyWarning" },
4852
- "prepTime": { "@id": "schema:prepTime" },
4853
- "preparation": { "@id": "schema:preparation" },
4854
- "prescribingInfo": {
4855
- "@id": "schema:prescribingInfo",
4856
- "@type": "@id"
4857
- },
4858
- "prescriptionStatus": { "@id": "schema:prescriptionStatus" },
4859
- "previousItem": { "@id": "schema:previousItem" },
4860
- "previousStartDate": {
4861
- "@id": "schema:previousStartDate",
4862
- "@type": "Date"
4863
- },
4864
- "price": { "@id": "schema:price" },
4865
- "priceComponent": { "@id": "schema:priceComponent" },
4866
- "priceComponentType": { "@id": "schema:priceComponentType" },
4867
- "priceCurrency": { "@id": "schema:priceCurrency" },
4868
- "priceRange": { "@id": "schema:priceRange" },
4869
- "priceSpecification": { "@id": "schema:priceSpecification" },
4870
- "priceType": { "@id": "schema:priceType" },
4871
- "priceValidUntil": {
4872
- "@id": "schema:priceValidUntil",
4873
- "@type": "Date"
4874
- },
4875
- "primaryImageOfPage": { "@id": "schema:primaryImageOfPage" },
4876
- "primaryPrevention": { "@id": "schema:primaryPrevention" },
4877
- "printColumn": { "@id": "schema:printColumn" },
4878
- "printEdition": { "@id": "schema:printEdition" },
4879
- "printPage": { "@id": "schema:printPage" },
4880
- "printSection": { "@id": "schema:printSection" },
4881
- "procedure": { "@id": "schema:procedure" },
4882
- "procedureType": { "@id": "schema:procedureType" },
4883
- "processingTime": { "@id": "schema:processingTime" },
4884
- "processorRequirements": { "@id": "schema:processorRequirements" },
4885
- "producer": { "@id": "schema:producer" },
4886
- "produces": { "@id": "schema:produces" },
4887
- "productGroupID": { "@id": "schema:productGroupID" },
4888
- "productID": { "@id": "schema:productID" },
4889
- "productReturnDays": { "@id": "schema:productReturnDays" },
4890
- "productReturnLink": {
4891
- "@id": "schema:productReturnLink",
4892
- "@type": "@id"
4893
- },
4894
- "productSupported": { "@id": "schema:productSupported" },
4895
- "productionCompany": { "@id": "schema:productionCompany" },
4896
- "productionDate": {
4897
- "@id": "schema:productionDate",
4898
- "@type": "Date"
4899
- },
4900
- "proficiencyLevel": { "@id": "schema:proficiencyLevel" },
4901
- "program": { "@id": "schema:program" },
4902
- "programMembershipUsed": { "@id": "schema:programMembershipUsed" },
4903
- "programName": { "@id": "schema:programName" },
4904
- "programPrerequisites": { "@id": "schema:programPrerequisites" },
4905
- "programType": { "@id": "schema:programType" },
4906
- "programmingLanguage": { "@id": "schema:programmingLanguage" },
4907
- "programmingModel": { "@id": "schema:programmingModel" },
4908
- "propertyID": { "@id": "schema:propertyID" },
4909
- "proprietaryName": { "@id": "schema:proprietaryName" },
4910
- "proteinContent": { "@id": "schema:proteinContent" },
4911
- "provider": { "@id": "schema:provider" },
4912
- "providerMobility": { "@id": "schema:providerMobility" },
4913
- "providesBroadcastService": { "@id": "schema:providesBroadcastService" },
4914
- "providesService": { "@id": "schema:providesService" },
4915
- "publicAccess": { "@id": "schema:publicAccess" },
4916
- "publicTransportClosuresInfo": {
4917
- "@id": "schema:publicTransportClosuresInfo",
4918
- "@type": "@id"
4919
- },
4920
- "publication": { "@id": "schema:publication" },
4921
- "publicationType": { "@id": "schema:publicationType" },
4922
- "publishedBy": { "@id": "schema:publishedBy" },
4923
- "publishedOn": { "@id": "schema:publishedOn" },
4924
- "publisher": { "@id": "schema:publisher" },
4925
- "publisherImprint": { "@id": "schema:publisherImprint" },
4926
- "publishingPrinciples": {
4927
- "@id": "schema:publishingPrinciples",
4928
- "@type": "@id"
4929
- },
4930
- "purchaseDate": {
4931
- "@id": "schema:purchaseDate",
4932
- "@type": "Date"
4933
- },
4934
- "qualifications": { "@id": "schema:qualifications" },
4935
- "quarantineGuidelines": {
4936
- "@id": "schema:quarantineGuidelines",
4937
- "@type": "@id"
4938
- },
4939
- "query": { "@id": "schema:query" },
4940
- "quest": { "@id": "schema:quest" },
4941
- "question": { "@id": "schema:question" },
4942
- "rangeIncludes": { "@id": "schema:rangeIncludes" },
4943
- "ratingCount": { "@id": "schema:ratingCount" },
4944
- "ratingExplanation": { "@id": "schema:ratingExplanation" },
4945
- "ratingValue": { "@id": "schema:ratingValue" },
4946
- "readBy": { "@id": "schema:readBy" },
4947
- "readonlyValue": { "@id": "schema:readonlyValue" },
4948
- "realEstateAgent": { "@id": "schema:realEstateAgent" },
4949
- "recipe": { "@id": "schema:recipe" },
4950
- "recipeCategory": { "@id": "schema:recipeCategory" },
4951
- "recipeCuisine": { "@id": "schema:recipeCuisine" },
4952
- "recipeIngredient": { "@id": "schema:recipeIngredient" },
4953
- "recipeInstructions": { "@id": "schema:recipeInstructions" },
4954
- "recipeYield": { "@id": "schema:recipeYield" },
4955
- "recipient": { "@id": "schema:recipient" },
4956
- "recognizedBy": { "@id": "schema:recognizedBy" },
4957
- "recognizingAuthority": { "@id": "schema:recognizingAuthority" },
4958
- "recommendationStrength": { "@id": "schema:recommendationStrength" },
4959
- "recommendedIntake": { "@id": "schema:recommendedIntake" },
4960
- "recordLabel": { "@id": "schema:recordLabel" },
4961
- "recordedAs": { "@id": "schema:recordedAs" },
4962
- "recordedAt": { "@id": "schema:recordedAt" },
4963
- "recordedIn": { "@id": "schema:recordedIn" },
4964
- "recordingOf": { "@id": "schema:recordingOf" },
4965
- "recourseLoan": { "@id": "schema:recourseLoan" },
4966
- "referenceQuantity": { "@id": "schema:referenceQuantity" },
4967
- "referencesOrder": { "@id": "schema:referencesOrder" },
4968
- "refundType": { "@id": "schema:refundType" },
4969
- "regionDrained": { "@id": "schema:regionDrained" },
4970
- "regionsAllowed": { "@id": "schema:regionsAllowed" },
4971
- "relatedAnatomy": { "@id": "schema:relatedAnatomy" },
4972
- "relatedCondition": { "@id": "schema:relatedCondition" },
4973
- "relatedDrug": { "@id": "schema:relatedDrug" },
4974
- "relatedLink": {
4975
- "@id": "schema:relatedLink",
4976
- "@type": "@id"
4977
- },
4978
- "relatedStructure": { "@id": "schema:relatedStructure" },
4979
- "relatedTherapy": { "@id": "schema:relatedTherapy" },
4980
- "relatedTo": { "@id": "schema:relatedTo" },
4981
- "releaseDate": {
4982
- "@id": "schema:releaseDate",
4983
- "@type": "Date"
4984
- },
4985
- "releaseNotes": { "@id": "schema:releaseNotes" },
4986
- "releaseOf": { "@id": "schema:releaseOf" },
4987
- "releasedEvent": { "@id": "schema:releasedEvent" },
4988
- "relevantOccupation": { "@id": "schema:relevantOccupation" },
4989
- "relevantSpecialty": { "@id": "schema:relevantSpecialty" },
4990
- "remainingAttendeeCapacity": { "@id": "schema:remainingAttendeeCapacity" },
4991
- "renegotiableLoan": { "@id": "schema:renegotiableLoan" },
4992
- "repeatCount": { "@id": "schema:repeatCount" },
4993
- "repeatFrequency": { "@id": "schema:repeatFrequency" },
4994
- "repetitions": { "@id": "schema:repetitions" },
4995
- "replacee": { "@id": "schema:replacee" },
4996
- "replacer": { "@id": "schema:replacer" },
4997
- "replyToUrl": {
4998
- "@id": "schema:replyToUrl",
4999
- "@type": "@id"
5000
- },
5001
- "reportNumber": { "@id": "schema:reportNumber" },
5002
- "representativeOfPage": { "@id": "schema:representativeOfPage" },
5003
- "requiredCollateral": { "@id": "schema:requiredCollateral" },
5004
- "requiredGender": { "@id": "schema:requiredGender" },
5005
- "requiredMaxAge": { "@id": "schema:requiredMaxAge" },
5006
- "requiredMinAge": { "@id": "schema:requiredMinAge" },
5007
- "requiredQuantity": { "@id": "schema:requiredQuantity" },
5008
- "requirements": { "@id": "schema:requirements" },
5009
- "requiresSubscription": { "@id": "schema:requiresSubscription" },
5010
- "reservationFor": { "@id": "schema:reservationFor" },
5011
- "reservationId": { "@id": "schema:reservationId" },
5012
- "reservationStatus": { "@id": "schema:reservationStatus" },
5013
- "reservedTicket": { "@id": "schema:reservedTicket" },
5014
- "responsibilities": { "@id": "schema:responsibilities" },
5015
- "restPeriods": { "@id": "schema:restPeriods" },
5016
- "restockingFee": { "@id": "schema:restockingFee" },
5017
- "result": { "@id": "schema:result" },
5018
- "resultComment": { "@id": "schema:resultComment" },
5019
- "resultReview": { "@id": "schema:resultReview" },
5020
- "returnFees": { "@id": "schema:returnFees" },
5021
- "returnLabelSource": { "@id": "schema:returnLabelSource" },
5022
- "returnMethod": { "@id": "schema:returnMethod" },
5023
- "returnPolicyCategory": { "@id": "schema:returnPolicyCategory" },
5024
- "returnPolicyCountry": { "@id": "schema:returnPolicyCountry" },
5025
- "returnPolicySeasonalOverride": { "@id": "schema:returnPolicySeasonalOverride" },
5026
- "returnShippingFeesAmount": { "@id": "schema:returnShippingFeesAmount" },
5027
- "review": { "@id": "schema:review" },
5028
- "reviewAspect": { "@id": "schema:reviewAspect" },
5029
- "reviewBody": { "@id": "schema:reviewBody" },
5030
- "reviewCount": { "@id": "schema:reviewCount" },
5031
- "reviewRating": { "@id": "schema:reviewRating" },
5032
- "reviewedBy": { "@id": "schema:reviewedBy" },
5033
- "reviews": { "@id": "schema:reviews" },
5034
- "riskFactor": { "@id": "schema:riskFactor" },
5035
- "risks": { "@id": "schema:risks" },
5036
- "roleName": { "@id": "schema:roleName" },
5037
- "roofLoad": { "@id": "schema:roofLoad" },
5038
- "rsvpResponse": { "@id": "schema:rsvpResponse" },
5039
- "runsTo": { "@id": "schema:runsTo" },
5040
- "runtime": { "@id": "schema:runtime" },
5041
- "runtimePlatform": { "@id": "schema:runtimePlatform" },
5042
- "rxcui": { "@id": "schema:rxcui" },
5043
- "safetyConsideration": { "@id": "schema:safetyConsideration" },
5044
- "salaryCurrency": { "@id": "schema:salaryCurrency" },
5045
- "salaryUponCompletion": { "@id": "schema:salaryUponCompletion" },
5046
- "sameAs": {
5047
- "@id": "schema:sameAs",
5048
- "@type": "@id"
5049
- },
5050
- "sampleType": { "@id": "schema:sampleType" },
5051
- "saturatedFatContent": { "@id": "schema:saturatedFatContent" },
5052
- "scheduleTimezone": { "@id": "schema:scheduleTimezone" },
5053
- "scheduledPaymentDate": {
5054
- "@id": "schema:scheduledPaymentDate",
5055
- "@type": "Date"
5056
- },
5057
- "scheduledTime": {
5058
- "@id": "schema:scheduledTime",
5059
- "@type": "Date"
5060
- },
5061
- "schemaVersion": { "@id": "schema:schemaVersion" },
5062
- "schoolClosuresInfo": {
5063
- "@id": "schema:schoolClosuresInfo",
5064
- "@type": "@id"
5065
- },
5066
- "screenCount": { "@id": "schema:screenCount" },
5067
- "screenshot": {
5068
- "@id": "schema:screenshot",
5069
- "@type": "@id"
5070
- },
5071
- "sdDatePublished": {
5072
- "@id": "schema:sdDatePublished",
5073
- "@type": "Date"
5074
- },
5075
- "sdLicense": {
5076
- "@id": "schema:sdLicense",
5077
- "@type": "@id"
5078
- },
5079
- "sdPublisher": { "@id": "schema:sdPublisher" },
5080
- "season": {
5081
- "@id": "schema:season",
5082
- "@type": "@id"
5083
- },
5084
- "seasonNumber": { "@id": "schema:seasonNumber" },
5085
- "seasons": { "@id": "schema:seasons" },
5086
- "seatNumber": { "@id": "schema:seatNumber" },
5087
- "seatRow": { "@id": "schema:seatRow" },
5088
- "seatSection": { "@id": "schema:seatSection" },
5089
- "seatingCapacity": { "@id": "schema:seatingCapacity" },
5090
- "seatingType": { "@id": "schema:seatingType" },
5091
- "secondaryPrevention": { "@id": "schema:secondaryPrevention" },
5092
- "securityClearanceRequirement": { "@id": "schema:securityClearanceRequirement" },
5093
- "securityScreening": { "@id": "schema:securityScreening" },
5094
- "seeks": { "@id": "schema:seeks" },
5095
- "seller": { "@id": "schema:seller" },
5096
- "sender": { "@id": "schema:sender" },
5097
- "sensoryRequirement": { "@id": "schema:sensoryRequirement" },
5098
- "sensoryUnit": { "@id": "schema:sensoryUnit" },
5099
- "serialNumber": { "@id": "schema:serialNumber" },
5100
- "seriousAdverseOutcome": { "@id": "schema:seriousAdverseOutcome" },
5101
- "serverStatus": { "@id": "schema:serverStatus" },
5102
- "servesCuisine": { "@id": "schema:servesCuisine" },
5103
- "serviceArea": { "@id": "schema:serviceArea" },
5104
- "serviceAudience": { "@id": "schema:serviceAudience" },
5105
- "serviceLocation": { "@id": "schema:serviceLocation" },
5106
- "serviceOperator": { "@id": "schema:serviceOperator" },
5107
- "serviceOutput": { "@id": "schema:serviceOutput" },
5108
- "servicePhone": { "@id": "schema:servicePhone" },
5109
- "servicePostalAddress": { "@id": "schema:servicePostalAddress" },
5110
- "serviceSmsNumber": { "@id": "schema:serviceSmsNumber" },
5111
- "serviceType": { "@id": "schema:serviceType" },
5112
- "serviceUrl": {
5113
- "@id": "schema:serviceUrl",
5114
- "@type": "@id"
5115
- },
5116
- "servingSize": { "@id": "schema:servingSize" },
5117
- "sha256": { "@id": "schema:sha256" },
5118
- "sharedContent": { "@id": "schema:sharedContent" },
5119
- "shippingDestination": { "@id": "schema:shippingDestination" },
5120
- "shippingDetails": { "@id": "schema:shippingDetails" },
5121
- "shippingLabel": { "@id": "schema:shippingLabel" },
5122
- "shippingOrigin": { "@id": "schema:shippingOrigin" },
5123
- "shippingRate": { "@id": "schema:shippingRate" },
5124
- "shippingSettingsLink": {
5125
- "@id": "schema:shippingSettingsLink",
5126
- "@type": "@id"
5127
- },
5128
- "sibling": { "@id": "schema:sibling" },
5129
- "siblings": { "@id": "schema:siblings" },
5130
- "signDetected": { "@id": "schema:signDetected" },
5131
- "signOrSymptom": { "@id": "schema:signOrSymptom" },
5132
- "significance": { "@id": "schema:significance" },
5133
- "significantLink": {
5134
- "@id": "schema:significantLink",
5135
- "@type": "@id"
5136
- },
5137
- "significantLinks": {
5138
- "@id": "schema:significantLinks",
5139
- "@type": "@id"
5140
- },
5141
- "size": { "@id": "schema:size" },
5142
- "sizeGroup": { "@id": "schema:sizeGroup" },
5143
- "sizeSystem": { "@id": "schema:sizeSystem" },
5144
- "skills": { "@id": "schema:skills" },
5145
- "sku": { "@id": "schema:sku" },
5146
- "slogan": { "@id": "schema:slogan" },
5147
- "smiles": { "@id": "schema:smiles" },
5148
- "smokingAllowed": { "@id": "schema:smokingAllowed" },
5149
- "sodiumContent": { "@id": "schema:sodiumContent" },
5150
- "softwareAddOn": { "@id": "schema:softwareAddOn" },
5151
- "softwareHelp": { "@id": "schema:softwareHelp" },
5152
- "softwareRequirements": { "@id": "schema:softwareRequirements" },
5153
- "softwareVersion": { "@id": "schema:softwareVersion" },
5154
- "sourceOrganization": { "@id": "schema:sourceOrganization" },
5155
- "sourcedFrom": { "@id": "schema:sourcedFrom" },
5156
- "spatial": { "@id": "schema:spatial" },
5157
- "spatialCoverage": { "@id": "schema:spatialCoverage" },
5158
- "speakable": {
5159
- "@id": "schema:speakable",
5160
- "@type": "@id"
5161
- },
5162
- "specialCommitments": { "@id": "schema:specialCommitments" },
5163
- "specialOpeningHoursSpecification": { "@id": "schema:specialOpeningHoursSpecification" },
5164
- "specialty": { "@id": "schema:specialty" },
5165
- "speechToTextMarkup": { "@id": "schema:speechToTextMarkup" },
5166
- "speed": { "@id": "schema:speed" },
5167
- "spokenByCharacter": { "@id": "schema:spokenByCharacter" },
5168
- "sponsor": { "@id": "schema:sponsor" },
5169
- "sport": { "@id": "schema:sport" },
5170
- "sportsActivityLocation": { "@id": "schema:sportsActivityLocation" },
5171
- "sportsEvent": { "@id": "schema:sportsEvent" },
5172
- "sportsTeam": { "@id": "schema:sportsTeam" },
5173
- "spouse": { "@id": "schema:spouse" },
5174
- "stage": { "@id": "schema:stage" },
5175
- "stageAsNumber": { "@id": "schema:stageAsNumber" },
5176
- "starRating": { "@id": "schema:starRating" },
5177
- "startDate": {
5178
- "@id": "schema:startDate",
5179
- "@type": "Date"
5180
- },
5181
- "startOffset": { "@id": "schema:startOffset" },
5182
- "startTime": { "@id": "schema:startTime" },
5183
- "statType": { "@id": "schema:statType" },
5184
- "status": { "@id": "schema:status" },
5185
- "steeringPosition": { "@id": "schema:steeringPosition" },
5186
- "step": { "@id": "schema:step" },
5187
- "stepValue": { "@id": "schema:stepValue" },
5188
- "steps": { "@id": "schema:steps" },
5189
- "storageRequirements": { "@id": "schema:storageRequirements" },
5190
- "streetAddress": { "@id": "schema:streetAddress" },
5191
- "strengthUnit": { "@id": "schema:strengthUnit" },
5192
- "strengthValue": { "@id": "schema:strengthValue" },
5193
- "structuralClass": { "@id": "schema:structuralClass" },
5194
- "study": { "@id": "schema:study" },
5195
- "studyDesign": { "@id": "schema:studyDesign" },
5196
- "studyLocation": { "@id": "schema:studyLocation" },
5197
- "studySubject": { "@id": "schema:studySubject" },
5198
- "stupidProperty": { "@id": "schema:stupidProperty" },
5199
- "subEvent": { "@id": "schema:subEvent" },
5200
- "subEvents": { "@id": "schema:subEvents" },
5201
- "subOrganization": { "@id": "schema:subOrganization" },
5202
- "subReservation": { "@id": "schema:subReservation" },
5203
- "subStageSuffix": { "@id": "schema:subStageSuffix" },
5204
- "subStructure": { "@id": "schema:subStructure" },
5205
- "subTest": { "@id": "schema:subTest" },
5206
- "subTrip": { "@id": "schema:subTrip" },
5207
- "subjectOf": { "@id": "schema:subjectOf" },
5208
- "subtitleLanguage": { "@id": "schema:subtitleLanguage" },
5209
- "successorOf": { "@id": "schema:successorOf" },
5210
- "sugarContent": { "@id": "schema:sugarContent" },
5211
- "suggestedAge": { "@id": "schema:suggestedAge" },
5212
- "suggestedAnswer": { "@id": "schema:suggestedAnswer" },
5213
- "suggestedGender": { "@id": "schema:suggestedGender" },
5214
- "suggestedMaxAge": { "@id": "schema:suggestedMaxAge" },
5215
- "suggestedMeasurement": { "@id": "schema:suggestedMeasurement" },
5216
- "suggestedMinAge": { "@id": "schema:suggestedMinAge" },
5217
- "suitableForDiet": { "@id": "schema:suitableForDiet" },
5218
- "superEvent": { "@id": "schema:superEvent" },
5219
- "supersededBy": { "@id": "schema:supersededBy" },
5220
- "supply": { "@id": "schema:supply" },
5221
- "supplyTo": { "@id": "schema:supplyTo" },
5222
- "supportingData": { "@id": "schema:supportingData" },
5223
- "surface": { "@id": "schema:surface" },
5224
- "syllabusSections": { "@id": "schema:syllabusSections" },
5225
- "target": {
5226
- "@id": "schema:target",
5227
- "@type": "@id"
5228
- },
5229
- "targetCollection": { "@id": "schema:targetCollection" },
5230
- "targetDescription": { "@id": "schema:targetDescription" },
5231
- "targetName": { "@id": "schema:targetName" },
5232
- "targetPlatform": { "@id": "schema:targetPlatform" },
5233
- "targetPopulation": { "@id": "schema:targetPopulation" },
5234
- "targetProduct": { "@id": "schema:targetProduct" },
5235
- "targetUrl": {
5236
- "@id": "schema:targetUrl",
5237
- "@type": "@id"
5238
- },
5239
- "taxID": { "@id": "schema:taxID" },
5240
- "taxonRank": { "@id": "schema:taxonRank" },
5241
- "taxonomicRange": { "@id": "schema:taxonomicRange" },
5242
- "teaches": { "@id": "schema:teaches" },
5243
- "telephone": { "@id": "schema:telephone" },
5244
- "temporal": { "@id": "schema:temporal" },
5245
- "temporalCoverage": { "@id": "schema:temporalCoverage" },
5246
- "termCode": { "@id": "schema:termCode" },
5247
- "termDuration": { "@id": "schema:termDuration" },
5248
- "termsOfService": { "@id": "schema:termsOfService" },
5249
- "termsPerYear": { "@id": "schema:termsPerYear" },
5250
- "text": { "@id": "schema:text" },
5251
- "textValue": { "@id": "schema:textValue" },
5252
- "thumbnail": { "@id": "schema:thumbnail" },
5253
- "thumbnailUrl": {
5254
- "@id": "schema:thumbnailUrl",
5255
- "@type": "@id"
5256
- },
5257
- "tickerSymbol": { "@id": "schema:tickerSymbol" },
5258
- "ticketNumber": { "@id": "schema:ticketNumber" },
5259
- "ticketToken": { "@id": "schema:ticketToken" },
5260
- "ticketedSeat": { "@id": "schema:ticketedSeat" },
5261
- "timeOfDay": { "@id": "schema:timeOfDay" },
5262
- "timeRequired": { "@id": "schema:timeRequired" },
5263
- "timeToComplete": { "@id": "schema:timeToComplete" },
5264
- "tissueSample": { "@id": "schema:tissueSample" },
5265
- "title": { "@id": "schema:title" },
5266
- "titleEIDR": { "@id": "schema:titleEIDR" },
5267
- "toLocation": { "@id": "schema:toLocation" },
5268
- "toRecipient": { "@id": "schema:toRecipient" },
5269
- "tocContinuation": { "@id": "schema:tocContinuation" },
5270
- "tocEntry": { "@id": "schema:tocEntry" },
5271
- "tongueWeight": { "@id": "schema:tongueWeight" },
5272
- "tool": { "@id": "schema:tool" },
5273
- "torque": { "@id": "schema:torque" },
5274
- "totalHistoricalEnrollment": { "@id": "schema:totalHistoricalEnrollment" },
5275
- "totalJobOpenings": { "@id": "schema:totalJobOpenings" },
5276
- "totalPaymentDue": { "@id": "schema:totalPaymentDue" },
5277
- "totalPrice": { "@id": "schema:totalPrice" },
5278
- "totalTime": { "@id": "schema:totalTime" },
5279
- "tourBookingPage": {
5280
- "@id": "schema:tourBookingPage",
5281
- "@type": "@id"
5282
- },
5283
- "touristType": { "@id": "schema:touristType" },
5284
- "track": { "@id": "schema:track" },
5285
- "trackingNumber": { "@id": "schema:trackingNumber" },
5286
- "trackingUrl": {
5287
- "@id": "schema:trackingUrl",
5288
- "@type": "@id"
5289
- },
5290
- "tracks": { "@id": "schema:tracks" },
5291
- "trailer": { "@id": "schema:trailer" },
5292
- "trailerWeight": { "@id": "schema:trailerWeight" },
5293
- "trainName": { "@id": "schema:trainName" },
5294
- "trainNumber": { "@id": "schema:trainNumber" },
5295
- "trainingSalary": { "@id": "schema:trainingSalary" },
5296
- "transFatContent": { "@id": "schema:transFatContent" },
5297
- "transcript": { "@id": "schema:transcript" },
5298
- "transitTime": { "@id": "schema:transitTime" },
5299
- "transitTimeLabel": { "@id": "schema:transitTimeLabel" },
5300
- "translationOfWork": { "@id": "schema:translationOfWork" },
5301
- "translator": { "@id": "schema:translator" },
5302
- "transmissionMethod": { "@id": "schema:transmissionMethod" },
5303
- "travelBans": {
5304
- "@id": "schema:travelBans",
5305
- "@type": "@id"
5306
- },
5307
- "trialDesign": { "@id": "schema:trialDesign" },
5308
- "tributary": { "@id": "schema:tributary" },
5309
- "tripOrigin": { "@id": "schema:tripOrigin" },
5310
- "typeOfBed": { "@id": "schema:typeOfBed" },
5311
- "typeOfGood": { "@id": "schema:typeOfGood" },
5312
- "typicalAgeRange": { "@id": "schema:typicalAgeRange" },
5313
- "typicalCreditsPerTerm": { "@id": "schema:typicalCreditsPerTerm" },
5314
- "typicalTest": { "@id": "schema:typicalTest" },
5315
- "underName": { "@id": "schema:underName" },
5316
- "unitCode": { "@id": "schema:unitCode" },
5317
- "unitText": { "@id": "schema:unitText" },
5318
- "unnamedSourcesPolicy": {
5319
- "@id": "schema:unnamedSourcesPolicy",
5320
- "@type": "@id"
5321
- },
5322
- "unsaturatedFatContent": { "@id": "schema:unsaturatedFatContent" },
5323
- "uploadDate": {
5324
- "@id": "schema:uploadDate",
5325
- "@type": "Date"
5326
- },
5327
- "upvoteCount": { "@id": "schema:upvoteCount" },
5328
- "url": {
5329
- "@id": "schema:url",
5330
- "@type": "@id"
5331
- },
5332
- "urlTemplate": { "@id": "schema:urlTemplate" },
5333
- "usNPI": { "@id": "schema:usNPI" },
5334
- "usageInfo": {
5335
- "@id": "schema:usageInfo",
5336
- "@type": "@id"
5337
- },
5338
- "usedToDiagnose": { "@id": "schema:usedToDiagnose" },
5339
- "userInteractionCount": { "@id": "schema:userInteractionCount" },
5340
- "usesDevice": { "@id": "schema:usesDevice" },
5341
- "usesHealthPlanIdStandard": { "@id": "schema:usesHealthPlanIdStandard" },
5342
- "utterances": { "@id": "schema:utterances" },
5343
- "validFor": { "@id": "schema:validFor" },
5344
- "validForMemberTier": { "@id": "schema:validForMemberTier" },
5345
- "validFrom": {
5346
- "@id": "schema:validFrom",
5347
- "@type": "Date"
5348
- },
5349
- "validIn": { "@id": "schema:validIn" },
5350
- "validThrough": {
5351
- "@id": "schema:validThrough",
5352
- "@type": "Date"
5353
- },
5354
- "validUntil": {
5355
- "@id": "schema:validUntil",
5356
- "@type": "Date"
5357
- },
5358
- "value": { "@id": "schema:value" },
5359
- "valueAddedTaxIncluded": { "@id": "schema:valueAddedTaxIncluded" },
5360
- "valueMaxLength": { "@id": "schema:valueMaxLength" },
5361
- "valueMinLength": { "@id": "schema:valueMinLength" },
5362
- "valueName": { "@id": "schema:valueName" },
5363
- "valuePattern": { "@id": "schema:valuePattern" },
5364
- "valueReference": { "@id": "schema:valueReference" },
5365
- "valueRequired": { "@id": "schema:valueRequired" },
5366
- "variableMeasured": { "@id": "schema:variableMeasured" },
5367
- "variablesMeasured": { "@id": "schema:variablesMeasured" },
5368
- "variantCover": { "@id": "schema:variantCover" },
5369
- "variesBy": { "@id": "schema:variesBy" },
5370
- "vatID": { "@id": "schema:vatID" },
5371
- "vehicleConfiguration": { "@id": "schema:vehicleConfiguration" },
5372
- "vehicleEngine": { "@id": "schema:vehicleEngine" },
5373
- "vehicleIdentificationNumber": { "@id": "schema:vehicleIdentificationNumber" },
5374
- "vehicleInteriorColor": { "@id": "schema:vehicleInteriorColor" },
5375
- "vehicleInteriorType": { "@id": "schema:vehicleInteriorType" },
5376
- "vehicleModelDate": {
5377
- "@id": "schema:vehicleModelDate",
5378
- "@type": "Date"
5379
- },
5380
- "vehicleSeatingCapacity": { "@id": "schema:vehicleSeatingCapacity" },
5381
- "vehicleSpecialUsage": { "@id": "schema:vehicleSpecialUsage" },
5382
- "vehicleTransmission": { "@id": "schema:vehicleTransmission" },
5383
- "vendor": { "@id": "schema:vendor" },
5384
- "verificationFactCheckingPolicy": {
5385
- "@id": "schema:verificationFactCheckingPolicy",
5386
- "@type": "@id"
5387
- },
5388
- "version": { "@id": "schema:version" },
5389
- "video": { "@id": "schema:video" },
5390
- "videoFormat": { "@id": "schema:videoFormat" },
5391
- "videoFrameSize": { "@id": "schema:videoFrameSize" },
5392
- "videoQuality": { "@id": "schema:videoQuality" },
5393
- "volumeNumber": { "@id": "schema:volumeNumber" },
5394
- "warning": { "@id": "schema:warning" },
5395
- "warranty": { "@id": "schema:warranty" },
5396
- "warrantyPromise": { "@id": "schema:warrantyPromise" },
5397
- "warrantyScope": { "@id": "schema:warrantyScope" },
5398
- "webCheckinTime": { "@id": "schema:webCheckinTime" },
5399
- "webFeed": {
5400
- "@id": "schema:webFeed",
5401
- "@type": "@id"
5402
- },
5403
- "weight": { "@id": "schema:weight" },
5404
- "weightTotal": { "@id": "schema:weightTotal" },
5405
- "wheelbase": { "@id": "schema:wheelbase" },
5406
- "width": { "@id": "schema:width" },
5407
- "winner": { "@id": "schema:winner" },
5408
- "wordCount": { "@id": "schema:wordCount" },
5409
- "workExample": { "@id": "schema:workExample" },
5410
- "workFeatured": { "@id": "schema:workFeatured" },
5411
- "workHours": { "@id": "schema:workHours" },
5412
- "workLocation": { "@id": "schema:workLocation" },
5413
- "workPerformed": { "@id": "schema:workPerformed" },
5414
- "workPresented": { "@id": "schema:workPresented" },
5415
- "workTranslation": { "@id": "schema:workTranslation" },
5416
- "workload": { "@id": "schema:workload" },
5417
- "worksFor": { "@id": "schema:worksFor" },
5418
- "worstRating": { "@id": "schema:worstRating" },
5419
- "xpath": { "@id": "schema:xpath" },
5420
- "yearBuilt": { "@id": "schema:yearBuilt" },
5421
- "yearlyRevenue": { "@id": "schema:yearlyRevenue" },
5422
- "yearsInOperation": { "@id": "schema:yearsInOperation" },
5423
- "yield": { "@id": "schema:yield" }
5424
- } },
5425
- "https://gotosocial.org/ns": { "@context": {
5426
- "xsd": "http://www.w3.org/2001/XMLSchema#",
5427
- "gts": "https://gotosocial.org/ns#",
5428
- "LikeRequest": "gts:LikeRequest",
5429
- "ReplyRequest": "gts:ReplyRequest",
5430
- "AnnounceRequest": "gts:AnnounceRequest",
5431
- "QuoteRequest": "gts:QuoteRequest",
5432
- "LikeAuthorization": "gts:LikeApproval",
5433
- "ReplyAuthorization": "gts:ReplyAuthorization",
5434
- "AnnounceAuthorization": "gts:AnnounceAuthorization",
5435
- "QuoteAuthorization": "gts:QuoteAuthorization",
5436
- "likeAuthorization": {
5437
- "@id": "gts:likeAuthorization",
5438
- "@type": "@id"
5439
- },
5440
- "replyAuthorization": {
5441
- "@id": "gts:replyAuthorization",
5442
- "@type": "@id"
5443
- },
5444
- "announceAuthorization": {
5445
- "@id": "gts:announceAuthorization",
5446
- "@type": "@id"
5447
- },
5448
- "quoteAuthorization": {
5449
- "@id": "gts:quoteAuthorization",
5450
- "@type": "@id"
5451
- },
5452
- "interactingObject": {
5453
- "@id": "gts:interactingObject",
5454
- "@type": "@id"
5455
- },
5456
- "interactionTarget": {
5457
- "@id": "gts:interactionTarget",
5458
- "@type": "@id"
5459
- },
5460
- "interactionPolicy": {
5461
- "@id": "gts:interactionPolicy",
5462
- "@type": "@id"
5463
- },
5464
- "canLike": {
5465
- "@id": "gts:canLike",
5466
- "@type": "@id"
5467
- },
5468
- "canReply": {
5469
- "@id": "gts:canReply",
5470
- "@type": "@id"
5471
- },
5472
- "canAnnounce": {
5473
- "@id": "gts:canAnnounce",
5474
- "@type": "@id"
5475
- },
5476
- "canQuote": {
5477
- "@id": "gts:canQuote",
5478
- "@type": "@id"
5479
- },
5480
- "automaticApproval": {
5481
- "@id": "gts:automaticApproval",
5482
- "@type": "@id"
5483
- },
5484
- "manualApproval": {
5485
- "@id": "gts:manualApproval",
5486
- "@type": "@id"
5487
- },
5488
- "hidesToPublicFromUnauthedWeb": {
5489
- "@id": "gts:hidesToPublicFromUnauthedWeb",
5490
- "@type": "xsd:boolean"
5491
- },
5492
- "hidesCcPublicFromUnauthedWeb": {
5493
- "@id": "gts:hidesCcPublicFromUnauthedWeb",
5494
- "@type": "xsd:boolean"
5495
- },
5496
- "always": {
5497
- "@id": "gts:always",
5498
- "@type": "@id"
5499
- },
5500
- "approvalRequired": {
5501
- "@id": "gts:approvalRequired",
5502
- "@type": "@id"
5503
- },
5504
- "approvedBy": {
5505
- "@id": "gts:approvedBy",
5506
- "@type": "@id"
5507
- }
5508
- } },
5509
- "https://w3id.org/fep/5711": { "@context": {
5510
- "likesOf": {
5511
- "@id": "https://w3id.org/fep/5711#likesOf",
5512
- "@type": "@id"
5513
- },
5514
- "sharesOf": {
5515
- "@id": "https://w3id.org/fep/5711#sharesOf",
5516
- "@type": "@id"
5517
- },
5518
- "repliesOf": {
5519
- "@id": "https://w3id.org/fep/5711#repliesOf",
5520
- "@type": "@id"
5521
- },
5522
- "inboxOf": {
5523
- "@id": "https://w3id.org/fep/5711#inboxOf",
5524
- "@type": "@id"
5525
- },
5526
- "outboxOf": {
5527
- "@id": "https://w3id.org/fep/5711#outboxOf",
5528
- "@type": "@id"
5529
- },
5530
- "followersOf": {
5531
- "@id": "https://w3id.org/fep/5711#followersOf",
5532
- "@type": "@id"
5533
- },
5534
- "followingOf": {
5535
- "@id": "https://w3id.org/fep/5711#followingOf",
5536
- "@type": "@id"
5537
- },
5538
- "likedOf": {
5539
- "@id": "https://w3id.org/fep/5711#likedOf",
5540
- "@type": "@id"
5541
- }
5542
- } },
5543
- "http://joinmastodon.org/ns": { "@context": {
5544
- "toot": "http://joinmastodon.org/ns#",
5545
- "Emoji": "toot:Emoji",
5546
- "featured": {
5547
- "@id": "toot:featured",
5548
- "@type": "@id"
5549
- },
5550
- "featuredTags": {
5551
- "@id": "toot:featuredTags",
5552
- "@type": "@id"
5553
- },
5554
- "focalPoint": {
5555
- "@container": "@list",
5556
- "@id": "toot:focalPoint"
5557
- },
5558
- "blurhash": "toot:blurhash",
5559
- "discoverable": "toot:discoverable",
5560
- "indexable": "toot:indexable",
5561
- "memorial": "toot:memorial",
5562
- "votersCount": "toot:votersCount",
5563
- "suspended": "toot:suspended",
5564
- "attributionDomains": {
5565
- "@id": "toot:attributionDomains",
5566
- "@type": "@id"
5567
- }
5568
- } }
5569
- };
5570
- var contexts_default = preloadedContexts;
5571
-
5572
- //#endregion
5573
- //#region src/docloader.ts
5574
- const logger = getLogger([
5575
- "fedify",
5576
- "runtime",
5577
- "docloader"
5578
- ]);
5579
- /**
5580
- * Gets a {@link RemoteDocument} from the given response.
5581
- * @param url The URL of the document to load.
5582
- * @param response The response to get the document from.
5583
- * @param fetch The function to fetch the document.
5584
- * @returns The loaded remote document.
5585
- * @throws {FetchError} If the response is not OK.
5586
- * @internal
5587
- */
5588
- async function getRemoteDocument(url, response, fetch$1) {
5589
- const documentUrl = response.url === "" ? url : response.url;
5590
- const docUrl = new URL(documentUrl);
5591
- if (!response.ok) {
5592
- logger.error("Failed to fetch document: {status} {url} {headers}", {
5593
- status: response.status,
5594
- url: documentUrl,
5595
- headers: Object.fromEntries(response.headers.entries())
5596
- });
5597
- throw new FetchError(documentUrl, `HTTP ${response.status}: ${documentUrl}`, response.clone());
5598
- }
5599
- const contentType = response.headers.get("Content-Type");
5600
- const jsonLd = contentType == null || contentType === "application/activity+json" || contentType.startsWith("application/activity+json;") || contentType === "application/ld+json" || contentType.startsWith("application/ld+json;");
5601
- const linkHeader = response.headers.get("Link");
5602
- let contextUrl = null;
5603
- if (linkHeader != null) {
5604
- let link;
5605
- try {
5606
- link = new HttpHeaderLink(linkHeader);
5607
- } catch (e) {
5608
- if (e instanceof SyntaxError) link = new HttpHeaderLink();
5609
- else throw e;
5610
- }
5611
- if (jsonLd) {
5612
- const entries = link.getByRel("http://www.w3.org/ns/json-ld#context");
5613
- for (const [uri, params] of entries) if ("type" in params && params.type === "application/ld+json") {
5614
- contextUrl = uri;
5615
- break;
5616
- }
5617
- } else {
5618
- const entries = link.getByRel("alternate");
5619
- for (const [uri, params] of entries) {
5620
- const altUri = new URL(uri, docUrl);
5621
- if ("type" in params && (params.type === "application/activity+json" || params.type === "application/ld+json" || params.type.startsWith("application/ld+json;")) && altUri.href !== docUrl.href) {
5622
- logger.debug("Found alternate document: {alternateUrl} from {url}", {
5623
- alternateUrl: altUri.href,
5624
- url: documentUrl
5625
- });
5626
- return await fetch$1(altUri.href);
5627
- }
5628
- }
5629
- }
5630
- }
5631
- let document;
5632
- if (!jsonLd && (contentType === "text/html" || contentType?.startsWith("text/html;") || contentType === "application/xhtml+xml" || contentType?.startsWith("application/xhtml+xml;"))) {
5633
- const MAX_HTML_SIZE = 1024 * 1024;
5634
- const html = await response.text();
5635
- if (html.length > MAX_HTML_SIZE) {
5636
- logger.warn("HTML response too large, skipping alternate link discovery: {url}", {
5637
- url: documentUrl,
5638
- size: html.length
5639
- });
5640
- document = JSON.parse(html);
5641
- } else {
5642
- const tagPattern = /<(a|link)\s+([^>]*?)\s*\/?>/gi;
5643
- const attrPattern = /([a-z][a-z:_-]*)=(?:"([^"]*)"|'([^']*)'|([^\s>]+))/gi;
5644
- let tagMatch;
5645
- while ((tagMatch = tagPattern.exec(html)) !== null) {
5646
- const tagContent = tagMatch[2];
5647
- let attrMatch;
5648
- const attribs = {};
5649
- attrPattern.lastIndex = 0;
5650
- while ((attrMatch = attrPattern.exec(tagContent)) !== null) {
5651
- const key = attrMatch[1].toLowerCase();
5652
- const value = attrMatch[2] ?? attrMatch[3] ?? attrMatch[4] ?? "";
5653
- attribs[key] = value;
5654
- }
5655
- if (attribs.rel === "alternate" && "type" in attribs && (attribs.type === "application/activity+json" || attribs.type === "application/ld+json" || attribs.type.startsWith("application/ld+json;")) && "href" in attribs && new URL(attribs.href, docUrl).href !== docUrl.href) {
5656
- logger.debug("Found alternate document: {alternateUrl} from {url}", {
5657
- alternateUrl: attribs.href,
5658
- url: documentUrl
5659
- });
5660
- return await fetch$1(new URL(attribs.href, docUrl).href);
5661
- }
5662
- }
5663
- document = JSON.parse(html);
5664
- }
5665
- } else document = await response.json();
5666
- logger.debug("Fetched document: {status} {url} {headers}", {
5667
- status: response.status,
5668
- url: documentUrl,
5669
- headers: Object.fromEntries(response.headers.entries())
5670
- });
5671
- return {
5672
- contextUrl,
5673
- document,
5674
- documentUrl
5675
- };
5676
- }
5677
- /**
5678
- * Creates a JSON-LD document loader that utilizes the browser's `fetch` API.
5679
- *
5680
- * The created loader preloads the below frequently used contexts by default
5681
- * (unless `options.skipPreloadedContexts` is set to `true`):
5682
- *
5683
- * - <https://www.w3.org/ns/activitystreams>
5684
- * - <https://w3id.org/security/v1>
5685
- * - <https://w3id.org/security/data-integrity/v1>
5686
- * - <https://www.w3.org/ns/did/v1>
5687
- * - <https://w3id.org/security/multikey/v1>
5688
- * - <https://purl.archive.org/socialweb/webfinger>
5689
- * - <http://schema.org/>
5690
- * @param options Options for the document loader.
5691
- * @returns The document loader.
5692
- * @since 1.3.0
5693
- */
5694
- function getDocumentLoader({ allowPrivateAddress, skipPreloadedContexts, userAgent } = {}) {
5695
- const tracerProvider = trace.getTracerProvider();
5696
- const tracer = tracerProvider.getTracer(deno_default.name, deno_default.version);
5697
- async function load(url, options) {
5698
- options?.signal?.throwIfAborted();
5699
- if (!skipPreloadedContexts && url in contexts_default) {
5700
- logger.debug("Using preloaded context: {url}.", { url });
5701
- return {
5702
- contextUrl: null,
5703
- document: contexts_default[url],
5704
- documentUrl: url
5705
- };
5706
- }
5707
- if (!allowPrivateAddress) try {
5708
- await validatePublicUrl(url);
5709
- } catch (error) {
5710
- if (error instanceof UrlError) logger.error("Disallowed private URL: {url}", {
5711
- url,
5712
- error
5713
- });
5714
- throw error;
5715
- }
5716
- return await tracer.startActiveSpan("activitypub.fetch_document", {
5717
- kind: SpanKind.CLIENT,
5718
- attributes: { "url.full": url }
5719
- }, async (span) => {
5720
- try {
5721
- const request = createActivityPubRequest(url, { userAgent });
5722
- logRequest(logger, request);
5723
- const response = await fetch(request, {
5724
- redirect: "manual",
5725
- signal: options?.signal
5726
- });
5727
- span.setAttribute("http.response.status_code", response.status);
5728
- if (response.status >= 300 && response.status < 400 && response.headers.has("Location")) {
5729
- const redirectUrl = response.headers.get("Location");
5730
- span.setAttribute("http.redirect.url", redirectUrl);
5731
- return await load(redirectUrl, options);
5732
- }
5733
- const result = await getRemoteDocument(url, response, load);
5734
- span.setAttribute("docloader.document_url", result.documentUrl);
5735
- if (result.contextUrl != null) span.setAttribute("docloader.context_url", result.contextUrl);
5736
- return result;
5737
- } catch (error) {
5738
- span.recordException(error);
5739
- span.setStatus({
5740
- code: SpanStatusCode.ERROR,
5741
- message: String(error)
5742
- });
5743
- throw error;
5744
- } finally {
5745
- span.end();
5746
- }
5747
- });
5748
- }
5749
- return load;
5750
- }
5751
-
5752
1268
  //#endregion
5753
1269
  //#region src/docloader.test.ts
5754
1270
  test("new FetchError()", () => {