-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rdf
18187 lines (11576 loc) · 735 KB
/
schema.rdf
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.w3.org/2002/07/owl"
xmlns:schema="http://schema.org/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ns1="http://www.w3.org/2004/02/skos/core#">
<Ontology/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/source -->
<AnnotationProperty rdf:about="http://purl.org/dc/terms/source"/>
<!-- http://schema.org/additionalType -->
<AnnotationProperty rdf:about="http://schema.org/additionalType">
<rdfs:comment>An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.</rdfs:comment>
<rdfs:label>additionalType</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
</AnnotationProperty>
<!-- http://schema.org/inverseOf -->
<AnnotationProperty rdf:about="http://schema.org/inverseOf"/>
<!-- http://schema.org/supersededBy -->
<AnnotationProperty rdf:about="http://schema.org/supersededBy"/>
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#type -->
<AnnotationProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<!-- http://www.w3.org/2004/02/skos/core#closeMatch -->
<AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#closeMatch"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://schema.org/Boolean -->
<rdfs:Datatype rdf:about="http://schema.org/Boolean"/>
<!-- http://schema.org/Date -->
<rdfs:Datatype rdf:about="http://schema.org/Date"/>
<!-- http://schema.org/Time -->
<rdfs:Datatype rdf:about="http://schema.org/Time"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://schema.org/about -->
<ObjectProperty rdf:about="http://schema.org/about">
<rdfs:domain rdf:resource="http://schema.org/CommunicateAction"/>
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:domain rdf:resource="http://schema.org/Event"/>
<rdfs:comment>The subject matter of the content.</rdfs:comment>
<rdfs:label>about</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/acceptedAnswer -->
<ObjectProperty rdf:about="http://schema.org/acceptedAnswer">
<rdfs:subPropertyOf rdf:resource="http://schema.org/suggestedAnswer"/>
<rdfs:domain rdf:resource="http://schema.org/Question"/>
<rdfs:range rdf:resource="http://schema.org/Answer"/>
<rdfs:comment>The answer that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.</rdfs:comment>
<rdfs:label>acceptedAnswer</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/acceptedOffer -->
<ObjectProperty rdf:about="http://schema.org/acceptedOffer">
<rdfs:domain rdf:resource="http://schema.org/Order"/>
<rdfs:range rdf:resource="http://schema.org/Offer"/>
<rdfs:comment>The offer(s) -- e.g., product, quantity and price combinations -- included in the order.</rdfs:comment>
<rdfs:label>acceptedOffer</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/acceptedPaymentMethod -->
<ObjectProperty rdf:about="http://schema.org/acceptedPaymentMethod">
<rdfs:domain rdf:resource="http://schema.org/Demand"/>
<rdfs:domain rdf:resource="http://schema.org/Offer"/>
<rdfs:range rdf:resource="http://schema.org/LoanOrCredit"/>
<rdfs:range rdf:resource="http://schema.org/PaymentMethod"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The payment method(s) accepted by seller for this offer.</rdfs:comment>
<rdfs:label>acceptedPaymentMethod</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/acceptsReservations -->
<ObjectProperty rdf:about="http://schema.org/acceptsReservations">
<rdfs:domain rdf:resource="http://schema.org/FoodEstablishment"/>
<rdfs:comment>Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings <code>Yes</code> or <code>No</code>.</rdfs:comment>
<rdfs:label>acceptsReservations</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessCode -->
<ObjectProperty rdf:about="http://schema.org/accessCode">
<rdfs:domain rdf:resource="http://schema.org/DeliveryEvent"/>
<rdfs:comment>Password, PIN, or access code needed for delivery (e.g. from a locker).</rdfs:comment>
<rdfs:label>accessCode</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessMode -->
<ObjectProperty rdf:about="http://schema.org/accessMode">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<dct:source rdf:resource="https://github.com/schemaorg/schemaorg/issues/1100"/>
<schema:category>issue-1110</schema:category>
<rdfs:comment>The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.</rdfs:comment>
<rdfs:label>accessMode</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessModeSufficient -->
<ObjectProperty rdf:about="http://schema.org/accessModeSufficient">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<dct:source rdf:resource="https://github.com/schemaorg/schemaorg/issues/1100"/>
<schema:category>issue-1110</schema:category>
<rdfs:comment>A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.</rdfs:comment>
<rdfs:label>accessModeSufficient</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessibilityAPI -->
<ObjectProperty rdf:about="http://schema.org/accessibilityAPI">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:comment>Indicates that the resource is compatible with the referenced accessibility API (<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>).</rdfs:comment>
<rdfs:label>accessibilityAPI</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessibilityControl -->
<ObjectProperty rdf:about="http://schema.org/accessibilityControl">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:comment>Identifies input methods that are sufficient to fully control the described resource (<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>).</rdfs:comment>
<rdfs:label>accessibilityControl</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessibilityFeature -->
<ObjectProperty rdf:about="http://schema.org/accessibilityFeature">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:comment>Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility (<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>).</rdfs:comment>
<rdfs:label>accessibilityFeature</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessibilityHazard -->
<ObjectProperty rdf:about="http://schema.org/accessibilityHazard">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:comment>A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 (<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>).</rdfs:comment>
<rdfs:label>accessibilityHazard</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accessibilitySummary -->
<ObjectProperty rdf:about="http://schema.org/accessibilitySummary">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<dct:source rdf:resource="https://github.com/schemaorg/schemaorg/issues/1100"/>
<schema:category>issue-1110</schema:category>
<rdfs:comment>A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed."</rdfs:comment>
<rdfs:label>accessibilitySummary</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accountId -->
<ObjectProperty rdf:about="http://schema.org/accountId">
<rdfs:subPropertyOf rdf:resource="http://schema.org/identifier"/>
<rdfs:domain rdf:resource="http://schema.org/Invoice"/>
<rdfs:comment>The identifier for the account the payment will be applied to.</rdfs:comment>
<rdfs:label>accountId</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/accountablePerson -->
<ObjectProperty rdf:about="http://schema.org/accountablePerson">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<rdfs:comment>Specifies the Person that is legally accountable for the CreativeWork.</rdfs:comment>
<rdfs:label>accountablePerson</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/acquiredFrom -->
<ObjectProperty rdf:about="http://schema.org/acquiredFrom">
<rdfs:domain rdf:resource="http://schema.org/OwnershipInfo"/>
<rdfs:range rdf:resource="http://schema.org/Organization"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The organization or person from which the product was acquired.</rdfs:comment>
<rdfs:label>acquiredFrom</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actionApplication -->
<ObjectProperty rdf:about="http://schema.org/actionApplication">
<rdfs:domain rdf:resource="http://schema.org/EntryPoint"/>
<rdfs:range rdf:resource="http://schema.org/SoftwareApplication"/>
<rdfs:comment>An application that can complete the request.</rdfs:comment>
<rdfs:label>actionApplication</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actionOption -->
<ObjectProperty rdf:about="http://schema.org/actionOption">
<rdfs:subPropertyOf rdf:resource="http://schema.org/object"/>
<rdfs:domain rdf:resource="http://schema.org/ChooseAction"/>
<rdfs:comment>A sub property of object. The options subject to this action.</rdfs:comment>
<rdfs:label>actionOption</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actionPlatform -->
<ObjectProperty rdf:about="http://schema.org/actionPlatform">
<rdfs:domain rdf:resource="http://schema.org/EntryPoint"/>
<rdfs:comment>The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.</rdfs:comment>
<rdfs:label>actionPlatform</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actionStatus -->
<ObjectProperty rdf:about="http://schema.org/actionStatus">
<rdfs:domain rdf:resource="http://schema.org/Action"/>
<rdfs:range rdf:resource="http://schema.org/ActionStatusType"/>
<rdfs:comment>Indicates the current disposition of the Action.</rdfs:comment>
<rdfs:label>actionStatus</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actor -->
<ObjectProperty rdf:about="http://schema.org/actor">
<rdfs:domain rdf:resource="http://schema.org/Clip"/>
<rdfs:domain rdf:resource="http://schema.org/CreativeWorkSeason"/>
<rdfs:domain rdf:resource="http://schema.org/Episode"/>
<rdfs:domain rdf:resource="http://schema.org/Event"/>
<rdfs:domain rdf:resource="http://schema.org/Movie"/>
<rdfs:domain rdf:resource="http://schema.org/MovieSeries"/>
<rdfs:domain rdf:resource="http://schema.org/RadioSeries"/>
<rdfs:domain rdf:resource="http://schema.org/TVSeries"/>
<rdfs:domain rdf:resource="http://schema.org/VideoGame"/>
<rdfs:domain rdf:resource="http://schema.org/VideoGameSeries"/>
<rdfs:domain rdf:resource="http://schema.org/VideoObject"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<rdfs:comment>An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.</rdfs:comment>
<rdfs:label>actor</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/actors -->
<ObjectProperty rdf:about="http://schema.org/actors">
<rdfs:domain rdf:resource="http://schema.org/Clip"/>
<rdfs:domain rdf:resource="http://schema.org/Episode"/>
<rdfs:domain rdf:resource="http://schema.org/Movie"/>
<rdfs:domain rdf:resource="http://schema.org/MovieSeries"/>
<rdfs:domain rdf:resource="http://schema.org/RadioSeries"/>
<rdfs:domain rdf:resource="http://schema.org/TVSeries"/>
<rdfs:domain rdf:resource="http://schema.org/VideoGame"/>
<rdfs:domain rdf:resource="http://schema.org/VideoGameSeries"/>
<rdfs:domain rdf:resource="http://schema.org/VideoObject"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<schema:supersededBy rdf:resource="http://schema.org/actor"/>
<rdfs:comment>An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.</rdfs:comment>
<rdfs:label>actors</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/addOn -->
<ObjectProperty rdf:about="http://schema.org/addOn">
<rdfs:domain rdf:resource="http://schema.org/Offer"/>
<rdfs:range rdf:resource="http://schema.org/Offer"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).</rdfs:comment>
<rdfs:label>addOn</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/additionalName -->
<ObjectProperty rdf:about="http://schema.org/additionalName">
<rdfs:domain rdf:resource="http://schema.org/Person"/>
<rdfs:comment>An additional name for a Person, can be used for a middle name.</rdfs:comment>
<rdfs:label>additionalName</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/additionalNumberOfGuests -->
<ObjectProperty rdf:about="http://schema.org/additionalNumberOfGuests">
<rdfs:domain rdf:resource="http://schema.org/RsvpAction"/>
<rdfs:comment>If responding yes, the number of guests who will attend in addition to the invitee.</rdfs:comment>
<rdfs:label>additionalNumberOfGuests</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/additionalProperty -->
<ObjectProperty rdf:about="http://schema.org/additionalProperty">
<rdfs:domain rdf:resource="http://schema.org/Place"/>
<rdfs:domain rdf:resource="http://schema.org/Product"/>
<rdfs:domain rdf:resource="http://schema.org/QualitativeValue"/>
<rdfs:domain rdf:resource="http://schema.org/QuantitativeValue"/>
<rdfs:range rdf:resource="http://schema.org/PropertyValue"/>
<rdfs:comment>A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.</p>
<p>Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.</rdfs:comment>
<rdfs:label>additionalProperty</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/address -->
<ObjectProperty rdf:about="http://schema.org/address">
<rdfs:domain rdf:resource="http://schema.org/GeoCoordinates"/>
<rdfs:domain rdf:resource="http://schema.org/GeoShape"/>
<rdfs:domain rdf:resource="http://schema.org/Organization"/>
<rdfs:domain rdf:resource="http://schema.org/Person"/>
<rdfs:domain rdf:resource="http://schema.org/Place"/>
<rdfs:range rdf:resource="http://schema.org/PostalAddress"/>
<rdfs:comment>Physical address of the item.</rdfs:comment>
<rdfs:label>address</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/addressCountry -->
<ObjectProperty rdf:about="http://schema.org/addressCountry">
<rdfs:domain rdf:resource="http://schema.org/GeoCoordinates"/>
<rdfs:domain rdf:resource="http://schema.org/GeoShape"/>
<rdfs:domain rdf:resource="http://schema.org/PostalAddress"/>
<rdfs:range rdf:resource="http://schema.org/Country"/>
<rdfs:comment>The country. For example, USA. You can also provide the two-letter <a href="http://en.wikipedia.org/wiki/ISO_3166-1">ISO 3166-1 alpha-2 country code</a>.</rdfs:comment>
<rdfs:label>addressCountry</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/addressLocality -->
<ObjectProperty rdf:about="http://schema.org/addressLocality">
<rdfs:domain rdf:resource="http://schema.org/PostalAddress"/>
<rdfs:comment>The locality. For example, Mountain View.</rdfs:comment>
<rdfs:label>addressLocality</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/addressRegion -->
<ObjectProperty rdf:about="http://schema.org/addressRegion">
<rdfs:domain rdf:resource="http://schema.org/PostalAddress"/>
<rdfs:comment>The region. For example, CA.</rdfs:comment>
<rdfs:label>addressRegion</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/advanceBookingRequirement -->
<ObjectProperty rdf:about="http://schema.org/advanceBookingRequirement">
<rdfs:domain rdf:resource="http://schema.org/Demand"/>
<rdfs:domain rdf:resource="http://schema.org/Offer"/>
<rdfs:range rdf:resource="http://schema.org/QuantitativeValue"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The amount of time that is required between accepting the offer and the actual usage of the resource or service.</rdfs:comment>
<rdfs:label>advanceBookingRequirement</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/affiliation -->
<ObjectProperty rdf:about="http://schema.org/affiliation">
<rdfs:subPropertyOf rdf:resource="http://schema.org/memberOf"/>
<rdfs:domain rdf:resource="http://schema.org/Person"/>
<rdfs:range rdf:resource="http://schema.org/Organization"/>
<rdfs:comment>An organization that this person is affiliated with. For example, a school/university, a club, or a team.</rdfs:comment>
<rdfs:label>affiliation</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/afterMedia -->
<ObjectProperty rdf:about="http://schema.org/afterMedia">
<rdfs:domain rdf:resource="http://schema.org/HowToDirection"/>
<rdfs:range rdf:resource="http://schema.org/MediaObject"/>
<rdfs:comment>A media object representing the circumstances after performing this direction.</rdfs:comment>
<rdfs:label>afterMedia</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/agent -->
<ObjectProperty rdf:about="http://schema.org/agent">
<rdfs:domain rdf:resource="http://schema.org/Action"/>
<rdfs:range rdf:resource="http://schema.org/Organization"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<rdfs:comment>The direct performer or driver of the action (animate or inanimate). e.g. <em>John</em> wrote a book.</rdfs:comment>
<rdfs:label>agent</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/aggregateRating -->
<ObjectProperty rdf:about="http://schema.org/aggregateRating">
<rdfs:domain rdf:resource="http://schema.org/Brand"/>
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:domain rdf:resource="http://schema.org/Event"/>
<rdfs:domain rdf:resource="http://schema.org/Offer"/>
<rdfs:domain rdf:resource="http://schema.org/Organization"/>
<rdfs:domain rdf:resource="http://schema.org/Place"/>
<rdfs:domain rdf:resource="http://schema.org/Product"/>
<rdfs:domain rdf:resource="http://schema.org/Service"/>
<rdfs:range rdf:resource="http://schema.org/AggregateRating"/>
<rdfs:comment>The overall rating, based on a collection of reviews or ratings, of the item.</rdfs:comment>
<rdfs:label>aggregateRating</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/aircraft -->
<ObjectProperty rdf:about="http://schema.org/aircraft">
<rdfs:domain rdf:resource="http://schema.org/Flight"/>
<rdfs:range rdf:resource="http://schema.org/Vehicle"/>
<rdfs:comment>The kind of aircraft (e.g., "Boeing 747").</rdfs:comment>
<rdfs:label>aircraft</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/album -->
<ObjectProperty rdf:about="http://schema.org/album">
<rdfs:domain rdf:resource="http://schema.org/MusicGroup"/>
<rdfs:range rdf:resource="http://schema.org/MusicAlbum"/>
<rdfs:comment>A music album.</rdfs:comment>
<rdfs:label>album</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/albumProductionType -->
<ObjectProperty rdf:about="http://schema.org/albumProductionType">
<rdfs:domain rdf:resource="http://schema.org/MusicAlbum"/>
<rdfs:range rdf:resource="http://schema.org/MusicAlbumProductionType"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"/>
<rdfs:comment>Classification of the album by it's type of content: soundtrack, live album, studio album, etc.</rdfs:comment>
<rdfs:label>albumProductionType</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/albumRelease -->
<ObjectProperty rdf:about="http://schema.org/albumRelease">
<rdfs:domain rdf:resource="http://schema.org/MusicAlbum"/>
<rdfs:range rdf:resource="http://schema.org/MusicRelease"/>
<schema:inverseOf rdf:resource="http://schema.org/releaseOf"/>
<rdfs:comment>A release of this album.</rdfs:comment>
<rdfs:label>albumRelease</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/albumReleaseType -->
<ObjectProperty rdf:about="http://schema.org/albumReleaseType">
<rdfs:domain rdf:resource="http://schema.org/MusicAlbum"/>
<rdfs:range rdf:resource="http://schema.org/MusicAlbumReleaseType"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"/>
<rdfs:comment>The kind of release which this album is: single, EP or album.</rdfs:comment>
<rdfs:label>albumReleaseType</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/albums -->
<ObjectProperty rdf:about="http://schema.org/albums">
<rdfs:domain rdf:resource="http://schema.org/MusicGroup"/>
<rdfs:range rdf:resource="http://schema.org/MusicAlbum"/>
<schema:supersededBy rdf:resource="http://schema.org/album"/>
<rdfs:comment>A collection of music albums.</rdfs:comment>
<rdfs:label>albums</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/alignmentType -->
<ObjectProperty rdf:about="http://schema.org/alignmentType">
<rdfs:domain rdf:resource="http://schema.org/AlignmentObject"/>
<rdfs:comment>A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationalLevel'.</rdfs:comment>
<rdfs:label>alignmentType</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/alternativeHeadline -->
<ObjectProperty rdf:about="http://schema.org/alternativeHeadline">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:comment>A secondary title of the CreativeWork.</rdfs:comment>
<rdfs:label>alternativeHeadline</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/alumni -->
<ObjectProperty rdf:about="http://schema.org/alumni">
<rdfs:domain rdf:resource="http://schema.org/EducationalOrganization"/>
<rdfs:domain rdf:resource="http://schema.org/Organization"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<schema:inverseOf rdf:resource="http://schema.org/alumniOf"/>
<rdfs:comment>Alumni of an organization.</rdfs:comment>
<rdfs:label>alumni</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/alumniOf -->
<ObjectProperty rdf:about="http://schema.org/alumniOf">
<rdfs:domain rdf:resource="http://schema.org/Person"/>
<rdfs:range rdf:resource="http://schema.org/EducationalOrganization"/>
<rdfs:range rdf:resource="http://schema.org/Organization"/>
<schema:inverseOf rdf:resource="http://schema.org/alumni"/>
<rdfs:comment>An organization that the person is an alumni of.</rdfs:comment>
<rdfs:label>alumniOf</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/amenityFeature -->
<ObjectProperty rdf:about="http://schema.org/amenityFeature">
<rdfs:domain rdf:resource="http://schema.org/Accommodation"/>
<rdfs:domain rdf:resource="http://schema.org/LodgingBusiness"/>
<rdfs:domain rdf:resource="http://schema.org/Place"/>
<rdfs:range rdf:resource="http://schema.org/LocationFeatureSpecification"/>
<dct:source rdf:resource="https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"/>
<rdfs:comment>An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.</rdfs:comment>
<rdfs:label>amenityFeature</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/amount -->
<ObjectProperty rdf:about="http://schema.org/amount">
<rdfs:domain rdf:resource="http://schema.org/DatedMoneySpecification"/>
<rdfs:domain rdf:resource="http://schema.org/InvestmentOrDeposit"/>
<rdfs:domain rdf:resource="http://schema.org/LoanOrCredit"/>
<rdfs:range rdf:resource="http://schema.org/MonetaryAmount"/>
<rdfs:comment>The amount of money.</rdfs:comment>
<rdfs:label>amount</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/amountOfThisGood -->
<ObjectProperty rdf:about="http://schema.org/amountOfThisGood">
<rdfs:domain rdf:resource="http://schema.org/TypeAndQuantityNode"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The quantity of the goods included in the offer.</rdfs:comment>
<rdfs:label>amountOfThisGood</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/annualPercentageRate -->
<ObjectProperty rdf:about="http://schema.org/annualPercentageRate">
<rdfs:domain rdf:resource="http://schema.org/FinancialProduct"/>
<rdfs:range rdf:resource="http://schema.org/QuantitativeValue"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"/>
<rdfs:comment>The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.</rdfs:comment>
<rdfs:label>annualPercentageRate</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/answerCount -->
<ObjectProperty rdf:about="http://schema.org/answerCount">
<rdfs:domain rdf:resource="http://schema.org/Question"/>
<rdfs:comment>The number of answers this question has received.</rdfs:comment>
<rdfs:label>answerCount</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/application -->
<ObjectProperty rdf:about="http://schema.org/application">
<rdfs:domain rdf:resource="http://schema.org/EntryPoint"/>
<rdfs:range rdf:resource="http://schema.org/SoftwareApplication"/>
<schema:supersededBy rdf:resource="http://schema.org/actionApplication"/>
<rdfs:comment>An application that can complete the request.</rdfs:comment>
<rdfs:label>application</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/applicationCategory -->
<ObjectProperty rdf:about="http://schema.org/applicationCategory">
<rdfs:domain rdf:resource="http://schema.org/SoftwareApplication"/>
<rdfs:comment>Type of software application, e.g. 'Game, Multimedia'.</rdfs:comment>
<rdfs:label>applicationCategory</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/applicationSubCategory -->
<ObjectProperty rdf:about="http://schema.org/applicationSubCategory">
<rdfs:domain rdf:resource="http://schema.org/SoftwareApplication"/>
<rdfs:comment>Subcategory of the application, e.g. 'Arcade Game'.</rdfs:comment>
<rdfs:label>applicationSubCategory</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/applicationSuite -->
<ObjectProperty rdf:about="http://schema.org/applicationSuite">
<rdfs:domain rdf:resource="http://schema.org/SoftwareApplication"/>
<rdfs:comment>The name of the application suite to which the application belongs (e.g. Excel belongs to Office).</rdfs:comment>
<rdfs:label>applicationSuite</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/appliesToDeliveryMethod -->
<ObjectProperty rdf:about="http://schema.org/appliesToDeliveryMethod">
<rdfs:domain rdf:resource="http://schema.org/DeliveryChargeSpecification"/>
<rdfs:domain rdf:resource="http://schema.org/PaymentChargeSpecification"/>
<rdfs:range rdf:resource="http://schema.org/DeliveryMethod"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The delivery method(s) to which the delivery charge or payment charge specification applies.</rdfs:comment>
<rdfs:label>appliesToDeliveryMethod</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/appliesToPaymentMethod -->
<ObjectProperty rdf:about="http://schema.org/appliesToPaymentMethod">
<rdfs:domain rdf:resource="http://schema.org/PaymentChargeSpecification"/>
<rdfs:range rdf:resource="http://schema.org/PaymentMethod"/>
<dct:source rdf:resource="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"/>
<rdfs:comment>The payment method(s) to which the payment charge specification applies.</rdfs:comment>
<rdfs:label>appliesToPaymentMethod</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/area -->
<ObjectProperty rdf:about="http://schema.org/area">
<rdfs:domain rdf:resource="http://schema.org/BroadcastService"/>
<rdfs:range rdf:resource="http://schema.org/Place"/>
<schema:supersededBy rdf:resource="http://schema.org/serviceArea"/>
<rdfs:comment>The area within which users can expect to reach the broadcast service.</rdfs:comment>
<rdfs:label>area</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/areaServed -->
<ObjectProperty rdf:about="http://schema.org/areaServed">
<rdfs:domain rdf:resource="http://schema.org/ContactPoint"/>
<rdfs:domain rdf:resource="http://schema.org/DeliveryChargeSpecification"/>
<rdfs:domain rdf:resource="http://schema.org/Demand"/>
<rdfs:domain rdf:resource="http://schema.org/Offer"/>
<rdfs:domain rdf:resource="http://schema.org/Organization"/>
<rdfs:domain rdf:resource="http://schema.org/Service"/>
<rdfs:range rdf:resource="http://schema.org/AdministrativeArea"/>
<rdfs:range rdf:resource="http://schema.org/GeoShape"/>
<rdfs:range rdf:resource="http://schema.org/Place"/>
<rdfs:comment>The geographic area where a service or offered item is provided.</rdfs:comment>
<rdfs:label>areaServed</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalAirport -->
<ObjectProperty rdf:about="http://schema.org/arrivalAirport">
<rdfs:domain rdf:resource="http://schema.org/Flight"/>
<rdfs:range rdf:resource="http://schema.org/Airport"/>
<rdfs:comment>The airport where the flight terminates.</rdfs:comment>
<rdfs:label>arrivalAirport</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalBusStop -->
<ObjectProperty rdf:about="http://schema.org/arrivalBusStop">
<rdfs:domain rdf:resource="http://schema.org/BusTrip"/>
<rdfs:range rdf:resource="http://schema.org/BusStation"/>
<rdfs:range rdf:resource="http://schema.org/BusStop"/>
<rdfs:comment>The stop or station from which the bus arrives.</rdfs:comment>
<rdfs:label>arrivalBusStop</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalGate -->
<ObjectProperty rdf:about="http://schema.org/arrivalGate">
<rdfs:domain rdf:resource="http://schema.org/Flight"/>
<rdfs:comment>Identifier of the flight's arrival gate.</rdfs:comment>
<rdfs:label>arrivalGate</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalPlatform -->
<ObjectProperty rdf:about="http://schema.org/arrivalPlatform">
<rdfs:domain rdf:resource="http://schema.org/TrainTrip"/>
<rdfs:comment>The platform where the train arrives.</rdfs:comment>
<rdfs:label>arrivalPlatform</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalStation -->
<ObjectProperty rdf:about="http://schema.org/arrivalStation">
<rdfs:domain rdf:resource="http://schema.org/TrainTrip"/>
<rdfs:range rdf:resource="http://schema.org/TrainStation"/>
<rdfs:comment>The station where the train trip ends.</rdfs:comment>
<rdfs:label>arrivalStation</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalTerminal -->
<ObjectProperty rdf:about="http://schema.org/arrivalTerminal">
<rdfs:domain rdf:resource="http://schema.org/Flight"/>
<rdfs:comment>Identifier of the flight's arrival terminal.</rdfs:comment>
<rdfs:label>arrivalTerminal</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/arrivalTime -->
<ObjectProperty rdf:about="http://schema.org/arrivalTime">
<rdfs:domain rdf:resource="http://schema.org/BusTrip"/>
<rdfs:domain rdf:resource="http://schema.org/Flight"/>
<rdfs:domain rdf:resource="http://schema.org/TrainTrip"/>
<rdfs:comment>The expected arrival time.</rdfs:comment>
<rdfs:label>arrivalTime</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/artEdition -->
<ObjectProperty rdf:about="http://schema.org/artEdition">
<rdfs:domain rdf:resource="http://schema.org/VisualArtwork"/>
<rdfs:comment>The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example "20").</rdfs:comment>
<rdfs:label>artEdition</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/artMedium -->
<ObjectProperty rdf:about="http://schema.org/artMedium">
<rdfs:subPropertyOf rdf:resource="http://schema.org/material"/>
<rdfs:domain rdf:resource="http://schema.org/VisualArtwork"/>
<rdfs:comment>The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)</rdfs:comment>
<rdfs:label>artMedium</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/artform -->
<ObjectProperty rdf:about="http://schema.org/artform">
<rdfs:domain rdf:resource="http://schema.org/VisualArtwork"/>
<rdfs:comment>e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.</rdfs:comment>
<rdfs:label>artform</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/articleBody -->
<ObjectProperty rdf:about="http://schema.org/articleBody">
<rdfs:domain rdf:resource="http://schema.org/Article"/>
<rdfs:comment>The actual body of the article.</rdfs:comment>
<rdfs:label>articleBody</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/articleSection -->
<ObjectProperty rdf:about="http://schema.org/articleSection">
<rdfs:domain rdf:resource="http://schema.org/Article"/>
<rdfs:comment>Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.</rdfs:comment>
<rdfs:label>articleSection</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/artworkSurface -->
<ObjectProperty rdf:about="http://schema.org/artworkSurface">
<rdfs:domain rdf:resource="http://schema.org/VisualArtwork"/>
<rdfs:comment>The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.</rdfs:comment>
<rdfs:label>artworkSurface</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/assembly -->
<ObjectProperty rdf:about="http://schema.org/assembly">
<rdfs:domain rdf:resource="http://schema.org/APIReference"/>
<schema:supersededBy rdf:resource="http://schema.org/executableLibraryName"/>
<rdfs:comment>Library file name e.g., mscorlib.dll, system.web.dll.</rdfs:comment>
<rdfs:label>assembly</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/assemblyVersion -->
<ObjectProperty rdf:about="http://schema.org/assemblyVersion">
<rdfs:domain rdf:resource="http://schema.org/APIReference"/>
<rdfs:comment>Associated product/technology version. e.g., .NET Framework 4.5.</rdfs:comment>
<rdfs:label>assemblyVersion</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/associatedArticle -->
<ObjectProperty rdf:about="http://schema.org/associatedArticle">
<rdfs:domain rdf:resource="http://schema.org/MediaObject"/>
<rdfs:range rdf:resource="http://schema.org/NewsArticle"/>
<rdfs:comment>A NewsArticle associated with the Media Object.</rdfs:comment>
<rdfs:label>associatedArticle</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/associatedMedia -->
<ObjectProperty rdf:about="http://schema.org/associatedMedia">
<rdfs:domain rdf:resource="http://schema.org/CreativeWork"/>
<rdfs:range rdf:resource="http://schema.org/MediaObject"/>
<rdfs:comment>A media object that encodes this CreativeWork. This property is a synonym for encoding.</rdfs:comment>
<rdfs:label>associatedMedia</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/athlete -->
<ObjectProperty rdf:about="http://schema.org/athlete">
<rdfs:domain rdf:resource="http://schema.org/SportsTeam"/>
<rdfs:range rdf:resource="http://schema.org/Person"/>
<rdfs:comment>A person that acts as performing member of a sports team; a player as opposed to a coach.</rdfs:comment>
<rdfs:label>athlete</rdfs:label>
</ObjectProperty>
<!-- http://schema.org/attendee -->
<ObjectProperty rdf:about="http://schema.org/attendee">
<rdfs:domain rdf:resource="http://schema.org/Event"/>