forked from datacommonsorg/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.mcf
11094 lines (9460 loc) · 240 KB
/
schema.mcf
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
Node: Legislation
dcid: "Legislation"
subClassOf: schema:CreativeWork
name: "Legislation"
typeOf: schema:Class
Node: StatisticalPopulation
dcid: "StatisticalPopulation"
subClassOf: schema:Intangible
name: "StatisticalPopulation"
typeOf: schema:Class
Node: populationType
dcid: "populationType"
rangeIncludes: schema:Class
domainIncludes: schema:StatisticalPopulation, dcs:StatisticalVariable
name: "populationType"
typeOf: schema:Property
Node: dcid:constraintProperty
typeOf: schema:Property
name: "constraintProperty"
domainIncludes: schema:StatisticalPopulation, dcs:StatisticalVariable
rangeIncludes: schema:Property
Node: Observation
dcid: "Observation"
typeOf: schema:Class
name: "Observation"
subClassOf: schema:Intangible
Node: dcid:observationDate
name: "observationDate"
typeOf: schema:Property
domainIncludes: schema:Observation, dcs:StatVarObservation
rangeIncludes: schema:Date
description: "Date the Observation was made OR the last date of an Observation spanning a period of time."
Node: measuredProperty
dcid: "measuredProperty"
rangeIncludes: schema:Property
name: "measuredProperty"
domainIncludes: schema:Observation, dcs:StatisticalVariable
typeOf: schema:Property
Node: dcid:measuredValue
name: "measuredValue"
domainIncludes: schema:Observation
rangeIncludes: schema:Number, schema:Text, schema:Enumeration
typeOf: schema:Property
description: "The value of the Observation."
Node: observedNode
dcid: "observedNode"
typeOf: schema:Property
rangeIncludes: schema:Place, schema:StatisticalPopulation
domainIncludes: schema:Observation
name: "observedNode"
Node: dcid:marginOfError
name: "marginOfError"
typeOf: schema:Property
domainIncludes: schema:Observation
rangeIncludes: schema:Number, dcs:Percent
Node: toLocation
dcid: "toLocation"
domainIncludes: schema:InsertAction
name: "toLocation"
subPropertyOf: "location"
rangeIncludes: schema:Place
typeOf: schema:Property
Node: DateTime
dcid: "DateTime"
typeOf: schema:DataType
name: "DateTime"
Node: ShoppingCenter
dcid: "ShoppingCenter"
typeOf: schema:Class
subClassOf: schema:LocalBusiness
name: "ShoppingCenter"
Node: carrierRequirements
dcid: "carrierRequirements"
rangeIncludes: schema:Text
typeOf: schema:Property
name: "carrierRequirements"
domainIncludes: schema:MobileApplication
Node: valuePattern
dcid: "valuePattern"
rangeIncludes: schema:Text
typeOf: schema:Property
name: "valuePattern"
domainIncludes: schema:PropertyValueSpecification
Node: OfferItemCondition
dcid: "OfferItemCondition"
typeOf: schema:Class
subClassOf: schema:Enumeration
name: "OfferItemCondition"
Node: RsvpResponseNo
dcid: "RsvpResponseNo"
typeOf: schema:RsvpResponseType
name: "RsvpResponseNo"
Node: PoliceStation
dcid: "PoliceStation"
name: "PoliceStation"
subClassOf: schema:CivicStructure
typeOf: schema:Class
Node: eligibleCustomerType
dcid: "eligibleCustomerType"
name: "eligibleCustomerType"
rangeIncludes: schema:BusinessEntityType
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
domainIncludes: schema:Offer
typeOf: schema:Property
Node: GeoCoordinates
dcid: "GeoCoordinates"
typeOf: schema:Class
subClassOf: schema:StructuredValue
name: "GeoCoordinates"
Node: merchant
dcid: "merchant"
name: "merchant"
rangeIncludes: schema:Organization
domainIncludes: schema:Order
typeOf: schema:Property
supersededBy: "seller"
Node: reservationFor
dcid: "reservationFor"
domainIncludes: schema:Reservation
name: "reservationFor"
typeOf: schema:Property
rangeIncludes: schema:Thing
Node: HousePainter
dcid: "HousePainter"
typeOf: schema:Class
subClassOf: schema:HomeAndConstructionBusiness
name: "HousePainter"
Node: sportsActivityLocation
dcid: "sportsActivityLocation"
typeOf: schema:Property
rangeIncludes: schema:SportsActivityLocation
name: "sportsActivityLocation"
domainIncludes: schema:ExerciseAction
subPropertyOf: "location"
Node: BookmarkAction
dcid: "BookmarkAction"
subClassOf: schema:OrganizeAction
name: "BookmarkAction"
typeOf: schema:Class
Node: hasMap
dcid: "hasMap"
domainIncludes: schema:Place
rangeIncludes: schema:Map
typeOf: schema:Property
name: "hasMap"
Node: HardwareStore
dcid: "HardwareStore"
name: "HardwareStore"
typeOf: schema:Class
subClassOf: schema:Store
Node: serialNumber
dcid: "serialNumber"
typeOf: schema:Property
domainIncludes: schema:Offer
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
subPropertyOf: "identifier"
rangeIncludes: schema:Text
name: "serialNumber"
Node: BlogPosting
dcid: "BlogPosting"
subClassOf: schema:SocialMediaPosting
typeOf: schema:Class
name: "BlogPosting"
Node: priceCurrency
dcid: "priceCurrency"
rangeIncludes: schema:Text
typeOf: schema:Property
name: "priceCurrency"
domainIncludes: schema:Offer
Node: skills
dcid: "skills"
rangeIncludes: schema:Text
domainIncludes: schema:JobPosting
typeOf: schema:Property
name: "skills"
Node: MovieSeries
dcid: "MovieSeries"
typeOf: schema:Class
name: "MovieSeries"
subClassOf: schema:CreativeWorkSeries
Node: recipeYield
dcid: "recipeYield"
rangeIncludes: schema:Text
subPropertyOf: "yield"
domainIncludes: schema:Recipe
name: "recipeYield"
typeOf: schema:Property
Node: ElementarySchool
dcid: "ElementarySchool"
subClassOf: schema:EducationalOrganization
typeOf: schema:Class
name: "ElementarySchool"
Node: sharedContent
dcid: "sharedContent"
typeOf: schema:Property
rangeIncludes: schema:CreativeWork
name: "sharedContent"
domainIncludes: schema:SocialMediaPosting
Node: Festival
dcid: "Festival"
typeOf: schema:Class
name: "Festival"
subClassOf: schema:Event
Node: MediaObject
dcid: "MediaObject"
name: "MediaObject"
typeOf: schema:Class
subClassOf: schema:CreativeWork
Node: Enumeration
dcid: "Enumeration"
name: "Enumeration"
typeOf: schema:Class
subClassOf: schema:Intangible
Node: honorificSuffix
dcid: "honorificSuffix"
typeOf: schema:Property
domainIncludes: schema:Person
name: "honorificSuffix"
rangeIncludes: schema:Text
Node: departureStation
dcid: "departureStation"
rangeIncludes: schema:TrainStation
typeOf: schema:Property
domainIncludes: schema:TrainTrip
name: "departureStation"
Node: AggregateOffer
dcid: "AggregateOffer"
subClassOf: schema:Offer
typeOf: schema:Class
name: "AggregateOffer"
Node: Game
dcid: "Game"
subClassOf: schema:CreativeWork
typeOf: schema:Class
name: "Game"
Node: seeks
dcid: "seeks"
typeOf: schema:Property
rangeIncludes: schema:Demand
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
name: "seeks"
domainIncludes: schema:Organization
Node: permitAudience
dcid: "permitAudience"
domainIncludes: schema:Permit
name: "permitAudience"
typeOf: schema:Property
rangeIncludes: schema:Audience
Node: Photograph
dcid: "Photograph"
subClassOf: schema:CreativeWork
name: "Photograph"
typeOf: schema:Class
Node: browserRequirements
dcid: "browserRequirements"
rangeIncludes: schema:Text
name: "browserRequirements"
domainIncludes: schema:WebApplication
typeOf: schema:Property
Node: UserComments
dcid: "UserComments"
supersededBy: "InteractionCounter"
subClassOf: schema:UserInteraction
name: "UserComments"
typeOf: schema:Class
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
Node: recipe
dcid: "recipe"
domainIncludes: schema:CookAction
rangeIncludes: schema:Recipe
name: "recipe"
typeOf: schema:Property
subPropertyOf: "instrument"
Node: estimatedCost
dcid: "estimatedCost"
domainIncludes: schema:HowToSupply
typeOf: schema:Property
name: "estimatedCost"
rangeIncludes: schema:Text
Node: InvestmentOrDeposit
dcid: "InvestmentOrDeposit"
subClassOf: schema:FinancialProduct
name: "InvestmentOrDeposit"
typeOf: schema:Class
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
Node: WPAdBlock
dcid: "WPAdBlock"
typeOf: schema:Class
name: "WPAdBlock"
subClassOf: schema:WebPageElement
Node: Tuesday
dcid: "Tuesday"
sameAs: "http://www.wikidata.org/entity/Q127"
name: "Tuesday"
typeOf: schema:DayOfWeek
Node: encodingFormat
dcid: "encodingFormat"
domainIncludes: schema:MediaObject
rangeIncludes: schema:Text
name: "encodingFormat"
typeOf: schema:Property
Node: dependencies
dcid: "dependencies"
domainIncludes: schema:TechArticle
name: "dependencies"
typeOf: schema:Property
rangeIncludes: schema:Text
Node: maximumAttendeeCapacity
dcid: "maximumAttendeeCapacity"
rangeIncludes: schema:Integer
domainIncludes: schema:Event
name: "maximumAttendeeCapacity"
typeOf: schema:Property
Node: Continent
dcid: "Continent"
typeOf: schema:Class
subClassOf: schema:Landform
name: "Continent"
Node: dcid:UNGeoRegion
typeOf: schema:Class
subClassOf: schema:Place
name: "UNGeoRegion"
description: "The United Nations Geoschema for sub-regions"
descriptionUrl: "https://en.wikipedia.org/wiki/United_Nations_geoscheme"
Node: dcid:ContinentalUnion
typeOf: schema:Class
subClassOf: schema:Place
name: "ContinentalUnion"
description: "Pan-continental organization."
descriptionUrl: "https://en.wikipedia.org/wiki/Continental_union"
Node: hasMenuItem
dcid: "hasMenuItem"
domainIncludes: schema:MenuSection
rangeIncludes: schema:MenuItem
typeOf: schema:Property
name: "hasMenuItem"
Node: eligibleRegion
dcid: "eligibleRegion"
rangeIncludes: schema:GeoShape
name: "eligibleRegion"
subPropertyOf: "areaServed"
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
domainIncludes: schema:Offer
typeOf: schema:Property
Node: GovernmentPermit
dcid: "GovernmentPermit"
subClassOf: schema:Permit
name: "GovernmentPermit"
typeOf: schema:Class
Node: Book
dcid: "Book"
subClassOf: schema:CreativeWork
name: "Book"
typeOf: schema:Class
Node: MedicalOrganization
dcid: "MedicalOrganization"
subClassOf: schema:Organization
name: "MedicalOrganization"
typeOf: schema:Class
Node: valueMinLength
dcid: "valueMinLength"
rangeIncludes: schema:Number
domainIncludes: schema:PropertyValueSpecification
name: "valueMinLength"
typeOf: schema:Property
Node: SellAction
dcid: "SellAction"
typeOf: schema:Class
name: "SellAction"
subClassOf: schema:TradeAction
Node: representativeOfPage
dcid: "representativeOfPage"
name: "representativeOfPage"
typeOf: schema:Property
rangeIncludes: schema:Boolean
domainIncludes: schema:ImageObject
Node: JobPosting
dcid: "JobPosting"
typeOf: schema:Class
name: "JobPosting"
subClassOf: schema:Intangible
Node: servicePostalAddress
dcid: "servicePostalAddress"
domainIncludes: schema:ServiceChannel
name: "servicePostalAddress"
typeOf: schema:Property
rangeIncludes: schema:PostalAddress
Node: TradeAction
dcid: "TradeAction"
name: "TradeAction"
typeOf: schema:Class
subClassOf: schema:Action
Node: TheaterEvent
dcid: "TheaterEvent"
typeOf: schema:Class
subClassOf: schema:Event
name: "TheaterEvent"
Node: ProfessionalService
dcid: "ProfessionalService"
name: "ProfessionalService"
typeOf: schema:Class
subClassOf: schema:LocalBusiness
Node: award
dcid: "award"
rangeIncludes: schema:Text
name: "award"
domainIncludes: schema:Organization
typeOf: schema:Property
Node: Person
dcid: "Person"
name: "Person"
typeOf: schema:Class
subClassOf: schema:Thing
equivalentClass: "http://xmlns.com/foaf/0.1/Person"
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
Node: seatRow
dcid: "seatRow"
name: "seatRow"
typeOf: schema:Property
rangeIncludes: schema:Text
domainIncludes: schema:Seat
Node: Painting
dcid: "Painting"
typeOf: schema:Class
name: "Painting"
subClassOf: schema:CreativeWork
Node: workHours
dcid: "workHours"
rangeIncludes: schema:Text
domainIncludes: schema:JobPosting
name: "workHours"
typeOf: schema:Property
Node: experienceRequirements
dcid: "experienceRequirements"
rangeIncludes: schema:Text
domainIncludes: schema:JobPosting
name: "experienceRequirements"
typeOf: schema:Property
Node: Text
dcid: "Text"
name: "Text"
typeOf: schema:DataType
Node: playMode
dcid: "playMode"
typeOf: schema:Property
name: "playMode"
domainIncludes: schema:VideoGameSeries
rangeIncludes: schema:GamePlayMode
Node: flightDistance
dcid: "flightDistance"
rangeIncludes: schema:Distance
domainIncludes: schema:Flight
name: "flightDistance"
typeOf: schema:Property
Node: workPerformed
dcid: "workPerformed"
domainIncludes: schema:Event
typeOf: schema:Property
subPropertyOf: "workFeatured"
rangeIncludes: schema:CreativeWork
name: "workPerformed"
Node: broadcastChannelId
dcid: "broadcastChannelId"
name: "broadcastChannelId"
typeOf: schema:Property
rangeIncludes: schema:Text
domainIncludes: schema:BroadcastChannel
Node: Corporation
dcid: "Corporation"
subClassOf: schema:Organization
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
typeOf: schema:Class
name: "Corporation"
Node: Motel
dcid: "Motel"
name: "Motel"
subClassOf: schema:LodgingBusiness
typeOf: schema:Class
Node: currency
dcid: "currency"
rangeIncludes: schema:Text
name: "currency"
typeOf: schema:Property
domainIncludes: schema:DatedMoneySpecification
Node: DeliveryChargeSpecification
dcid: "DeliveryChargeSpecification"
name: "DeliveryChargeSpecification"
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
typeOf: schema:Class
subClassOf: schema:PriceSpecification
Node: organizer
dcid: "organizer"
rangeIncludes: schema:Organization
domainIncludes: schema:Event
name: "organizer"
typeOf: schema:Property
Node: ViewAction
dcid: "ViewAction"
subClassOf: schema:ConsumeAction
typeOf: schema:Class
name: "ViewAction"
Node: HowToTip
dcid: "HowToTip"
name: "HowToTip"
subClassOf: schema:ListItem
typeOf: schema:Class
Node: superEvent
dcid: "superEvent"
name: "superEvent"
inverseOf: "subEvent"
rangeIncludes: schema:Event
domainIncludes: schema:Event
typeOf: schema:Property
Node: publishedOn
dcid: "publishedOn"
typeOf: schema:Property
name: "publishedOn"
rangeIncludes: schema:BroadcastService
domainIncludes: schema:PublicationEvent
Node: recordingOf
dcid: "recordingOf"
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
name: "recordingOf"
inverseOf: "recordedAs"
domainIncludes: schema:MusicRecording
rangeIncludes: schema:MusicComposition
typeOf: schema:Property
Node: EventPostponed
dcid: "EventPostponed"
typeOf: schema:EventStatusType
name: "EventPostponed"
Node: description
dcid: "description"
name: "description"
rangeIncludes: schema:Text
domainIncludes: schema:Thing
equivalentProperty: "http://purl.org/dc/terms/description"
typeOf: schema:Property
Node: note
dcid: "note"
name: "note"
domainIncludes: schema:Thing
rangeIncludes: schema:Text
typeOf: schema:Property
description: "A brief comment, explanation, or record."
Node: expectedArrivalUntil
dcid: "expectedArrivalUntil"
domainIncludes: schema:ParcelDelivery
rangeIncludes: schema:DateTime
typeOf: schema:Property
name: "expectedArrivalUntil"
Node: paymentDueDate
dcid: "paymentDueDate"
typeOf: schema:Property
name: "paymentDueDate"
rangeIncludes: schema:DateTime
domainIncludes: schema:Invoice
Node: alternateName
dcid: "alternateName"
typeOf: schema:Property
name: "alternateName"
rangeIncludes: schema:Text
domainIncludes: schema:Thing
Node: paymentStatus
dcid: "paymentStatus"
rangeIncludes: schema:PaymentStatusType
name: "paymentStatus"
domainIncludes: schema:Invoice
typeOf: schema:Property
Node: VeganDiet
dcid: "VeganDiet"
name: "VeganDiet"
typeOf: schema:RestrictedDiet
Node: startDate
dcid: "startDate"
typeOf: schema:Property
domainIncludes: schema:CreativeWorkSeries, schema:Event, dcs:MeteorologicalEvent
rangeIncludes: schema:DateTime
name: "startDate"
Node: MiddleSchool
dcid: "MiddleSchool"
name: "MiddleSchool"
subClassOf: schema:EducationalOrganization
typeOf: schema:Class
Node: MusicEvent
dcid: "MusicEvent"
name: "MusicEvent"
typeOf: schema:Class
subClassOf: schema:Event
Node: InviteAction
dcid: "InviteAction"
subClassOf: schema:CommunicateAction
name: "InviteAction"
typeOf: schema:Class
Node: isGift
dcid: "isGift"
name: "isGift"
domainIncludes: schema:Order
rangeIncludes: schema:Boolean
typeOf: schema:Property
Node: hasMenu
dcid: "hasMenu"
rangeIncludes: schema:Menu
name: "hasMenu"
typeOf: schema:Property
domainIncludes: schema:FoodEstablishment
Node: DonateAction
dcid: "DonateAction"
subClassOf: schema:TradeAction
typeOf: schema:Class
name: "DonateAction"
Node: replyToUrl
dcid: "replyToUrl"
name: "replyToUrl"
rangeIncludes: schema:URL
typeOf: schema:Property
domainIncludes: schema:UserComments
Node: InsertAction
dcid: "InsertAction"
typeOf: schema:Class
name: "InsertAction"
subClassOf: schema:AddAction
Node: PostOffice
dcid: "PostOffice"
subClassOf: schema:GovernmentOffice
name: "PostOffice"
typeOf: schema:Class
Node: releaseNotes
dcid: "releaseNotes"
name: "releaseNotes"
domainIncludes: schema:SoftwareApplication
rangeIncludes: schema:Text
typeOf: schema:Property
Node: ReturnAction
dcid: "ReturnAction"
subClassOf: schema:TransferAction
name: "ReturnAction"
typeOf: schema:Class
Node: isBasedOn
dcid: "isBasedOn"
typeOf: schema:Property
rangeIncludes: schema:URL
domainIncludes: schema:CreativeWork
name: "isBasedOn"
Node: dateCreated
dcid: "dateCreated"
domainIncludes: schema:DataFeedItem
rangeIncludes: schema:DateTime
typeOf: schema:Property
name: "dateCreated"
Node: HowToSection
dcid: "HowToSection"
typeOf: schema:Class
subClassOf: schema:ItemList
name: "HowToSection"
Node: broadcastTimezone
dcid: "broadcastTimezone"
domainIncludes: schema:BroadcastService
rangeIncludes: schema:Text
typeOf: schema:Property
name: "broadcastTimezone"
Node: VegetarianDiet
dcid: "VegetarianDiet"
typeOf: schema:RestrictedDiet
name: "VegetarianDiet"
Node: SearchAction
dcid: "SearchAction"
typeOf: schema:Class
subClassOf: schema:Action
name: "SearchAction"
Node: addressRegion
dcid: "addressRegion"
typeOf: schema:Property
domainIncludes: schema:PostalAddress
rangeIncludes: schema:Text
name: "addressRegion"
Node: LowLactoseDiet
dcid: "LowLactoseDiet"
name: "LowLactoseDiet"
typeOf: schema:RestrictedDiet
Node: gameTip
dcid: "gameTip"
domainIncludes: schema:VideoGame
name: "gameTip"
typeOf: schema:Property
rangeIncludes: schema:CreativeWork
Node: GovernmentService
dcid: "GovernmentService"
name: "GovernmentService"
typeOf: schema:Class
subClassOf: schema:Service
Node: albumRelease
dcid: "albumRelease"
inverseOf: "releaseOf"
typeOf: schema:Property
rangeIncludes: schema:MusicRelease
name: "albumRelease"
domainIncludes: schema:MusicAlbum
Node: bookingAgent
dcid: "bookingAgent"
rangeIncludes: schema:Organization
name: "bookingAgent"
typeOf: schema:Property
supersededBy: "broker"
domainIncludes: schema:Reservation
Node: logo
dcid: "logo"
rangeIncludes: schema:ImageObject
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
domainIncludes: schema:Organization
name: "logo"
subPropertyOf: "image"
typeOf: schema:Property
Node: TVClip
dcid: "TVClip"
subClassOf: schema:Clip
typeOf: schema:Class
name: "TVClip"
Node: Room
dcid: "Room"
source: "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
typeOf: schema:Class
subClassOf: schema:Accommodation
name: "Room"
Node: dateDeleted
dcid: "dateDeleted"
domainIncludes: schema:DataFeedItem
rangeIncludes: schema:DateTime
typeOf: schema:Property
name: "dateDeleted"
Node: HowToDirection
dcid: "HowToDirection"
typeOf: schema:Class
name: "HowToDirection"
subClassOf: schema:ListItem
Node: resultComment
dcid: "resultComment"
rangeIncludes: schema:Comment
typeOf: schema:Property
subPropertyOf: "result"
name: "resultComment"
domainIncludes: schema:ReplyAction
Node: OrderProcessing
dcid: "OrderProcessing"
typeOf: schema:OrderStatus
name: "OrderProcessing"
Node: productSupported
dcid: "productSupported"
typeOf: schema:Property
name: "productSupported"
domainIncludes: schema:ContactPoint
rangeIncludes: schema:Text
Node: underName
dcid: "underName"
rangeIncludes: schema:Organization
domainIncludes: schema:Reservation
typeOf: schema:Property
name: "underName"
Node: passengerPriorityStatus
dcid: "passengerPriorityStatus"
name: "passengerPriorityStatus"
rangeIncludes: schema:QualitativeValue
typeOf: schema:Property
domainIncludes: schema:FlightReservation
Node: greaterOrEqual
dcid: "greaterOrEqual"
rangeIncludes: schema:QualitativeValue
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
name: "greaterOrEqual"
domainIncludes: schema:QualitativeValue
typeOf: schema:Property
Node: liveBlogUpdate
dcid: "liveBlogUpdate"
domainIncludes: schema:LiveBlogPosting
rangeIncludes: schema:BlogPosting
name: "liveBlogUpdate"
typeOf: schema:Property
Node: BookFormatType
dcid: "BookFormatType"
subClassOf: schema:Enumeration
typeOf: schema:Class
name: "BookFormatType"
Node: releaseOf
dcid: "releaseOf"
source: "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources"
inverseOf: "albumRelease"
domainIncludes: schema:MusicRelease
typeOf: schema:Property
rangeIncludes: schema:MusicAlbum
name: "releaseOf"
Node: HomeAndConstructionBusiness
dcid: "HomeAndConstructionBusiness"
typeOf: schema:Class
subClassOf: schema:LocalBusiness
name: "HomeAndConstructionBusiness"
Node: contentUrl
dcid: "contentUrl"
rangeIncludes: schema:URL
name: "contentUrl"
domainIncludes: schema:MediaObject
typeOf: schema:Property
Node: codeSampleType
dcid: "codeSampleType"
domainIncludes: schema:SoftwareSourceCode
name: "codeSampleType"
typeOf: schema:Property
rangeIncludes: schema:Text
Node: HowTo
dcid: "HowTo"
typeOf: schema:Class
subClassOf: schema:CreativeWork
name: "HowTo"
Node: CreateAction
dcid: "CreateAction"
name: "CreateAction"
subClassOf: schema:Action
typeOf: schema:Class
Node: hoursAvailable
dcid: "hoursAvailable"
domainIncludes: schema:ContactPoint
rangeIncludes: schema:OpeningHoursSpecification
name: "hoursAvailable"
typeOf: schema:Property
Node: DeliveryEvent
dcid: "DeliveryEvent"
subClassOf: schema:Event
typeOf: schema:Class
name: "DeliveryEvent"
Node: prepTime
dcid: "prepTime"
rangeIncludes: schema:Duration
typeOf: schema:Property
domainIncludes: schema:HowToDirection
name: "prepTime"
Node: Embassy
dcid: "Embassy"
subClassOf: schema:GovernmentBuilding
typeOf: schema:Class
name: "Embassy"
Node: storageRequirements
dcid: "storageRequirements"
name: "storageRequirements"
typeOf: schema:Property
rangeIncludes: schema:Text
domainIncludes: schema:SoftwareApplication
Node: WearAction
dcid: "WearAction"
subClassOf: schema:UseAction
typeOf: schema:Class
name: "WearAction"
Node: sameAs