Skip to content
Snippets Groups Projects
schema_org.py 135 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    CONTEXT = {
        "type": "@type",
        "id": "@id",
        "HTML": {"@id": "rdf:HTML"},
        "@vocab": "http://schema.org/",
        "xml": "http://www.w3.org/XML/1998/namespace",
        "foaf": "http://xmlns.com/foaf/0.1/",
        "eli": "http://data.europa.eu/eli/ontology#",
        "snomed": "http://purl.bioontology.org/ontology/SNOMEDCT/",
        "bibo": "http://purl.org/ontology/bibo/",
        "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
        "skos": "http://www.w3.org/2004/02/skos/core#",
        "void": "http://rdfs.org/ns/void#",
        "dc": "http://purl.org/dc/elements/1.1/",
        "dctype": "http://purl.org/dc/dcmitype/",
        "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
        "dcat": "http://www.w3.org/ns/dcat#",
        "rdfa": "http://www.w3.org/ns/rdfa#",
        "xsd": "http://www.w3.org/2001/XMLSchema#",
        "schema": "http://schema.org/",
        "dct": "http://purl.org/dc/terms/",
        "dcterms": "http://purl.org/dc/terms/",
        "owl": "http://www.w3.org/2002/07/owl#",
        "3DModel": {"@id": "schema:3DModel"},
        "AMRadioChannel": {"@id": "schema:AMRadioChannel"},
        "APIReference": {"@id": "schema:APIReference"},
        "Abdomen": {"@id": "schema:Abdomen"},
        "AboutPage": {"@id": "schema:AboutPage"},
        "AcceptAction": {"@id": "schema:AcceptAction"},
        "Accommodation": {"@id": "schema:Accommodation"},
        "AccountingService": {"@id": "schema:AccountingService"},
        "AchieveAction": {"@id": "schema:AchieveAction"},
        "Action": {"@id": "schema:Action"},
        "ActionAccessSpecification": {"@id": "schema:ActionAccessSpecification"},
        "ActionStatusType": {"@id": "schema:ActionStatusType"},
        "ActivateAction": {"@id": "schema:ActivateAction"},
        "ActiveActionStatus": {"@id": "schema:ActiveActionStatus"},
        "ActiveNotRecruiting": {"@id": "schema:ActiveNotRecruiting"},
        "AddAction": {"@id": "schema:AddAction"},
        "AdministrativeArea": {"@id": "schema:AdministrativeArea"},
        "AdultEntertainment": {"@id": "schema:AdultEntertainment"},
        "AdvertiserContentArticle": {"@id": "schema:AdvertiserContentArticle"},
        "AerobicActivity": {"@id": "schema:AerobicActivity"},
        "AggregateOffer": {"@id": "schema:AggregateOffer"},
        "AggregateRating": {"@id": "schema:AggregateRating"},
        "AgreeAction": {"@id": "schema:AgreeAction"},
        "Airline": {"@id": "schema:Airline"},
        "Airport": {"@id": "schema:Airport"},
        "AlbumRelease": {"@id": "schema:AlbumRelease"},
        "AlignmentObject": {"@id": "schema:AlignmentObject"},
        "AllWheelDriveConfiguration": {"@id": "schema:AllWheelDriveConfiguration"},
        "AllocateAction": {"@id": "schema:AllocateAction"},
        "AmusementPark": {"@id": "schema:AmusementPark"},
        "AnaerobicActivity": {"@id": "schema:AnaerobicActivity"},
        "AnalysisNewsArticle": {"@id": "schema:AnalysisNewsArticle"},
        "AnatomicalStructure": {"@id": "schema:AnatomicalStructure"},
        "AnatomicalSystem": {"@id": "schema:AnatomicalSystem"},
        "Anesthesia": {"@id": "schema:Anesthesia"},
        "AnimalShelter": {"@id": "schema:AnimalShelter"},
        "Answer": {"@id": "schema:Answer"},
        "Apartment": {"@id": "schema:Apartment"},
        "ApartmentComplex": {"@id": "schema:ApartmentComplex"},
        "Appearance": {"@id": "schema:Appearance"},
        "AppendAction": {"@id": "schema:AppendAction"},
        "ApplyAction": {"@id": "schema:ApplyAction"},
        "ApprovedIndication": {"@id": "schema:ApprovedIndication"},
        "Aquarium": {"@id": "schema:Aquarium"},
        "ArchiveComponent": {"@id": "schema:ArchiveComponent"},
        "ArchiveOrganization": {"@id": "schema:ArchiveOrganization"},
        "ArriveAction": {"@id": "schema:ArriveAction"},
        "ArtGallery": {"@id": "schema:ArtGallery"},
        "Artery": {"@id": "schema:Artery"},
        "Article": {"@id": "schema:Article"},
        "AskAction": {"@id": "schema:AskAction"},
        "AskPublicNewsArticle": {"@id": "schema:AskPublicNewsArticle"},
        "AssessAction": {"@id": "schema:AssessAction"},
        "AssignAction": {"@id": "schema:AssignAction"},
        "Atlas": {"@id": "schema:Atlas"},
        "Attorney": {"@id": "schema:Attorney"},
        "Audience": {"@id": "schema:Audience"},
        "AudioObject": {"@id": "schema:AudioObject"},
        "Audiobook": {"@id": "schema:Audiobook"},
        "AudiobookFormat": {"@id": "schema:AudiobookFormat"},
        "AuthenticContent": {"@id": "schema:AuthenticContent"},
        "AuthoritativeLegalValue": {"@id": "schema:AuthoritativeLegalValue"},
        "AuthorizeAction": {"@id": "schema:AuthorizeAction"},
        "AutoBodyShop": {"@id": "schema:AutoBodyShop"},
        "AutoDealer": {"@id": "schema:AutoDealer"},
        "AutoPartsStore": {"@id": "schema:AutoPartsStore"},
        "AutoRental": {"@id": "schema:AutoRental"},
        "AutoRepair": {"@id": "schema:AutoRepair"},
        "AutoWash": {"@id": "schema:AutoWash"},
        "AutomatedTeller": {"@id": "schema:AutomatedTeller"},
        "AutomotiveBusiness": {"@id": "schema:AutomotiveBusiness"},
        "Ayurvedic": {"@id": "schema:Ayurvedic"},
        "BackgroundNewsArticle": {"@id": "schema:BackgroundNewsArticle"},
        "Bacteria": {"@id": "schema:Bacteria"},
        "Bakery": {"@id": "schema:Bakery"},
        "Balance": {"@id": "schema:Balance"},
        "BankAccount": {"@id": "schema:BankAccount"},
        "BankOrCreditUnion": {"@id": "schema:BankOrCreditUnion"},
        "BarOrPub": {"@id": "schema:BarOrPub"},
        "Barcode": {"@id": "schema:Barcode"},
        "Beach": {"@id": "schema:Beach"},
        "BeautySalon": {"@id": "schema:BeautySalon"},
        "BedAndBreakfast": {"@id": "schema:BedAndBreakfast"},
        "BedDetails": {"@id": "schema:BedDetails"},
        "BedType": {"@id": "schema:BedType"},
        "BefriendAction": {"@id": "schema:BefriendAction"},
        "BenefitsHealthAspect": {"@id": "schema:BenefitsHealthAspect"},
        "BikeStore": {"@id": "schema:BikeStore"},
        "Blog": {"@id": "schema:Blog"},
        "BlogPosting": {"@id": "schema:BlogPosting"},
        "BloodTest": {"@id": "schema:BloodTest"},
        "BoardingPolicyType": {"@id": "schema:BoardingPolicyType"},
        "BodyOfWater": {"@id": "schema:BodyOfWater"},
        "Bone": {"@id": "schema:Bone"},
        "Book": {"@id": "schema:Book"},
        "BookFormatType": {"@id": "schema:BookFormatType"},
        "BookSeries": {"@id": "schema:BookSeries"},
        "BookStore": {"@id": "schema:BookStore"},
        "BookmarkAction": {"@id": "schema:BookmarkAction"},
        "Boolean": {"@id": "schema:Boolean"},
        "BorrowAction": {"@id": "schema:BorrowAction"},
        "BowlingAlley": {"@id": "schema:BowlingAlley"},
        "BrainStructure": {"@id": "schema:BrainStructure"},
        "Brand": {"@id": "schema:Brand"},
        "BreadcrumbList": {"@id": "schema:BreadcrumbList"},
        "Brewery": {"@id": "schema:Brewery"},
        "Bridge": {"@id": "schema:Bridge"},
        "BroadcastChannel": {"@id": "schema:BroadcastChannel"},
        "BroadcastEvent": {"@id": "schema:BroadcastEvent"},
        "BroadcastFrequencySpecification": {
            "@id": "schema:BroadcastFrequencySpecification"
        },
        "BroadcastRelease": {"@id": "schema:BroadcastRelease"},
        "BroadcastService": {"@id": "schema:BroadcastService"},
        "BrokerageAccount": {"@id": "schema:BrokerageAccount"},
        "BuddhistTemple": {"@id": "schema:BuddhistTemple"},
        "BusOrCoach": {"@id": "schema:BusOrCoach"},
        "BusReservation": {"@id": "schema:BusReservation"},
        "BusStation": {"@id": "schema:BusStation"},
        "BusStop": {"@id": "schema:BusStop"},
        "BusTrip": {"@id": "schema:BusTrip"},
        "BusinessAudience": {"@id": "schema:BusinessAudience"},
        "BusinessEntityType": {"@id": "schema:BusinessEntityType"},
        "BusinessEvent": {"@id": "schema:BusinessEvent"},
        "BusinessFunction": {"@id": "schema:BusinessFunction"},
        "BuyAction": {"@id": "schema:BuyAction"},
        "CDFormat": {"@id": "schema:CDFormat"},
        "CT": {"@id": "schema:CT"},
        "CableOrSatelliteService": {"@id": "schema:CableOrSatelliteService"},
        "CafeOrCoffeeShop": {"@id": "schema:CafeOrCoffeeShop"},
        "Campground": {"@id": "schema:Campground"},
        "CampingPitch": {"@id": "schema:CampingPitch"},
        "Canal": {"@id": "schema:Canal"},
        "CancelAction": {"@id": "schema:CancelAction"},
        "Car": {"@id": "schema:Car"},
        "CarUsageType": {"@id": "schema:CarUsageType"},
        "Cardiovascular": {"@id": "schema:Cardiovascular"},
        "CardiovascularExam": {"@id": "schema:CardiovascularExam"},
        "CaseSeries": {"@id": "schema:CaseSeries"},
        "Casino": {"@id": "schema:Casino"},
        "CassetteFormat": {"@id": "schema:CassetteFormat"},
        "CategoryCode": {"@id": "schema:CategoryCode"},
        "CategoryCodeSet": {"@id": "schema:CategoryCodeSet"},
        "CatholicChurch": {"@id": "schema:CatholicChurch"},
        "CausesHealthAspect": {"@id": "schema:CausesHealthAspect"},
        "Cemetery": {"@id": "schema:Cemetery"},
        "Chapter": {"@id": "schema:Chapter"},
        "CheckAction": {"@id": "schema:CheckAction"},
        "CheckInAction": {"@id": "schema:CheckInAction"},
        "CheckOutAction": {"@id": "schema:CheckOutAction"},
        "CheckoutPage": {"@id": "schema:CheckoutPage"},
        "ChildCare": {"@id": "schema:ChildCare"},
        "ChildrensEvent": {"@id": "schema:ChildrensEvent"},
        "Chiropractic": {"@id": "schema:Chiropractic"},
        "ChooseAction": {"@id": "schema:ChooseAction"},
        "Church": {"@id": "schema:Church"},
        "City": {"@id": "schema:City"},
        "CityHall": {"@id": "schema:CityHall"},
        "CivicStructure": {"@id": "schema:CivicStructure"},
        "Claim": {"@id": "schema:Claim"},
        "ClaimReview": {"@id": "schema:ClaimReview"},
        "Class": {"@id": "schema:Class"},
        "Clinician": {"@id": "schema:Clinician"},
        "Clip": {"@id": "schema:Clip"},
        "ClothingStore": {"@id": "schema:ClothingStore"},
        "CoOp": {"@id": "schema:CoOp"},
        "Code": {"@id": "schema:Code"},
        "CohortStudy": {"@id": "schema:CohortStudy"},
        "Collection": {"@id": "schema:Collection"},
        "CollectionPage": {"@id": "schema:CollectionPage"},
        "CollegeOrUniversity": {"@id": "schema:CollegeOrUniversity"},
        "ComedyClub": {"@id": "schema:ComedyClub"},
        "ComedyEvent": {"@id": "schema:ComedyEvent"},
        "ComicCoverArt": {"@id": "schema:ComicCoverArt"},
        "ComicIssue": {"@id": "schema:ComicIssue"},
        "ComicSeries": {"@id": "schema:ComicSeries"},
        "ComicStory": {"@id": "schema:ComicStory"},
        "Comment": {"@id": "schema:Comment"},
        "CommentAction": {"@id": "schema:CommentAction"},
        "CommentPermission": {"@id": "schema:CommentPermission"},
        "CommunicateAction": {"@id": "schema:CommunicateAction"},
        "CommunityHealth": {"@id": "schema:CommunityHealth"},
        "CompilationAlbum": {"@id": "schema:CompilationAlbum"},
        "CompleteDataFeed": {"@id": "schema:CompleteDataFeed"},
        "Completed": {"@id": "schema:Completed"},
        "CompletedActionStatus": {"@id": "schema:CompletedActionStatus"},
        "CompoundPriceSpecification": {"@id": "schema:CompoundPriceSpecification"},
        "ComputerLanguage": {"@id": "schema:ComputerLanguage"},
        "ComputerStore": {"@id": "schema:ComputerStore"},
        "ConfirmAction": {"@id": "schema:ConfirmAction"},
        "Consortium": {"@id": "schema:Consortium"},
        "ConsumeAction": {"@id": "schema:ConsumeAction"},
        "ContactPage": {"@id": "schema:ContactPage"},
        "ContactPoint": {"@id": "schema:ContactPoint"},
        "ContactPointOption": {"@id": "schema:ContactPointOption"},
        "ContagiousnessHealthAspect": {"@id": "schema:ContagiousnessHealthAspect"},
        "Continent": {"@id": "schema:Continent"},
        "ControlAction": {"@id": "schema:ControlAction"},
        "ConvenienceStore": {"@id": "schema:ConvenienceStore"},
        "Conversation": {"@id": "schema:Conversation"},
        "CookAction": {"@id": "schema:CookAction"},
        "Corporation": {"@id": "schema:Corporation"},
        "CorrectionComment": {"@id": "schema:CorrectionComment"},
        "Country": {"@id": "schema:Country"},
        "Course": {"@id": "schema:Course"},
        "CourseInstance": {"@id": "schema:CourseInstance"},
        "Courthouse": {"@id": "schema:Courthouse"},
        "CoverArt": {"@id": "schema:CoverArt"},
        "CovidTestingFacility": {"@id": "schema:CovidTestingFacility"},
        "CreateAction": {"@id": "schema:CreateAction"},
        "CreativeWork": {"@id": "schema:CreativeWork"},
        "CreativeWorkSeason": {"@id": "schema:CreativeWorkSeason"},
        "CreativeWorkSeries": {"@id": "schema:CreativeWorkSeries"},
        "CreditCard": {"@id": "schema:CreditCard"},
        "Crematorium": {"@id": "schema:Crematorium"},
        "CriticReview": {"@id": "schema:CriticReview"},
        "CrossSectional": {"@id": "schema:CrossSectional"},
        "CssSelectorType": {"@id": "schema:CssSelectorType"},
        "CurrencyConversionService": {"@id": "schema:CurrencyConversionService"},
        "DDxElement": {"@id": "schema:DDxElement"},
        "DJMixAlbum": {"@id": "schema:DJMixAlbum"},
        "DVDFormat": {"@id": "schema:DVDFormat"},
        "DamagedCondition": {"@id": "schema:DamagedCondition"},
        "DanceEvent": {"@id": "schema:DanceEvent"},
        "DanceGroup": {"@id": "schema:DanceGroup"},
        "DataCatalog": {"@id": "schema:DataCatalog"},
        "DataDownload": {"@id": "schema:DataDownload"},
        "DataFeed": {"@id": "schema:DataFeed"},
        "DataFeedItem": {"@id": "schema:DataFeedItem"},
        "DataType": {"@id": "schema:DataType"},
        "Dataset": {"@id": "schema:Dataset"},
        "Date": {"@id": "schema:Date"},
        "DateTime": {"@id": "schema:DateTime"},
        "DatedMoneySpecification": {"@id": "schema:DatedMoneySpecification"},
        "DayOfWeek": {"@id": "schema:DayOfWeek"},
        "DaySpa": {"@id": "schema:DaySpa"},
        "DeactivateAction": {"@id": "schema:DeactivateAction"},
        "DefenceEstablishment": {"@id": "schema:DefenceEstablishment"},
        "DefinedTerm": {"@id": "schema:DefinedTerm"},
        "DefinedTermSet": {"@id": "schema:DefinedTermSet"},
        "DefinitiveLegalValue": {"@id": "schema:DefinitiveLegalValue"},
        "DeleteAction": {"@id": "schema:DeleteAction"},
        "DeliveryChargeSpecification": {"@id": "schema:DeliveryChargeSpecification"},
        "DeliveryEvent": {"@id": "schema:DeliveryEvent"},
        "DeliveryMethod": {"@id": "schema:DeliveryMethod"},
        "Demand": {"@id": "schema:Demand"},
        "DemoAlbum": {"@id": "schema:DemoAlbum"},
        "Dentist": {"@id": "schema:Dentist"},
        "Dentistry": {"@id": "schema:Dentistry"},
        "DepartAction": {"@id": "schema:DepartAction"},
        "DepartmentStore": {"@id": "schema:DepartmentStore"},
        "DepositAccount": {"@id": "schema:DepositAccount"},
        "Dermatologic": {"@id": "schema:Dermatologic"},
        "Dermatology": {"@id": "schema:Dermatology"},
        "DiabeticDiet": {"@id": "schema:DiabeticDiet"},
        "Diagnostic": {"@id": "schema:Diagnostic"},
        "DiagnosticLab": {"@id": "schema:DiagnosticLab"},
        "DiagnosticProcedure": {"@id": "schema:DiagnosticProcedure"},
        "Diet": {"@id": "schema:Diet"},
        "DietNutrition": {"@id": "schema:DietNutrition"},
        "DietarySupplement": {"@id": "schema:DietarySupplement"},
        "DigitalAudioTapeFormat": {"@id": "schema:DigitalAudioTapeFormat"},
        "DigitalDocument": {"@id": "schema:DigitalDocument"},
        "DigitalDocumentPermission": {"@id": "schema:DigitalDocumentPermission"},
        "DigitalDocumentPermissionType": {"@id": "schema:DigitalDocumentPermissionType"},
        "DigitalFormat": {"@id": "schema:DigitalFormat"},
        "DisagreeAction": {"@id": "schema:DisagreeAction"},
        "Discontinued": {"@id": "schema:Discontinued"},
        "DiscoverAction": {"@id": "schema:DiscoverAction"},
        "DiscussionForumPosting": {"@id": "schema:DiscussionForumPosting"},
        "DislikeAction": {"@id": "schema:DislikeAction"},
        "Distance": {"@id": "schema:Distance"},
        "Distillery": {"@id": "schema:Distillery"},
        "DonateAction": {"@id": "schema:DonateAction"},
        "DoseSchedule": {"@id": "schema:DoseSchedule"},
        "DoubleBlindedTrial": {"@id": "schema:DoubleBlindedTrial"},
        "DownloadAction": {"@id": "schema:DownloadAction"},
        "DrawAction": {"@id": "schema:DrawAction"},
        "Drawing": {"@id": "schema:Drawing"},
        "DrinkAction": {"@id": "schema:DrinkAction"},
        "DriveWheelConfigurationValue": {"@id": "schema:DriveWheelConfigurationValue"},
        "DrivingSchoolVehicleUsage": {"@id": "schema:DrivingSchoolVehicleUsage"},
        "Drug": {"@id": "schema:Drug"},
        "DrugClass": {"@id": "schema:DrugClass"},
        "DrugCost": {"@id": "schema:DrugCost"},
        "DrugCostCategory": {"@id": "schema:DrugCostCategory"},
        "DrugLegalStatus": {"@id": "schema:DrugLegalStatus"},
        "DrugPregnancyCategory": {"@id": "schema:DrugPregnancyCategory"},
        "DrugPrescriptionStatus": {"@id": "schema:DrugPrescriptionStatus"},
        "DrugStrength": {"@id": "schema:DrugStrength"},
        "DryCleaningOrLaundry": {"@id": "schema:DryCleaningOrLaundry"},
        "Duration": {"@id": "schema:Duration"},
        "EBook": {"@id": "schema:EBook"},
        "EPRelease": {"@id": "schema:EPRelease"},
        "Ear": {"@id": "schema:Ear"},
        "EatAction": {"@id": "schema:EatAction"},
        "EducationEvent": {"@id": "schema:EducationEvent"},
        "EducationalAudience": {"@id": "schema:EducationalAudience"},
        "EducationalOccupationalCredential": {
            "@id": "schema:EducationalOccupationalCredential"
        },
        "EducationalOccupationalProgram": {"@id": "schema:EducationalOccupationalProgram"},
        "EducationalOrganization": {"@id": "schema:EducationalOrganization"},
        "Electrician": {"@id": "schema:Electrician"},
        "ElectronicsStore": {"@id": "schema:ElectronicsStore"},
        "ElementarySchool": {"@id": "schema:ElementarySchool"},
        "EmailMessage": {"@id": "schema:EmailMessage"},
        "Embassy": {"@id": "schema:Embassy"},
        "Emergency": {"@id": "schema:Emergency"},
        "EmergencyService": {"@id": "schema:EmergencyService"},
        "EmployeeRole": {"@id": "schema:EmployeeRole"},
        "EmployerAggregateRating": {"@id": "schema:EmployerAggregateRating"},
        "EmployerReview": {"@id": "schema:EmployerReview"},
        "EmploymentAgency": {"@id": "schema:EmploymentAgency"},
        "Endocrine": {"@id": "schema:Endocrine"},
        "EndorseAction": {"@id": "schema:EndorseAction"},
        "EndorsementRating": {"@id": "schema:EndorsementRating"},
        "Energy": {"@id": "schema:Energy"},
        "EngineSpecification": {"@id": "schema:EngineSpecification"},
        "EnrollingByInvitation": {"@id": "schema:EnrollingByInvitation"},
        "EntertainmentBusiness": {"@id": "schema:EntertainmentBusiness"},
        "EntryPoint": {"@id": "schema:EntryPoint"},
        "Enumeration": {"@id": "schema:Enumeration"},
        "Episode": {"@id": "schema:Episode"},
        "Event": {"@id": "schema:Event"},
        "EventAttendanceModeEnumeration": {"@id": "schema:EventAttendanceModeEnumeration"},
        "EventCancelled": {"@id": "schema:EventCancelled"},
        "EventMovedOnline": {"@id": "schema:EventMovedOnline"},
        "EventPostponed": {"@id": "schema:EventPostponed"},
        "EventRescheduled": {"@id": "schema:EventRescheduled"},
        "EventReservation": {"@id": "schema:EventReservation"},
        "EventScheduled": {"@id": "schema:EventScheduled"},
        "EventSeries": {"@id": "schema:EventSeries"},
        "EventStatusType": {"@id": "schema:EventStatusType"},
        "EventVenue": {"@id": "schema:EventVenue"},
        "EvidenceLevelA": {"@id": "schema:EvidenceLevelA"},
        "EvidenceLevelB": {"@id": "schema:EvidenceLevelB"},
        "EvidenceLevelC": {"@id": "schema:EvidenceLevelC"},
        "ExchangeRateSpecification": {"@id": "schema:ExchangeRateSpecification"},
        "ExchangeRefund": {"@id": "schema:ExchangeRefund"},
        "ExerciseAction": {"@id": "schema:ExerciseAction"},
        "ExerciseGym": {"@id": "schema:ExerciseGym"},
        "ExercisePlan": {"@id": "schema:ExercisePlan"},
        "ExhibitionEvent": {"@id": "schema:ExhibitionEvent"},
        "Eye": {"@id": "schema:Eye"},
        "FAQPage": {"@id": "schema:FAQPage"},
        "FDAcategoryA": {"@id": "schema:FDAcategoryA"},
        "FDAcategoryB": {"@id": "schema:FDAcategoryB"},
        "FDAcategoryC": {"@id": "schema:FDAcategoryC"},
        "FDAcategoryD": {"@id": "schema:FDAcategoryD"},
        "FDAcategoryX": {"@id": "schema:FDAcategoryX"},
        "FDAnotEvaluated": {"@id": "schema:FDAnotEvaluated"},
        "FMRadioChannel": {"@id": "schema:FMRadioChannel"},
        "FailedActionStatus": {"@id": "schema:FailedActionStatus"},
        "False": {"@id": "schema:False"},
        "FastFoodRestaurant": {"@id": "schema:FastFoodRestaurant"},
        "Female": {"@id": "schema:Female"},
        "Festival": {"@id": "schema:Festival"},
        "FilmAction": {"@id": "schema:FilmAction"},
        "FinancialProduct": {"@id": "schema:FinancialProduct"},
        "FinancialService": {"@id": "schema:FinancialService"},
        "FindAction": {"@id": "schema:FindAction"},
        "FireStation": {"@id": "schema:FireStation"},
        "Flexibility": {"@id": "schema:Flexibility"},
        "Flight": {"@id": "schema:Flight"},
        "FlightReservation": {"@id": "schema:FlightReservation"},
        "Float": {"@id": "schema:Float"},
        "FloorPlan": {"@id": "schema:FloorPlan"},
        "Florist": {"@id": "schema:Florist"},
        "FollowAction": {"@id": "schema:FollowAction"},
        "FoodEstablishment": {"@id": "schema:FoodEstablishment"},
        "FoodEstablishmentReservation": {"@id": "schema:FoodEstablishmentReservation"},
        "FoodEvent": {"@id": "schema:FoodEvent"},
        "FoodService": {"@id": "schema:FoodService"},
        "FourWheelDriveConfiguration": {"@id": "schema:FourWheelDriveConfiguration"},
        "Friday": {"@id": "schema:Friday"},
        "FrontWheelDriveConfiguration": {"@id": "schema:FrontWheelDriveConfiguration"},
        "FullRefund": {"@id": "schema:FullRefund"},
        "FundingAgency": {"@id": "schema:FundingAgency"},
        "FundingScheme": {"@id": "schema:FundingScheme"},
        "Fungus": {"@id": "schema:Fungus"},
        "FurnitureStore": {"@id": "schema:FurnitureStore"},
        "Game": {"@id": "schema:Game"},
        "GamePlayMode": {"@id": "schema:GamePlayMode"},
        "GameServer": {"@id": "schema:GameServer"},
        "GameServerStatus": {"@id": "schema:GameServerStatus"},
        "GardenStore": {"@id": "schema:GardenStore"},
        "GasStation": {"@id": "schema:GasStation"},
        "Gastroenterologic": {"@id": "schema:Gastroenterologic"},
        "GatedResidenceCommunity": {"@id": "schema:GatedResidenceCommunity"},
        "GenderType": {"@id": "schema:GenderType"},
        "GeneralContractor": {"@id": "schema:GeneralContractor"},
        "Genetic": {"@id": "schema:Genetic"},
        "Genitourinary": {"@id": "schema:Genitourinary"},
        "GeoCircle": {"@id": "schema:GeoCircle"},
        "GeoCoordinates": {"@id": "schema:GeoCoordinates"},
        "GeoShape": {"@id": "schema:GeoShape"},
        "GeospatialGeometry": {"@id": "schema:GeospatialGeometry"},
        "Geriatric": {"@id": "schema:Geriatric"},
        "GiveAction": {"@id": "schema:GiveAction"},
        "GlutenFreeDiet": {"@id": "schema:GlutenFreeDiet"},
        "GolfCourse": {"@id": "schema:GolfCourse"},
        "GovernmentBuilding": {"@id": "schema:GovernmentBuilding"},
        "GovernmentOffice": {"@id": "schema:GovernmentOffice"},
        "GovernmentOrganization": {"@id": "schema:GovernmentOrganization"},
        "GovernmentPermit": {"@id": "schema:GovernmentPermit"},
        "GovernmentService": {"@id": "schema:GovernmentService"},
        "Grant": {"@id": "schema:Grant"},
        "GraphicNovel": {"@id": "schema:GraphicNovel"},
        "GroceryStore": {"@id": "schema:GroceryStore"},
        "GroupBoardingPolicy": {"@id": "schema:GroupBoardingPolicy"},
        "Guide": {"@id": "schema:Guide"},
        "Gynecologic": {"@id": "schema:Gynecologic"},
        "HVACBusiness": {"@id": "schema:HVACBusiness"},
        "HairSalon": {"@id": "schema:HairSalon"},
        "HalalDiet": {"@id": "schema:HalalDiet"},
        "Hardcover": {"@id": "schema:Hardcover"},
        "HardwareStore": {"@id": "schema:HardwareStore"},
        "Head": {"@id": "schema:Head"},
        "HealthAndBeautyBusiness": {"@id": "schema:HealthAndBeautyBusiness"},
        "HealthAspectEnumeration": {"@id": "schema:HealthAspectEnumeration"},
        "HealthClub": {"@id": "schema:HealthClub"},
        "HealthInsurancePlan": {"@id": "schema:HealthInsurancePlan"},
        "HealthPlanCostSharingSpecification": {
            "@id": "schema:HealthPlanCostSharingSpecification"
        },
        "HealthPlanFormulary": {"@id": "schema:HealthPlanFormulary"},
        "HealthPlanNetwork": {"@id": "schema:HealthPlanNetwork"},
        "HealthTopicContent": {"@id": "schema:HealthTopicContent"},
        "HearingImpairedSupported": {"@id": "schema:HearingImpairedSupported"},
        "Hematologic": {"@id": "schema:Hematologic"},
        "HighSchool": {"@id": "schema:HighSchool"},
        "HinduDiet": {"@id": "schema:HinduDiet"},
        "HinduTemple": {"@id": "schema:HinduTemple"},
        "HobbyShop": {"@id": "schema:HobbyShop"},
        "HomeAndConstructionBusiness": {"@id": "schema:HomeAndConstructionBusiness"},
        "HomeGoodsStore": {"@id": "schema:HomeGoodsStore"},
        "Homeopathic": {"@id": "schema:Homeopathic"},
        "Hospital": {"@id": "schema:Hospital"},
        "Hostel": {"@id": "schema:Hostel"},
        "Hotel": {"@id": "schema:Hotel"},
        "HotelRoom": {"@id": "schema:HotelRoom"},
        "House": {"@id": "schema:House"},
        "HousePainter": {"@id": "schema:HousePainter"},
        "HowOrWhereHealthAspect": {"@id": "schema:HowOrWhereHealthAspect"},
        "HowTo": {"@id": "schema:HowTo"},
        "HowToDirection": {"@id": "schema:HowToDirection"},
        "HowToItem": {"@id": "schema:HowToItem"},
        "HowToSection": {"@id": "schema:HowToSection"},
        "HowToStep": {"@id": "schema:HowToStep"},
        "HowToSupply": {"@id": "schema:HowToSupply"},
        "HowToTip": {"@id": "schema:HowToTip"},
        "HowToTool": {"@id": "schema:HowToTool"},
        "IceCreamShop": {"@id": "schema:IceCreamShop"},
        "IgnoreAction": {"@id": "schema:IgnoreAction"},
        "ImageGallery": {"@id": "schema:ImageGallery"},
        "ImageObject": {"@id": "schema:ImageObject"},
        "ImagingTest": {"@id": "schema:ImagingTest"},
        "InForce": {"@id": "schema:InForce"},
        "InStock": {"@id": "schema:InStock"},
        "InStoreOnly": {"@id": "schema:InStoreOnly"},
        "IndividualProduct": {"@id": "schema:IndividualProduct"},
        "Infectious": {"@id": "schema:Infectious"},
        "InfectiousAgentClass": {"@id": "schema:InfectiousAgentClass"},
        "InfectiousDisease": {"@id": "schema:InfectiousDisease"},
        "InformAction": {"@id": "schema:InformAction"},
        "InsertAction": {"@id": "schema:InsertAction"},
        "InstallAction": {"@id": "schema:InstallAction"},
        "InsuranceAgency": {"@id": "schema:InsuranceAgency"},
        "Intangible": {"@id": "schema:Intangible"},
        "Integer": {"@id": "schema:Integer"},
        "InteractAction": {"@id": "schema:InteractAction"},
        "InteractionCounter": {"@id": "schema:InteractionCounter"},
        "InternationalTrial": {"@id": "schema:InternationalTrial"},
        "InternetCafe": {"@id": "schema:InternetCafe"},
        "InvestmentFund": {"@id": "schema:InvestmentFund"},
        "InvestmentOrDeposit": {"@id": "schema:InvestmentOrDeposit"},
        "InviteAction": {"@id": "schema:InviteAction"},
        "Invoice": {"@id": "schema:Invoice"},
        "ItemAvailability": {"@id": "schema:ItemAvailability"},
        "ItemList": {"@id": "schema:ItemList"},
        "ItemListOrderAscending": {"@id": "schema:ItemListOrderAscending"},
        "ItemListOrderDescending": {"@id": "schema:ItemListOrderDescending"},
        "ItemListOrderType": {"@id": "schema:ItemListOrderType"},
        "ItemListUnordered": {"@id": "schema:ItemListUnordered"},
        "ItemPage": {"@id": "schema:ItemPage"},
        "JewelryStore": {"@id": "schema:JewelryStore"},
        "JobPosting": {"@id": "schema:JobPosting"},
        "JoinAction": {"@id": "schema:JoinAction"},
        "Joint": {"@id": "schema:Joint"},
        "KosherDiet": {"@id": "schema:KosherDiet"},
        "LaboratoryScience": {"@id": "schema:LaboratoryScience"},
        "LakeBodyOfWater": {"@id": "schema:LakeBodyOfWater"},
        "Landform": {"@id": "schema:Landform"},
        "LandmarksOrHistoricalBuildings": {"@id": "schema:LandmarksOrHistoricalBuildings"},
        "Language": {"@id": "schema:Language"},
        "LaserDiscFormat": {"@id": "schema:LaserDiscFormat"},
        "LeaveAction": {"@id": "schema:LeaveAction"},
        "LeftHandDriving": {"@id": "schema:LeftHandDriving"},
        "LegalForceStatus": {"@id": "schema:LegalForceStatus"},
        "LegalService": {"@id": "schema:LegalService"},
        "LegalValueLevel": {"@id": "schema:LegalValueLevel"},
        "Legislation": {"@id": "schema:Legislation"},
        "LegislationObject": {"@id": "schema:LegislationObject"},
        "LegislativeBuilding": {"@id": "schema:LegislativeBuilding"},
        "LeisureTimeActivity": {"@id": "schema:LeisureTimeActivity"},
        "LendAction": {"@id": "schema:LendAction"},
        "Library": {"@id": "schema:Library"},
        "LibrarySystem": {"@id": "schema:LibrarySystem"},
        "LifestyleModification": {"@id": "schema:LifestyleModification"},
        "Ligament": {"@id": "schema:Ligament"},
        "LikeAction": {"@id": "schema:LikeAction"},
        "LimitedAvailability": {"@id": "schema:LimitedAvailability"},
        "LinkRole": {"@id": "schema:LinkRole"},
        "LiquorStore": {"@id": "schema:LiquorStore"},
        "ListItem": {"@id": "schema:ListItem"},
        "ListenAction": {"@id": "schema:ListenAction"},
        "LiteraryEvent": {"@id": "schema:LiteraryEvent"},
        "LiveAlbum": {"@id": "schema:LiveAlbum"},
        "LiveBlogPosting": {"@id": "schema:LiveBlogPosting"},
        "LivingWithHealthAspect": {"@id": "schema:LivingWithHealthAspect"},
        "LoanOrCredit": {"@id": "schema:LoanOrCredit"},
        "LocalBusiness": {"@id": "schema:LocalBusiness"},
        "LocationFeatureSpecification": {"@id": "schema:LocationFeatureSpecification"},
        "LockerDelivery": {"@id": "schema:LockerDelivery"},
        "Locksmith": {"@id": "schema:Locksmith"},
        "LodgingBusiness": {"@id": "schema:LodgingBusiness"},
        "LodgingReservation": {"@id": "schema:LodgingReservation"},
        "Longitudinal": {"@id": "schema:Longitudinal"},
        "LoseAction": {"@id": "schema:LoseAction"},
        "LowCalorieDiet": {"@id": "schema:LowCalorieDiet"},
        "LowFatDiet": {"@id": "schema:LowFatDiet"},
        "LowLactoseDiet": {"@id": "schema:LowLactoseDiet"},
        "LowSaltDiet": {"@id": "schema:LowSaltDiet"},
        "Lung": {"@id": "schema:Lung"},
        "LymphaticVessel": {"@id": "schema:LymphaticVessel"},
        "MRI": {"@id": "schema:MRI"},
        "Male": {"@id": "schema:Male"},
        "Manuscript": {"@id": "schema:Manuscript"},
        "Map": {"@id": "schema:Map"},
        "MapCategoryType": {"@id": "schema:MapCategoryType"},
        "MarryAction": {"@id": "schema:MarryAction"},
        "Mass": {"@id": "schema:Mass"},
        "MaximumDoseSchedule": {"@id": "schema:MaximumDoseSchedule"},
        "MayTreatHealthAspect": {"@id": "schema:MayTreatHealthAspect"},
        "MediaGallery": {"@id": "schema:MediaGallery"},
        "MediaManipulationRatingEnumeration": {
            "@id": "schema:MediaManipulationRatingEnumeration"
        },
        "MediaObject": {"@id": "schema:MediaObject"},
        "MediaReview": {"@id": "schema:MediaReview"},
        "MediaSubscription": {"@id": "schema:MediaSubscription"},
        "MedicalAudience": {"@id": "schema:MedicalAudience"},
        "MedicalBusiness": {"@id": "schema:MedicalBusiness"},
        "MedicalCause": {"@id": "schema:MedicalCause"},
        "MedicalClinic": {"@id": "schema:MedicalClinic"},
        "MedicalCode": {"@id": "schema:MedicalCode"},
        "MedicalCondition": {"@id": "schema:MedicalCondition"},
        "MedicalConditionStage": {"@id": "schema:MedicalConditionStage"},
        "MedicalContraindication": {"@id": "schema:MedicalContraindication"},
        "MedicalDevice": {"@id": "schema:MedicalDevice"},
        "MedicalDevicePurpose": {"@id": "schema:MedicalDevicePurpose"},
        "MedicalEntity": {"@id": "schema:MedicalEntity"},
        "MedicalEnumeration": {"@id": "schema:MedicalEnumeration"},
        "MedicalEvidenceLevel": {"@id": "schema:MedicalEvidenceLevel"},
        "MedicalGuideline": {"@id": "schema:MedicalGuideline"},
        "MedicalGuidelineContraindication": {
            "@id": "schema:MedicalGuidelineContraindication"
        },
        "MedicalGuidelineRecommendation": {"@id": "schema:MedicalGuidelineRecommendation"},
        "MedicalImagingTechnique": {"@id": "schema:MedicalImagingTechnique"},
        "MedicalIndication": {"@id": "schema:MedicalIndication"},
        "MedicalIntangible": {"@id": "schema:MedicalIntangible"},
        "MedicalObservationalStudy": {"@id": "schema:MedicalObservationalStudy"},
        "MedicalObservationalStudyDesign": {
            "@id": "schema:MedicalObservationalStudyDesign"
        },
        "MedicalOrganization": {"@id": "schema:MedicalOrganization"},
        "MedicalProcedure": {"@id": "schema:MedicalProcedure"},
        "MedicalProcedureType": {"@id": "schema:MedicalProcedureType"},
        "MedicalResearcher": {"@id": "schema:MedicalResearcher"},
        "MedicalRiskCalculator": {"@id": "schema:MedicalRiskCalculator"},
        "MedicalRiskEstimator": {"@id": "schema:MedicalRiskEstimator"},
        "MedicalRiskFactor": {"@id": "schema:MedicalRiskFactor"},
        "MedicalRiskScore": {"@id": "schema:MedicalRiskScore"},
        "MedicalScholarlyArticle": {"@id": "schema:MedicalScholarlyArticle"},
        "MedicalSign": {"@id": "schema:MedicalSign"},
        "MedicalSignOrSymptom": {"@id": "schema:MedicalSignOrSymptom"},
        "MedicalSpecialty": {"@id": "schema:MedicalSpecialty"},
        "MedicalStudy": {"@id": "schema:MedicalStudy"},
        "MedicalStudyStatus": {"@id": "schema:MedicalStudyStatus"},
        "MedicalSymptom": {"@id": "schema:MedicalSymptom"},
        "MedicalTest": {"@id": "schema:MedicalTest"},
        "MedicalTestPanel": {"@id": "schema:MedicalTestPanel"},
        "MedicalTherapy": {"@id": "schema:MedicalTherapy"},
        "MedicalTrial": {"@id": "schema:MedicalTrial"},
        "MedicalTrialDesign": {"@id": "schema:MedicalTrialDesign"},
        "MedicalWebPage": {"@id": "schema:MedicalWebPage"},
        "MedicineSystem": {"@id": "schema:MedicineSystem"},
        "MeetingRoom": {"@id": "schema:MeetingRoom"},
        "MensClothingStore": {"@id": "schema:MensClothingStore"},
        "Menu": {"@id": "schema:Menu"},
        "MenuItem": {"@id": "schema:MenuItem"},
        "MenuSection": {"@id": "schema:MenuSection"},
        "MerchantReturnEnumeration": {"@id": "schema:MerchantReturnEnumeration"},
        "MerchantReturnFiniteReturnWindow": {
            "@id": "schema:MerchantReturnFiniteReturnWindow"
        },
        "MerchantReturnNotPermitted": {"@id": "schema:MerchantReturnNotPermitted"},
        "MerchantReturnPolicy": {"@id": "schema:MerchantReturnPolicy"},
        "MerchantReturnUnlimitedWindow": {"@id": "schema:MerchantReturnUnlimitedWindow"},
        "MerchantReturnUnspecified": {"@id": "schema:MerchantReturnUnspecified"},
        "Message": {"@id": "schema:Message"},
        "MiddleSchool": {"@id": "schema:MiddleSchool"},
        "Midwifery": {"@id": "schema:Midwifery"},
        "MisconceptionsHealthAspect": {"@id": "schema:MisconceptionsHealthAspect"},
        "MissingContext": {"@id": "schema:MissingContext"},
        "MixedEventAttendanceMode": {"@id": "schema:MixedEventAttendanceMode"},
        "MixtapeAlbum": {"@id": "schema:MixtapeAlbum"},
        "MobileApplication": {"@id": "schema:MobileApplication"},
        "MobilePhoneStore": {"@id": "schema:MobilePhoneStore"},
        "Monday": {"@id": "schema:Monday"},
        "MonetaryAmount": {"@id": "schema:MonetaryAmount"},
        "MonetaryAmountDistribution": {"@id": "schema:MonetaryAmountDistribution"},
        "MonetaryGrant": {"@id": "schema:MonetaryGrant"},
        "MoneyTransfer": {"@id": "schema:MoneyTransfer"},
        "MortgageLoan": {"@id": "schema:MortgageLoan"},
        "Mosque": {"@id": "schema:Mosque"},
        "Motel": {"@id": "schema:Motel"},
        "Motorcycle": {"@id": "schema:Motorcycle"},
        "MotorcycleDealer": {"@id": "schema:MotorcycleDealer"},
        "MotorcycleRepair": {"@id": "schema:MotorcycleRepair"},
        "MotorizedBicycle": {"@id": "schema:MotorizedBicycle"},
        "Mountain": {"@id": "schema:Mountain"},
        "MoveAction": {"@id": "schema:MoveAction"},
        "Movie": {"@id": "schema:Movie"},
        "MovieClip": {"@id": "schema:MovieClip"},
        "MovieRentalStore": {"@id": "schema:MovieRentalStore"},
        "MovieSeries": {"@id": "schema:MovieSeries"},
        "MovieTheater": {"@id": "schema:MovieTheater"},
        "MovingCompany": {"@id": "schema:MovingCompany"},
        "MultiCenterTrial": {"@id": "schema:MultiCenterTrial"},
        "MultiPlayer": {"@id": "schema:MultiPlayer"},
        "MulticellularParasite": {"@id": "schema:MulticellularParasite"},
        "Muscle": {"@id": "schema:Muscle"},
        "Musculoskeletal": {"@id": "schema:Musculoskeletal"},
        "MusculoskeletalExam": {"@id": "schema:MusculoskeletalExam"},
        "Museum": {"@id": "schema:Museum"},
        "MusicAlbum": {"@id": "schema:MusicAlbum"},
        "MusicAlbumProductionType": {"@id": "schema:MusicAlbumProductionType"},
        "MusicAlbumReleaseType": {"@id": "schema:MusicAlbumReleaseType"},
        "MusicComposition": {"@id": "schema:MusicComposition"},
        "MusicEvent": {"@id": "schema:MusicEvent"},
        "MusicGroup": {"@id": "schema:MusicGroup"},
        "MusicPlaylist": {"@id": "schema:MusicPlaylist"},
        "MusicRecording": {"@id": "schema:MusicRecording"},
        "MusicRelease": {"@id": "schema:MusicRelease"},
        "MusicReleaseFormatType": {"@id": "schema:MusicReleaseFormatType"},
        "MusicStore": {"@id": "schema:MusicStore"},
        "MusicVenue": {"@id": "schema:MusicVenue"},
        "MusicVideoObject": {"@id": "schema:MusicVideoObject"},
        "NGO": {"@id": "schema:NGO"},
        "NailSalon": {"@id": "schema:NailSalon"},
        "Neck": {"@id": "schema:Neck"},
        "Nerve": {"@id": "schema:Nerve"},
        "Neuro": {"@id": "schema:Neuro"},
        "Neurologic": {"@id": "schema:Neurologic"},
        "NewCondition": {"@id": "schema:NewCondition"},
        "NewsArticle": {"@id": "schema:NewsArticle"},
        "NewsMediaOrganization": {"@id": "schema:NewsMediaOrganization"},
        "Newspaper": {"@id": "schema:Newspaper"},
        "NightClub": {"@id": "schema:NightClub"},
        "NoninvasiveProcedure": {"@id": "schema:NoninvasiveProcedure"},
        "Nose": {"@id": "schema:Nose"},
        "NotInForce": {"@id": "schema:NotInForce"},
        "NotYetRecruiting": {"@id": "schema:NotYetRecruiting"},
        "Notary": {"@id": "schema:Notary"},
        "NoteDigitalDocument": {"@id": "schema:NoteDigitalDocument"},
        "Number": {"@id": "schema:Number"},
        "Nursing": {"@id": "schema:Nursing"},
        "NutritionInformation": {"@id": "schema:NutritionInformation"},
        "OTC": {"@id": "schema:OTC"},
        "Observation": {"@id": "schema:Observation"},
        "Observational": {"@id": "schema:Observational"},
        "Obstetric": {"@id": "schema:Obstetric"},
        "Occupation": {"@id": "schema:Occupation"},
        "OccupationalActivity": {"@id": "schema:OccupationalActivity"},
        "OccupationalTherapy": {"@id": "schema:OccupationalTherapy"},
        "OceanBodyOfWater": {"@id": "schema:OceanBodyOfWater"},
        "Offer": {"@id": "schema:Offer"},
        "OfferCatalog": {"@id": "schema:OfferCatalog"},
        "OfferForLease": {"@id": "schema:OfferForLease"},
        "OfferForPurchase": {"@id": "schema:OfferForPurchase"},
        "OfferItemCondition": {"@id": "schema:OfferItemCondition"},
        "OfficeEquipmentStore": {"@id": "schema:OfficeEquipmentStore"},
        "OfficialLegalValue": {"@id": "schema:OfficialLegalValue"},
        "OfflineEventAttendanceMode": {"@id": "schema:OfflineEventAttendanceMode"},
        "OfflinePermanently": {"@id": "schema:OfflinePermanently"},
        "OfflineTemporarily": {"@id": "schema:OfflineTemporarily"},
        "OnDemandEvent": {"@id": "schema:OnDemandEvent"},
        "OnSitePickup": {"@id": "schema:OnSitePickup"},
        "Oncologic": {"@id": "schema:Oncologic"},
        "Online": {"@id": "schema:Online"},
        "OnlineEventAttendanceMode": {"@id": "schema:OnlineEventAttendanceMode"},
        "OnlineFull": {"@id": "schema:OnlineFull"},
        "OnlineOnly": {"@id": "schema:OnlineOnly"},
        "OpenTrial": {"@id": "schema:OpenTrial"},
        "OpeningHoursSpecification": {"@id": "schema:OpeningHoursSpecification"},
        "OpinionNewsArticle": {"@id": "schema:OpinionNewsArticle"},
        "Optician": {"@id": "schema:Optician"},
        "Optometric": {"@id": "schema:Optometric"},
        "Order": {"@id": "schema:Order"},
        "OrderAction": {"@id": "schema:OrderAction"},
        "OrderCancelled": {"@id": "schema:OrderCancelled"},
        "OrderDelivered": {"@id": "schema:OrderDelivered"},
        "OrderInTransit": {"@id": "schema:OrderInTransit"},
        "OrderItem": {"@id": "schema:OrderItem"},
        "OrderPaymentDue": {"@id": "schema:OrderPaymentDue"},
        "OrderPickupAvailable": {"@id": "schema:OrderPickupAvailable"},
        "OrderProblem": {"@id": "schema:OrderProblem"},
        "OrderProcessing": {"@id": "schema:OrderProcessing"},
        "OrderReturned": {"@id": "schema:OrderReturned"},
        "OrderStatus": {"@id": "schema:OrderStatus"},
        "Organization": {"@id": "schema:Organization"},
        "OrganizationRole": {"@id": "schema:OrganizationRole"},
        "OrganizeAction": {"@id": "schema:OrganizeAction"},
        "OriginalShippingFees": {"@id": "schema:OriginalShippingFees"},
        "Osteopathic": {"@id": "schema:Osteopathic"},
        "Otolaryngologic": {"@id": "schema:Otolaryngologic"},
        "OutOfStock": {"@id": "schema:OutOfStock"},
        "OutletStore": {"@id": "schema:OutletStore"},
        "OverviewHealthAspect": {"@id": "schema:OverviewHealthAspect"},
        "OwnershipInfo": {"@id": "schema:OwnershipInfo"},
        "PET": {"@id": "schema:PET"},
        "PaintAction": {"@id": "schema:PaintAction"},
        "Painting": {"@id": "schema:Painting"},
        "PalliativeProcedure": {"@id": "schema:PalliativeProcedure"},
        "Paperback": {"@id": "schema:Paperback"},
        "ParcelDelivery": {"@id": "schema:ParcelDelivery"},
        "ParcelService": {"@id": "schema:ParcelService"},
        "ParentAudience": {"@id": "schema:ParentAudience"},
        "Park": {"@id": "schema:Park"},
        "ParkingFacility": {"@id": "schema:ParkingFacility"},
        "ParkingMap": {"@id": "schema:ParkingMap"},
        "PartiallyInForce": {"@id": "schema:PartiallyInForce"},
        "Pathology": {"@id": "schema:Pathology"},
        "PathologyTest": {"@id": "schema:PathologyTest"},
        "Patient": {"@id": "schema:Patient"},
        "PatientExperienceHealthAspect": {"@id": "schema:PatientExperienceHealthAspect"},
        "PawnShop": {"@id": "schema:PawnShop"},
        "PayAction": {"@id": "schema:PayAction"},
        "PaymentAutomaticallyApplied": {"@id": "schema:PaymentAutomaticallyApplied"},
        "PaymentCard": {"@id": "schema:PaymentCard"},
        "PaymentChargeSpecification": {"@id": "schema:PaymentChargeSpecification"},
        "PaymentComplete": {"@id": "schema:PaymentComplete"},
        "PaymentDeclined": {"@id": "schema:PaymentDeclined"},
        "PaymentDue": {"@id": "schema:PaymentDue"},
        "PaymentMethod": {"@id": "schema:PaymentMethod"},
        "PaymentPastDue": {"@id": "schema:PaymentPastDue"},
        "PaymentService": {"@id": "schema:PaymentService"},
        "PaymentStatusType": {"@id": "schema:PaymentStatusType"},
        "Pediatric": {"@id": "schema:Pediatric"},
        "PeopleAudience": {"@id": "schema:PeopleAudience"},
        "PercutaneousProcedure": {"@id": "schema:PercutaneousProcedure"},
        "PerformAction": {"@id": "schema:PerformAction"},
        "PerformanceRole": {"@id": "schema:PerformanceRole"},
        "PerformingArtsTheater": {"@id": "schema:PerformingArtsTheater"},
        "PerformingGroup": {"@id": "schema:PerformingGroup"},
        "Periodical": {"@id": "schema:Periodical"},
        "Permit": {"@id": "schema:Permit"},
        "Person": {"@id": "schema:Person"},
        "PetStore": {"@id": "schema:PetStore"},
        "Pharmacy": {"@id": "schema:Pharmacy"},
        "PharmacySpecialty": {"@id": "schema:PharmacySpecialty"},
        "Photograph": {"@id": "schema:Photograph"},
        "PhotographAction": {"@id": "schema:PhotographAction"},
        "PhysicalActivity": {"@id": "schema:PhysicalActivity"},
        "PhysicalActivityCategory": {"@id": "schema:PhysicalActivityCategory"},
        "PhysicalExam": {"@id": "schema:PhysicalExam"},
        "PhysicalTherapy": {"@id": "schema:PhysicalTherapy"},
        "Physician": {"@id": "schema:Physician"},
        "Physiotherapy": {"@id": "schema:Physiotherapy"},
        "Place": {"@id": "schema:Place"},
        "PlaceOfWorship": {"@id": "schema:PlaceOfWorship"},
        "PlaceboControlledTrial": {"@id": "schema:PlaceboControlledTrial"},
        "PlanAction": {"@id": "schema:PlanAction"},
        "PlasticSurgery": {"@id": "schema:PlasticSurgery"},
        "Play": {"@id": "schema:Play"},
        "PlayAction": {"@id": "schema:PlayAction"},
        "Playground": {"@id": "schema:Playground"},
        "Plumber": {"@id": "schema:Plumber"},
        "PodcastEpisode": {"@id": "schema:PodcastEpisode"},
        "PodcastSeason": {"@id": "schema:PodcastSeason"},
        "PodcastSeries": {"@id": "schema:PodcastSeries"},
        "Podiatric": {"@id": "schema:Podiatric"},
        "PoliceStation": {"@id": "schema:PoliceStation"},
        "Pond": {"@id": "schema:Pond"},
        "PostOffice": {"@id": "schema:PostOffice"},
        "PostalAddress": {"@id": "schema:PostalAddress"},
        "Poster": {"@id": "schema:Poster"},
        "PotentialActionStatus": {"@id": "schema:PotentialActionStatus"},
        "PreOrder": {"@id": "schema:PreOrder"},
        "PreOrderAction": {"@id": "schema:PreOrderAction"},
        "PreSale": {"@id": "schema:PreSale"},
        "PrependAction": {"@id": "schema:PrependAction"},
        "Preschool": {"@id": "schema:Preschool"},
        "PrescriptionOnly": {"@id": "schema:PrescriptionOnly"},
        "PresentationDigitalDocument": {"@id": "schema:PresentationDigitalDocument"},
        "PreventionHealthAspect": {"@id": "schema:PreventionHealthAspect"},
        "PreventionIndication": {"@id": "schema:PreventionIndication"},
        "PriceSpecification": {"@id": "schema:PriceSpecification"},
        "PrimaryCare": {"@id": "schema:PrimaryCare"},
        "Prion": {"@id": "schema:Prion"},
        "Product": {"@id": "schema:Product"},
        "ProductModel": {"@id": "schema:ProductModel"},
        "ProductReturnEnumeration": {"@id": "schema:ProductReturnEnumeration"},
        "ProductReturnFiniteReturnWindow": {
            "@id": "schema:ProductReturnFiniteReturnWindow"
        },
        "ProductReturnNotPermitted": {"@id": "schema:ProductReturnNotPermitted"},
        "ProductReturnPolicy": {"@id": "schema:ProductReturnPolicy"},
        "ProductReturnUnlimitedWindow": {"@id": "schema:ProductReturnUnlimitedWindow"},
        "ProductReturnUnspecified": {"@id": "schema:ProductReturnUnspecified"},
        "ProfessionalService": {"@id": "schema:ProfessionalService"},
        "ProfilePage": {"@id": "schema:ProfilePage"},
        "PrognosisHealthAspect": {"@id": "schema:PrognosisHealthAspect"},
        "ProgramMembership": {"@id": "schema:ProgramMembership"},
        "Project": {"@id": "schema:Project"},
        "PronounceableText": {"@id": "schema:PronounceableText"},
        "Property": {"@id": "schema:Property"},
        "PropertyValue": {"@id": "schema:PropertyValue"},
        "PropertyValueSpecification": {"@id": "schema:PropertyValueSpecification"},
        "Protozoa": {"@id": "schema:Protozoa"},
        "Psychiatric": {"@id": "schema:Psychiatric"},
        "PsychologicalTreatment": {"@id": "schema:PsychologicalTreatment"},
        "PublicHealth": {"@id": "schema:PublicHealth"},
        "PublicHolidays": {"@id": "schema:PublicHolidays"},
        "PublicSwimmingPool": {"@id": "schema:PublicSwimmingPool"},
        "PublicToilet": {"@id": "schema:PublicToilet"},
        "PublicationEvent": {"@id": "schema:PublicationEvent"},
        "PublicationIssue": {"@id": "schema:PublicationIssue"},
        "PublicationVolume": {"@id": "schema:PublicationVolume"},
        "Pulmonary": {"@id": "schema:Pulmonary"},
        "QAPage": {"@id": "schema:QAPage"},
        "QualitativeValue": {"@id": "schema:QualitativeValue"},
        "QuantitativeValue": {"@id": "schema:QuantitativeValue"},
        "QuantitativeValueDistribution": {"@id": "schema:QuantitativeValueDistribution"},
        "Quantity": {"@id": "schema:Quantity"},
        "Question": {"@id": "schema:Question"},
        "Quotation": {"@id": "schema:Quotation"},
        "QuoteAction": {"@id": "schema:QuoteAction"},
        "RVPark": {"@id": "schema:RVPark"},
        "RadiationTherapy": {"@id": "schema:RadiationTherapy"},
        "RadioBroadcastService": {"@id": "schema:RadioBroadcastService"},
        "RadioChannel": {"@id": "schema:RadioChannel"},
        "RadioClip": {"@id": "schema:RadioClip"},
        "RadioEpisode": {"@id": "schema:RadioEpisode"},
        "RadioSeason": {"@id": "schema:RadioSeason"},
        "RadioSeries": {"@id": "schema:RadioSeries"},
        "RadioStation": {"@id": "schema:RadioStation"},
        "Radiography": {"@id": "schema:Radiography"},
        "RandomizedTrial": {"@id": "schema:RandomizedTrial"},
        "Rating": {"@id": "schema:Rating"},
        "ReactAction": {"@id": "schema:ReactAction"},
        "ReadAction": {"@id": "schema:ReadAction"},
        "ReadPermission": {"@id": "schema:ReadPermission"},
        "RealEstateAgent": {"@id": "schema:RealEstateAgent"},
        "RealEstateListing": {"@id": "schema:RealEstateListing"},
        "RearWheelDriveConfiguration": {"@id": "schema:RearWheelDriveConfiguration"},
        "ReceiveAction": {"@id": "schema:ReceiveAction"},
        "Recipe": {"@id": "schema:Recipe"},
        "Recommendation": {"@id": "schema:Recommendation"},
        "RecommendedDoseSchedule": {"@id": "schema:RecommendedDoseSchedule"},
        "Recruiting": {"@id": "schema:Recruiting"},
        "RecyclingCenter": {"@id": "schema:RecyclingCenter"},
        "RefundTypeEnumeration": {"@id": "schema:RefundTypeEnumeration"},
        "RefurbishedCondition": {"@id": "schema:RefurbishedCondition"},
        "RegisterAction": {"@id": "schema:RegisterAction"},
        "Registry": {"@id": "schema:Registry"},
        "ReimbursementCap": {"@id": "schema:ReimbursementCap"},
        "RejectAction": {"@id": "schema:RejectAction"},
        "RelatedTopicsHealthAspect": {"@id": "schema:RelatedTopicsHealthAspect"},
        "RemixAlbum": {"@id": "schema:RemixAlbum"},
        "Renal": {"@id": "schema:Renal"},
        "RentAction": {"@id": "schema:RentAction"},
        "RentalCarReservation": {"@id": "schema:RentalCarReservation"},
        "RentalVehicleUsage": {"@id": "schema:RentalVehicleUsage"},
        "RepaymentSpecification": {"@id": "schema:RepaymentSpecification"},
        "ReplaceAction": {"@id": "schema:ReplaceAction"},
        "ReplyAction": {"@id": "schema:ReplyAction"},
        "Report": {"@id": "schema:Report"},
        "ReportageNewsArticle": {"@id": "schema:ReportageNewsArticle"},
        "ReportedDoseSchedule": {"@id": "schema:ReportedDoseSchedule"},
        "ResearchProject": {"@id": "schema:ResearchProject"},
        "Researcher": {"@id": "schema:Researcher"},
        "Reservation": {"@id": "schema:Reservation"},
        "ReservationCancelled": {"@id": "schema:ReservationCancelled"},
        "ReservationConfirmed": {"@id": "schema:ReservationConfirmed"},
        "ReservationHold": {"@id": "schema:ReservationHold"},
        "ReservationPackage": {"@id": "schema:ReservationPackage"},
        "ReservationPending": {"@id": "schema:ReservationPending"},
        "ReservationStatusType": {"@id": "schema:ReservationStatusType"},
        "ReserveAction": {"@id": "schema:ReserveAction"},
        "Reservoir": {"@id": "schema:Reservoir"},
        "Residence": {"@id": "schema:Residence"},
        "Resort": {"@id": "schema:Resort"},
        "RespiratoryTherapy": {"@id": "schema:RespiratoryTherapy"},
        "Restaurant": {"@id": "schema:Restaurant"},
        "RestockingFees": {"@id": "schema:RestockingFees"},
        "RestrictedDiet": {"@id": "schema:RestrictedDiet"},
        "ResultsAvailable": {"@id": "schema:ResultsAvailable"},
        "ResultsNotAvailable": {"@id": "schema:ResultsNotAvailable"},
        "ResumeAction": {"@id": "schema:ResumeAction"},
        "Retail": {"@id": "schema:Retail"},
        "ReturnAction": {"@id": "schema:ReturnAction"},
        "ReturnFeesEnumeration": {"@id": "schema:ReturnFeesEnumeration"},
        "ReturnShippingFees": {"@id": "schema:ReturnShippingFees"},
        "Review": {"@id": "schema:Review"},
        "ReviewAction": {"@id": "schema:ReviewAction"},
        "ReviewNewsArticle": {"@id": "schema:ReviewNewsArticle"},
        "Rheumatologic": {"@id": "schema:Rheumatologic"},
        "RightHandDriving": {"@id": "schema:RightHandDriving"},
        "RisksOrComplicationsHealthAspect": {
            "@id": "schema:RisksOrComplicationsHealthAspect"
        },
        "RiverBodyOfWater": {"@id": "schema:RiverBodyOfWater"},
        "Role": {"@id": "schema:Role"},
        "RoofingContractor": {"@id": "schema:RoofingContractor"},
        "Room": {"@id": "schema:Room"},
        "RsvpAction": {"@id": "schema:RsvpAction"},
        "RsvpResponseMaybe": {"@id": "schema:RsvpResponseMaybe"},
        "RsvpResponseNo": {"@id": "schema:RsvpResponseNo"},
        "RsvpResponseType": {"@id": "schema:RsvpResponseType"},
        "RsvpResponseYes": {"@id": "schema:RsvpResponseYes"},
        "SaleEvent": {"@id": "schema:SaleEvent"},
        "SatiricalArticle": {"@id": "schema:SatiricalArticle"},
        "Saturday": {"@id": "schema:Saturday"},
        "Schedule": {"@id": "schema:Schedule"},
        "ScheduleAction": {"@id": "schema:ScheduleAction"},
        "ScholarlyArticle": {"@id": "schema:ScholarlyArticle"},
        "School": {"@id": "schema:School"},
        "SchoolDistrict": {"@id": "schema:SchoolDistrict"},
        "ScreeningEvent": {"@id": "schema:ScreeningEvent"},
        "ScreeningHealthAspect": {"@id": "schema:ScreeningHealthAspect"},
        "Sculpture": {"@id": "schema:Sculpture"},
        "SeaBodyOfWater": {"@id": "schema:SeaBodyOfWater"},
        "SearchAction": {"@id": "schema:SearchAction"},
        "SearchResultsPage": {"@id": "schema:SearchResultsPage"},
        "Season": {"@id": "schema:Season"},
        "Seat": {"@id": "schema:Seat"},
        "SeatingMap": {"@id": "schema:SeatingMap"},
        "SeeDoctorHealthAspect": {"@id": "schema:SeeDoctorHealthAspect"},
        "SelfCareHealthAspect": {"@id": "schema:SelfCareHealthAspect"},
        "SelfStorage": {"@id": "schema:SelfStorage"},
        "SellAction": {"@id": "schema:SellAction"},
        "SendAction": {"@id": "schema:SendAction"},
        "Series": {"@id": "schema:Series"},
        "Service": {"@id": "schema:Service"},
        "ServiceChannel": {"@id": "schema:ServiceChannel"},
        "ShareAction": {"@id": "schema:ShareAction"},
        "SheetMusic": {"@id": "schema:SheetMusic"},
        "ShoeStore": {"@id": "schema:ShoeStore"},
        "ShoppingCenter": {"@id": "schema:ShoppingCenter"},
        "ShortStory": {"@id": "schema:ShortStory"},
        "SideEffectsHealthAspect": {"@id": "schema:SideEffectsHealthAspect"},
        "SingleBlindedTrial": {"@id": "schema:SingleBlindedTrial"},
        "SingleCenterTrial": {"@id": "schema:SingleCenterTrial"},
        "SingleFamilyResidence": {"@id": "schema:SingleFamilyResidence"},
        "SinglePlayer": {"@id": "schema:SinglePlayer"},
        "SingleRelease": {"@id": "schema:SingleRelease"},
        "SiteNavigationElement": {"@id": "schema:SiteNavigationElement"},
        "SkiResort": {"@id": "schema:SkiResort"},
        "Skin": {"@id": "schema:Skin"},
        "SocialEvent": {"@id": "schema:SocialEvent"},
        "SocialMediaPosting": {"@id": "schema:SocialMediaPosting"},
        "SoftwareApplication": {"@id": "schema:SoftwareApplication"},
        "SoftwareSourceCode": {"@id": "schema:SoftwareSourceCode"},