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