-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathjsonldcontext.yaml
5377 lines (5377 loc) · 131 KB
/
jsonldcontext.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'@context':
3DModel:
'@id': schema:3DModel
'@vocab': http://schema.org/
AMRadioChannel:
'@id': schema:AMRadioChannel
APIReference:
'@id': schema:APIReference
Abdomen:
'@id': schema:Abdomen
AboutPage:
'@id': schema:AboutPage
AcceptAction:
'@id': schema:AcceptAction
Accommodation:
'@id': schema:Accommodation
AccountingService:
'@id': schema:AccountingService
AchieveAction:
'@id': schema:AchieveAction
Action:
'@id': schema:Action
ActionAccessSpecification:
'@id': schema:ActionAccessSpecification
ActionStatusType:
'@id': schema:ActionStatusType
ActivateAction:
'@id': schema:ActivateAction
ActiveActionStatus:
'@id': schema:ActiveActionStatus
ActiveNotRecruiting:
'@id': schema:ActiveNotRecruiting
AddAction:
'@id': schema:AddAction
AdministrativeArea:
'@id': schema:AdministrativeArea
AdultEntertainment:
'@id': schema:AdultEntertainment
AdvertiserContentArticle:
'@id': schema:AdvertiserContentArticle
AerobicActivity:
'@id': schema:AerobicActivity
AggregateOffer:
'@id': schema:AggregateOffer
AggregateRating:
'@id': schema:AggregateRating
AgreeAction:
'@id': schema:AgreeAction
Airline:
'@id': schema:Airline
Airport:
'@id': schema:Airport
AlbumRelease:
'@id': schema:AlbumRelease
AlignmentObject:
'@id': schema:AlignmentObject
AllWheelDriveConfiguration:
'@id': schema:AllWheelDriveConfiguration
AllocateAction:
'@id': schema:AllocateAction
AmusementPark:
'@id': schema:AmusementPark
AnaerobicActivity:
'@id': schema:AnaerobicActivity
AnalysisNewsArticle:
'@id': schema:AnalysisNewsArticle
AnatomicalStructure:
'@id': schema:AnatomicalStructure
AnatomicalSystem:
'@id': schema:AnatomicalSystem
Anesthesia:
'@id': schema:Anesthesia
AnimalShelter:
'@id': schema:AnimalShelter
Answer:
'@id': schema:Answer
Apartment:
'@id': schema:Apartment
ApartmentComplex:
'@id': schema:ApartmentComplex
Appearance:
'@id': schema:Appearance
AppendAction:
'@id': schema:AppendAction
ApplyAction:
'@id': schema:ApplyAction
ApprovedIndication:
'@id': schema:ApprovedIndication
Aquarium:
'@id': schema:Aquarium
ArchiveComponent:
'@id': schema:ArchiveComponent
ArchiveOrganization:
'@id': schema:ArchiveOrganization
ArriveAction:
'@id': schema:ArriveAction
ArtGallery:
'@id': schema:ArtGallery
Artery:
'@id': schema:Artery
Article:
'@id': schema:Article
AskAction:
'@id': schema:AskAction
AskPublicNewsArticle:
'@id': schema:AskPublicNewsArticle
AssessAction:
'@id': schema:AssessAction
AssignAction:
'@id': schema:AssignAction
Atlas:
'@id': schema:Atlas
Attorney:
'@id': schema:Attorney
Audience:
'@id': schema:Audience
AudioObject:
'@id': schema:AudioObject
Audiobook:
'@id': schema:Audiobook
AudiobookFormat:
'@id': schema:AudiobookFormat
AuthenticContent:
'@id': schema:AuthenticContent
AuthoritativeLegalValue:
'@id': schema:AuthoritativeLegalValue
AuthorizeAction:
'@id': schema:AuthorizeAction
AutoBodyShop:
'@id': schema:AutoBodyShop
AutoDealer:
'@id': schema:AutoDealer
AutoPartsStore:
'@id': schema:AutoPartsStore
AutoRental:
'@id': schema:AutoRental
AutoRepair:
'@id': schema:AutoRepair
AutoWash:
'@id': schema:AutoWash
AutomatedTeller:
'@id': schema:AutomatedTeller
AutomotiveBusiness:
'@id': schema:AutomotiveBusiness
Ayurvedic:
'@id': schema:Ayurvedic
BackgroundNewsArticle:
'@id': schema:BackgroundNewsArticle
Bacteria:
'@id': schema:Bacteria
Bakery:
'@id': schema:Bakery
Balance:
'@id': schema:Balance
BankAccount:
'@id': schema:BankAccount
BankOrCreditUnion:
'@id': schema:BankOrCreditUnion
BarOrPub:
'@id': schema:BarOrPub
Barcode:
'@id': schema:Barcode
BasicIncome:
'@id': schema:BasicIncome
Beach:
'@id': schema:Beach
BeautySalon:
'@id': schema:BeautySalon
BedAndBreakfast:
'@id': schema:BedAndBreakfast
BedDetails:
'@id': schema:BedDetails
BedType:
'@id': schema:BedType
BefriendAction:
'@id': schema:BefriendAction
BenefitsHealthAspect:
'@id': schema:BenefitsHealthAspect
BikeStore:
'@id': schema:BikeStore
Blog:
'@id': schema:Blog
BlogPosting:
'@id': schema:BlogPosting
BloodTest:
'@id': schema:BloodTest
BoardingPolicyType:
'@id': schema:BoardingPolicyType
BoatReservation:
'@id': schema:BoatReservation
BoatTerminal:
'@id': schema:BoatTerminal
BoatTrip:
'@id': schema:BoatTrip
BodyOfWater:
'@id': schema:BodyOfWater
Bone:
'@id': schema:Bone
Book:
'@id': schema:Book
BookFormatType:
'@id': schema:BookFormatType
BookSeries:
'@id': schema:BookSeries
BookStore:
'@id': schema:BookStore
BookmarkAction:
'@id': schema:BookmarkAction
Boolean:
'@id': schema:Boolean
BorrowAction:
'@id': schema:BorrowAction
BowlingAlley:
'@id': schema:BowlingAlley
BrainStructure:
'@id': schema:BrainStructure
Brand:
'@id': schema:Brand
BreadcrumbList:
'@id': schema:BreadcrumbList
Brewery:
'@id': schema:Brewery
Bridge:
'@id': schema:Bridge
BroadcastChannel:
'@id': schema:BroadcastChannel
BroadcastEvent:
'@id': schema:BroadcastEvent
BroadcastFrequencySpecification:
'@id': schema:BroadcastFrequencySpecification
BroadcastRelease:
'@id': schema:BroadcastRelease
BroadcastService:
'@id': schema:BroadcastService
BrokerageAccount:
'@id': schema:BrokerageAccount
BuddhistTemple:
'@id': schema:BuddhistTemple
BusOrCoach:
'@id': schema:BusOrCoach
BusReservation:
'@id': schema:BusReservation
BusStation:
'@id': schema:BusStation
BusStop:
'@id': schema:BusStop
BusTrip:
'@id': schema:BusTrip
BusinessAudience:
'@id': schema:BusinessAudience
BusinessEntityType:
'@id': schema:BusinessEntityType
BusinessEvent:
'@id': schema:BusinessEvent
BusinessFunction:
'@id': schema:BusinessFunction
BusinessSupport:
'@id': schema:BusinessSupport
BuyAction:
'@id': schema:BuyAction
CDCPMDRecord:
'@id': schema:CDCPMDRecord
CDFormat:
'@id': schema:CDFormat
CT:
'@id': schema:CT
CableOrSatelliteService:
'@id': schema:CableOrSatelliteService
CafeOrCoffeeShop:
'@id': schema:CafeOrCoffeeShop
Campground:
'@id': schema:Campground
CampingPitch:
'@id': schema:CampingPitch
Canal:
'@id': schema:Canal
CancelAction:
'@id': schema:CancelAction
Car:
'@id': schema:Car
CarUsageType:
'@id': schema:CarUsageType
Cardiovascular:
'@id': schema:Cardiovascular
CardiovascularExam:
'@id': schema:CardiovascularExam
CaseSeries:
'@id': schema:CaseSeries
Casino:
'@id': schema:Casino
CassetteFormat:
'@id': schema:CassetteFormat
CategoryCode:
'@id': schema:CategoryCode
CategoryCodeSet:
'@id': schema:CategoryCodeSet
CatholicChurch:
'@id': schema:CatholicChurch
CausesHealthAspect:
'@id': schema:CausesHealthAspect
Cemetery:
'@id': schema:Cemetery
Chapter:
'@id': schema:Chapter
CharitableIncorporatedOrganization:
'@id': schema:CharitableIncorporatedOrganization
CheckAction:
'@id': schema:CheckAction
CheckInAction:
'@id': schema:CheckInAction
CheckOutAction:
'@id': schema:CheckOutAction
CheckoutPage:
'@id': schema:CheckoutPage
ChildCare:
'@id': schema:ChildCare
ChildrensEvent:
'@id': schema:ChildrensEvent
Chiropractic:
'@id': schema:Chiropractic
ChooseAction:
'@id': schema:ChooseAction
Church:
'@id': schema:Church
City:
'@id': schema:City
CityHall:
'@id': schema:CityHall
CivicStructure:
'@id': schema:CivicStructure
Claim:
'@id': schema:Claim
ClaimReview:
'@id': schema:ClaimReview
Class:
'@id': schema:Class
Clinician:
'@id': schema:Clinician
Clip:
'@id': schema:Clip
ClothingStore:
'@id': schema:ClothingStore
CoOp:
'@id': schema:CoOp
Code:
'@id': schema:Code
CohortStudy:
'@id': schema:CohortStudy
Collection:
'@id': schema:Collection
CollectionPage:
'@id': schema:CollectionPage
CollegeOrUniversity:
'@id': schema:CollegeOrUniversity
ComedyClub:
'@id': schema:ComedyClub
ComedyEvent:
'@id': schema:ComedyEvent
ComicCoverArt:
'@id': schema:ComicCoverArt
ComicIssue:
'@id': schema:ComicIssue
ComicSeries:
'@id': schema:ComicSeries
ComicStory:
'@id': schema:ComicStory
Comment:
'@id': schema:Comment
CommentAction:
'@id': schema:CommentAction
CommentPermission:
'@id': schema:CommentPermission
CommunicateAction:
'@id': schema:CommunicateAction
CommunityHealth:
'@id': schema:CommunityHealth
CompilationAlbum:
'@id': schema:CompilationAlbum
CompleteDataFeed:
'@id': schema:CompleteDataFeed
Completed:
'@id': schema:Completed
CompletedActionStatus:
'@id': schema:CompletedActionStatus
CompoundPriceSpecification:
'@id': schema:CompoundPriceSpecification
ComputerLanguage:
'@id': schema:ComputerLanguage
ComputerStore:
'@id': schema:ComputerStore
ConfirmAction:
'@id': schema:ConfirmAction
Consortium:
'@id': schema:Consortium
ConsumeAction:
'@id': schema:ConsumeAction
ContactPage:
'@id': schema:ContactPage
ContactPoint:
'@id': schema:ContactPoint
ContactPointOption:
'@id': schema:ContactPointOption
ContagiousnessHealthAspect:
'@id': schema:ContagiousnessHealthAspect
Continent:
'@id': schema:Continent
ControlAction:
'@id': schema:ControlAction
ConvenienceStore:
'@id': schema:ConvenienceStore
Conversation:
'@id': schema:Conversation
CookAction:
'@id': schema:CookAction
Corporation:
'@id': schema:Corporation
CorrectionComment:
'@id': schema:CorrectionComment
Country:
'@id': schema:Country
Course:
'@id': schema:Course
CourseInstance:
'@id': schema:CourseInstance
Courthouse:
'@id': schema:Courthouse
CoverArt:
'@id': schema:CoverArt
CovidTestingFacility:
'@id': schema:CovidTestingFacility
CreateAction:
'@id': schema:CreateAction
CreativeWork:
'@id': schema:CreativeWork
CreativeWorkSeason:
'@id': schema:CreativeWorkSeason
CreativeWorkSeries:
'@id': schema:CreativeWorkSeries
CreditCard:
'@id': schema:CreditCard
Crematorium:
'@id': schema:Crematorium
CriticReview:
'@id': schema:CriticReview
CrossSectional:
'@id': schema:CrossSectional
CssSelectorType:
'@id': schema:CssSelectorType
CurrencyConversionService:
'@id': schema:CurrencyConversionService
DDxElement:
'@id': schema:DDxElement
DJMixAlbum:
'@id': schema:DJMixAlbum
DVDFormat:
'@id': schema:DVDFormat
DamagedCondition:
'@id': schema:DamagedCondition
DanceEvent:
'@id': schema:DanceEvent
DanceGroup:
'@id': schema:DanceGroup
DataCatalog:
'@id': schema:DataCatalog
DataDownload:
'@id': schema:DataDownload
DataFeed:
'@id': schema:DataFeed
DataFeedItem:
'@id': schema:DataFeedItem
DataType:
'@id': schema:DataType
Dataset:
'@id': schema:Dataset
Date:
'@id': schema:Date
DateTime:
'@id': schema:DateTime
DatedMoneySpecification:
'@id': schema:DatedMoneySpecification
DayOfWeek:
'@id': schema:DayOfWeek
DaySpa:
'@id': schema:DaySpa
DeactivateAction:
'@id': schema:DeactivateAction
DefenceEstablishment:
'@id': schema:DefenceEstablishment
DefinedRegion:
'@id': schema:DefinedRegion
DefinedTerm:
'@id': schema:DefinedTerm
DefinedTermSet:
'@id': schema:DefinedTermSet
DefinitiveLegalValue:
'@id': schema:DefinitiveLegalValue
DeleteAction:
'@id': schema:DeleteAction
DeliveryChargeSpecification:
'@id': schema:DeliveryChargeSpecification
DeliveryEvent:
'@id': schema:DeliveryEvent
DeliveryMethod:
'@id': schema:DeliveryMethod
DeliveryTimeSettings:
'@id': schema:DeliveryTimeSettings
Demand:
'@id': schema:Demand
DemoAlbum:
'@id': schema:DemoAlbum
Dentist:
'@id': schema:Dentist
Dentistry:
'@id': schema:Dentistry
DepartAction:
'@id': schema:DepartAction
DepartmentStore:
'@id': schema:DepartmentStore
DepositAccount:
'@id': schema:DepositAccount
Dermatologic:
'@id': schema:Dermatologic
Dermatology:
'@id': schema:Dermatology
DiabeticDiet:
'@id': schema:DiabeticDiet
Diagnostic:
'@id': schema:Diagnostic
DiagnosticLab:
'@id': schema:DiagnosticLab
DiagnosticProcedure:
'@id': schema:DiagnosticProcedure
Diet:
'@id': schema:Diet
DietNutrition:
'@id': schema:DietNutrition
DietarySupplement:
'@id': schema:DietarySupplement
DigitalAudioTapeFormat:
'@id': schema:DigitalAudioTapeFormat
DigitalDocument:
'@id': schema:DigitalDocument
DigitalDocumentPermission:
'@id': schema:DigitalDocumentPermission
DigitalDocumentPermissionType:
'@id': schema:DigitalDocumentPermissionType
DigitalFormat:
'@id': schema:DigitalFormat
DisabilitySupport:
'@id': schema:DisabilitySupport
DisagreeAction:
'@id': schema:DisagreeAction
Discontinued:
'@id': schema:Discontinued
DiscoverAction:
'@id': schema:DiscoverAction
DiscussionForumPosting:
'@id': schema:DiscussionForumPosting
DislikeAction:
'@id': schema:DislikeAction
Distance:
'@id': schema:Distance
Distillery:
'@id': schema:Distillery
DonateAction:
'@id': schema:DonateAction
DoseSchedule:
'@id': schema:DoseSchedule
DoubleBlindedTrial:
'@id': schema:DoubleBlindedTrial
DownloadAction:
'@id': schema:DownloadAction
DrawAction:
'@id': schema:DrawAction
Drawing:
'@id': schema:Drawing
DrinkAction:
'@id': schema:DrinkAction
DriveWheelConfigurationValue:
'@id': schema:DriveWheelConfigurationValue
DrivingSchoolVehicleUsage:
'@id': schema:DrivingSchoolVehicleUsage
Drug:
'@id': schema:Drug
DrugClass:
'@id': schema:DrugClass
DrugCost:
'@id': schema:DrugCost
DrugCostCategory:
'@id': schema:DrugCostCategory
DrugLegalStatus:
'@id': schema:DrugLegalStatus
DrugPregnancyCategory:
'@id': schema:DrugPregnancyCategory
DrugPrescriptionStatus:
'@id': schema:DrugPrescriptionStatus
DrugStrength:
'@id': schema:DrugStrength
DryCleaningOrLaundry:
'@id': schema:DryCleaningOrLaundry
Duration:
'@id': schema:Duration
EBook:
'@id': schema:EBook
EPRelease:
'@id': schema:EPRelease
EUEnergyEfficiencyCategoryA:
'@id': schema:EUEnergyEfficiencyCategoryA
EUEnergyEfficiencyCategoryA1Plus:
'@id': schema:EUEnergyEfficiencyCategoryA1Plus
EUEnergyEfficiencyCategoryA2Plus:
'@id': schema:EUEnergyEfficiencyCategoryA2Plus
EUEnergyEfficiencyCategoryA3Plus:
'@id': schema:EUEnergyEfficiencyCategoryA3Plus
EUEnergyEfficiencyCategoryB:
'@id': schema:EUEnergyEfficiencyCategoryB
EUEnergyEfficiencyCategoryC:
'@id': schema:EUEnergyEfficiencyCategoryC
EUEnergyEfficiencyCategoryD:
'@id': schema:EUEnergyEfficiencyCategoryD
EUEnergyEfficiencyCategoryE:
'@id': schema:EUEnergyEfficiencyCategoryE
EUEnergyEfficiencyCategoryF:
'@id': schema:EUEnergyEfficiencyCategoryF
EUEnergyEfficiencyCategoryG:
'@id': schema:EUEnergyEfficiencyCategoryG
EUEnergyEfficiencyEnumeration:
'@id': schema:EUEnergyEfficiencyEnumeration
Ear:
'@id': schema:Ear
EatAction:
'@id': schema:EatAction
EducationEvent:
'@id': schema:EducationEvent
EducationalAudience:
'@id': schema:EducationalAudience
EducationalOccupationalCredential:
'@id': schema:EducationalOccupationalCredential
EducationalOccupationalProgram:
'@id': schema:EducationalOccupationalProgram
EducationalOrganization:
'@id': schema:EducationalOrganization
Electrician:
'@id': schema:Electrician
ElectronicsStore:
'@id': schema:ElectronicsStore
ElementarySchool:
'@id': schema:ElementarySchool
EmailMessage:
'@id': schema:EmailMessage
Embassy:
'@id': schema:Embassy
Emergency:
'@id': schema:Emergency
EmergencyService:
'@id': schema:EmergencyService
EmployeeRole:
'@id': schema:EmployeeRole
EmployerAggregateRating:
'@id': schema:EmployerAggregateRating
EmployerReview:
'@id': schema:EmployerReview
EmploymentAgency:
'@id': schema:EmploymentAgency
Endocrine:
'@id': schema:Endocrine
EndorseAction:
'@id': schema:EndorseAction
EndorsementRating:
'@id': schema:EndorsementRating
Energy:
'@id': schema:Energy
EnergyConsumptionDetails:
'@id': schema:EnergyConsumptionDetails
EnergyEfficiencyEnumeration:
'@id': schema:EnergyEfficiencyEnumeration
EnergyStarCertified:
'@id': schema:EnergyStarCertified
EnergyStarEnergyEfficiencyEnumeration:
'@id': schema:EnergyStarEnergyEfficiencyEnumeration
EngineSpecification:
'@id': schema:EngineSpecification
EnrollingByInvitation:
'@id': schema:EnrollingByInvitation
EntertainmentBusiness:
'@id': schema:EntertainmentBusiness
EntryPoint:
'@id': schema:EntryPoint
Enumeration:
'@id': schema:Enumeration
Episode:
'@id': schema:Episode
Event:
'@id': schema:Event
EventAttendanceModeEnumeration:
'@id': schema:EventAttendanceModeEnumeration
EventCancelled:
'@id': schema:EventCancelled
EventMovedOnline:
'@id': schema:EventMovedOnline
EventPostponed:
'@id': schema:EventPostponed
EventRescheduled:
'@id': schema:EventRescheduled
EventReservation:
'@id': schema:EventReservation
EventScheduled:
'@id': schema:EventScheduled
EventSeries:
'@id': schema:EventSeries
EventStatusType:
'@id': schema:EventStatusType
EventVenue:
'@id': schema:EventVenue
EvidenceLevelA:
'@id': schema:EvidenceLevelA
EvidenceLevelB:
'@id': schema:EvidenceLevelB
EvidenceLevelC:
'@id': schema:EvidenceLevelC
ExchangeRateSpecification:
'@id': schema:ExchangeRateSpecification
ExchangeRefund:
'@id': schema:ExchangeRefund
ExerciseAction:
'@id': schema:ExerciseAction
ExerciseGym:
'@id': schema:ExerciseGym
ExercisePlan:
'@id': schema:ExercisePlan
ExhibitionEvent:
'@id': schema:ExhibitionEvent
Eye:
'@id': schema:Eye
FAQPage:
'@id': schema:FAQPage
FDAcategoryA:
'@id': schema:FDAcategoryA
FDAcategoryB:
'@id': schema:FDAcategoryB
FDAcategoryC:
'@id': schema:FDAcategoryC
FDAcategoryD:
'@id': schema:FDAcategoryD
FDAcategoryX:
'@id': schema:FDAcategoryX
FDAnotEvaluated:
'@id': schema:FDAnotEvaluated
FMRadioChannel:
'@id': schema:FMRadioChannel
FailedActionStatus:
'@id': schema:FailedActionStatus
'False':
'@id': schema:False
FastFoodRestaurant:
'@id': schema:FastFoodRestaurant
Female:
'@id': schema:Female
Festival:
'@id': schema:Festival
FilmAction:
'@id': schema:FilmAction
FinancialProduct:
'@id': schema:FinancialProduct
FinancialService:
'@id': schema:FinancialService
FindAction:
'@id': schema:FindAction
FireStation:
'@id': schema:FireStation
Flexibility:
'@id': schema:Flexibility
Flight:
'@id': schema:Flight
FlightReservation:
'@id': schema:FlightReservation
Float:
'@id': schema:Float
FloorPlan:
'@id': schema:FloorPlan
Florist:
'@id': schema:Florist
FollowAction:
'@id': schema:FollowAction
FoodEstablishment:
'@id': schema:FoodEstablishment
FoodEstablishmentReservation:
'@id': schema:FoodEstablishmentReservation
FoodEvent:
'@id': schema:FoodEvent
FoodService:
'@id': schema:FoodService
FourWheelDriveConfiguration:
'@id': schema:FourWheelDriveConfiguration
Friday:
'@id': schema:Friday
FrontWheelDriveConfiguration:
'@id': schema:FrontWheelDriveConfiguration
FullRefund:
'@id': schema:FullRefund
FundingAgency:
'@id': schema:FundingAgency
FundingScheme:
'@id': schema:FundingScheme
Fungus:
'@id': schema:Fungus
FurnitureStore:
'@id': schema:FurnitureStore
Game:
'@id': schema:Game
GamePlayMode:
'@id': schema:GamePlayMode
GameServer:
'@id': schema:GameServer
GameServerStatus:
'@id': schema:GameServerStatus
GardenStore:
'@id': schema:GardenStore
GasStation:
'@id': schema:GasStation
Gastroenterologic:
'@id': schema:Gastroenterologic
GatedResidenceCommunity:
'@id': schema:GatedResidenceCommunity
GenderType:
'@id': schema:GenderType
GeneralContractor:
'@id': schema:GeneralContractor
Genetic:
'@id': schema:Genetic
Genitourinary:
'@id': schema:Genitourinary
GeoCircle:
'@id': schema:GeoCircle
GeoCoordinates:
'@id': schema:GeoCoordinates
GeoShape:
'@id': schema:GeoShape
GeospatialGeometry:
'@id': schema:GeospatialGeometry
Geriatric:
'@id': schema:Geriatric
GiveAction:
'@id': schema:GiveAction
GlutenFreeDiet:
'@id': schema:GlutenFreeDiet
GolfCourse:
'@id': schema:GolfCourse
GovernmentBenefitsType:
'@id': schema:GovernmentBenefitsType
GovernmentBuilding:
'@id': schema:GovernmentBuilding
GovernmentOffice:
'@id': schema:GovernmentOffice
GovernmentOrganization:
'@id': schema:GovernmentOrganization
GovernmentPermit:
'@id': schema:GovernmentPermit
GovernmentService:
'@id': schema:GovernmentService
Grant:
'@id': schema:Grant
GraphicNovel:
'@id': schema:GraphicNovel
GroceryStore:
'@id': schema:GroceryStore
GroupBoardingPolicy:
'@id': schema:GroupBoardingPolicy
Guide:
'@id': schema:Guide
Gynecologic:
'@id': schema:Gynecologic
HTML:
'@id': rdf:HTML
HVACBusiness:
'@id': schema:HVACBusiness
Hackathon:
'@id': schema:Hackathon
HairSalon:
'@id': schema:HairSalon
HalalDiet:
'@id': schema:HalalDiet
Hardcover:
'@id': schema:Hardcover
HardwareStore:
'@id': schema:HardwareStore
Head:
'@id': schema:Head
HealthAndBeautyBusiness:
'@id': schema:HealthAndBeautyBusiness
HealthAspectEnumeration:
'@id': schema:HealthAspectEnumeration
HealthCare:
'@id': schema:HealthCare
HealthClub:
'@id': schema:HealthClub
HealthInsurancePlan:
'@id': schema:HealthInsurancePlan
HealthPlanCostSharingSpecification:
'@id': schema:HealthPlanCostSharingSpecification
HealthPlanFormulary:
'@id': schema:HealthPlanFormulary
HealthPlanNetwork:
'@id': schema:HealthPlanNetwork
HealthTopicContent:
'@id': schema:HealthTopicContent
HearingImpairedSupported:
'@id': schema:HearingImpairedSupported
Hematologic:
'@id': schema:Hematologic
HighSchool:
'@id': schema:HighSchool
HinduDiet:
'@id': schema:HinduDiet
HinduTemple:
'@id': schema:HinduTemple
HobbyShop:
'@id': schema:HobbyShop
HomeAndConstructionBusiness:
'@id': schema:HomeAndConstructionBusiness
HomeGoodsStore:
'@id': schema:HomeGoodsStore
Homeopathic:
'@id': schema:Homeopathic
Hospital:
'@id': schema:Hospital
Hostel:
'@id': schema:Hostel
Hotel:
'@id': schema:Hotel
HotelRoom:
'@id': schema:HotelRoom
House:
'@id': schema:House
HousePainter:
'@id': schema:HousePainter
HowOrWhereHealthAspect:
'@id': schema:HowOrWhereHealthAspect
HowTo:
'@id': schema:HowTo
HowToDirection:
'@id': schema:HowToDirection
HowToItem:
'@id': schema:HowToItem
HowToSection:
'@id': schema:HowToSection
HowToStep:
'@id': schema:HowToStep
HowToSupply:
'@id': schema:HowToSupply
HowToTip:
'@id': schema:HowToTip
HowToTool:
'@id': schema:HowToTool
IceCreamShop:
'@id': schema:IceCreamShop
IgnoreAction:
'@id': schema:IgnoreAction
ImageGallery:
'@id': schema:ImageGallery
ImageObject:
'@id': schema:ImageObject
ImagingTest:
'@id': schema:ImagingTest
InForce:
'@id': schema:InForce
InStock:
'@id': schema:InStock
InStoreOnly:
'@id': schema:InStoreOnly
IndividualProduct:
'@id': schema:IndividualProduct
Infectious:
'@id': schema:Infectious
InfectiousAgentClass:
'@id': schema:InfectiousAgentClass
InfectiousDisease:
'@id': schema:InfectiousDisease
InformAction:
'@id': schema:InformAction
InsertAction:
'@id': schema:InsertAction
InstallAction:
'@id': schema:InstallAction
InsuranceAgency:
'@id': schema:InsuranceAgency
Intangible:
'@id': schema:Intangible
Integer:
'@id': schema:Integer
InteractAction:
'@id': schema:InteractAction
InteractionCounter:
'@id': schema:InteractionCounter
InternationalTrial:
'@id': schema:InternationalTrial
InternetCafe:
'@id': schema:InternetCafe
InvestmentFund:
'@id': schema:InvestmentFund