forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rdfa
12097 lines (10872 loc) · 935 KB
/
schema.rdfa
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Schema.org master file: RDFS in RDFa</title>
<meta charset="UTF-8" />
<style type="text/css">
span.h {
padding-left: 0px;
font-weight: bold;
}
span {
display: block;
padding-left: 10px;
}
</style>
</head>
<body>
<h1>Schema.org core schema</h1>
<p>This is an RDFa-based representation of the schema.org schema, the underlying representation of the schema.org vocabulary.</p>
<p>It is represented in a form based on W3C RDF/RDFS. We encourage proposals for schema.org improvements to be expressed
in this same style. See the <a href="http://schema.org/docs/howwework.html">how we work</a> document for information on collaboration.</p>
<p>
See <a href="http://schema.org/docs/datamodel.html">datamodel</a> for more details,
the <a href="http://schema.org/docs/developers.html">developers</a> page for alternate formats.
</p>
<p>
Note: the style of RDFa used here may change in the future. To see the substantive content of the schema, view the
HTML source markup. We use a simple subset of RDFa for syntax, including prefixes that are declared in the
<a href="http://www.w3.org/2011/rdfa-context/rdfa-1.1">RDFa initial context</a>. We also use Markdown syntax within comments to
make hypertext documentation easier to edit. Other <a href="http://schema.org/docs/developers.html#formats">formats</a> are available.
</p>
<hr />
<div typeof="rdfs:Class" resource="http://schema.org/Thing">
<span class="h" property="rdfs:label">Thing</span>
<span property="rdfs:comment">The most generic type of item.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CreativeWork">
<span class="h" property="rdfs:label">CreativeWork</span>
<span property="rdfs:comment">The most generic kind of creative work, including books, movies, photographs, software programs, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/WebPage">
<span class="h" property="rdfs:label">WebPage</span>
<span property="rdfs:comment">A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as <code>breadcrumb</code> may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AboutPage">
<span class="h" property="rdfs:label">AboutPage</span>
<span property="rdfs:comment">Web page type: About page.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/WebPage">WebPage</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Organization">
<span class="h" property="rdfs:label">Organization</span>
<span property="rdfs:comment">An organization such as a school, NGO, corporation, club, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Place">
<span class="h" property="rdfs:label">Place</span>
<span property="rdfs:comment">Entities that have a somewhat fixed, physical extension.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/LocalBusiness">
<span class="h" property="rdfs:label">LocalBusiness</span>
<span property="rdfs:comment">A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Place">Place</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/MedicalOrganization">
<span class="h" property="rdfs:label">MedicalOrganization</span>
<span property="rdfs:comment">A medical organization (physical or not), such as hospital, institution or clinic.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Dentist">
<span class="h" property="rdfs:label">Dentist</span>
<span property="rdfs:comment">A dentist.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalOrganization">MedicalOrganization</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Hospital">
<span class="h" property="rdfs:label">Hospital</span>
<span property="rdfs:comment">A hospital.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EmergencyService">EmergencyService</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalOrganization">MedicalOrganization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Physician">
<span class="h" property="rdfs:label">Physician</span>
<span property="rdfs:comment">A doctor's office.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalOrganization">MedicalOrganization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Pharmacy">
<span class="h" property="rdfs:label">Pharmacy</span>
<span property="rdfs:comment">A pharmacy or drugstore.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalOrganization">MedicalOrganization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FinancialService">
<span class="h" property="rdfs:label">FinancialService</span>
<span property="rdfs:comment">Financial services business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ProfessionalService">
<span class="h" property="rdfs:label">ProfessionalService</span>
<span property="rdfs:comment">Original definition: "provider of professional services."\n\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],
[[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],
[[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/LegalService">
<span class="h" property="rdfs:label">LegalService</span>
<span property="rdfs:comment">A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AccountingService">
<span class="h" property="rdfs:label">AccountingService</span>
<span property="rdfs:comment">Accountancy business.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s).
</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FinancialService">FinancialService</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AdministrativeArea">
<span class="h" property="rdfs:label">AdministrativeArea</span>
<span property="rdfs:comment">A geographical region, typically under the jurisdiction of a particular government.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Place">Place</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EntertainmentBusiness">
<span class="h" property="rdfs:label">EntertainmentBusiness</span>
<span property="rdfs:comment">A business providing entertainment.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AdultEntertainment">
<span class="h" property="rdfs:label">AdultEntertainment</span>
<span property="rdfs:comment">An adult entertainment establishment.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EntertainmentBusiness">EntertainmentBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Intangible">
<span class="h" property="rdfs:label">Intangible</span>
<span property="rdfs:comment">A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Offer">
<span class="h" property="rdfs:label">Offer</span>
<span property="rdfs:comment">An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms">GoodRelationsProperties</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AggregateOffer">
<span class="h" property="rdfs:label">AggregateOffer</span>
<span property="rdfs:comment">When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Offer">Offer</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Rating">
<span class="h" property="rdfs:label">Rating</span>
<span property="rdfs:comment">A rating is an evaluation on a numeric scale, such as 1 to 5 stars.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AggregateRating">
<span class="h" property="rdfs:label">AggregateRating</span>
<span property="rdfs:comment">The average rating based on multiple ratings or reviews.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Rating">Rating</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CivicStructure">
<span class="h" property="rdfs:label">CivicStructure</span>
<span property="rdfs:comment">A public structure, such as a town hall or concert hall.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Place">Place</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Airport">
<span class="h" property="rdfs:label">Airport</span>
<span property="rdfs:comment">An airport.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AmusementPark">
<span class="h" property="rdfs:label">AmusementPark</span>
<span property="rdfs:comment">An amusement park.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EntertainmentBusiness">EntertainmentBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AnimalShelter">
<span class="h" property="rdfs:label">AnimalShelter</span>
<span property="rdfs:comment">Animal shelter.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Residence">
<span class="h" property="rdfs:label">Residence</span>
<span property="rdfs:comment">The place where a person lives.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Place">Place</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ApartmentComplex">
<span class="h" property="rdfs:label">ApartmentComplex</span>
<span property="rdfs:comment">Residence type: Apartment complex.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Residence">Residence</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Aquarium">
<span class="h" property="rdfs:label">Aquarium</span>
<span property="rdfs:comment">Aquarium.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ArtGallery">
<span class="h" property="rdfs:label">ArtGallery</span>
<span property="rdfs:comment">An art gallery.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EntertainmentBusiness">EntertainmentBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Article">
<span class="h" property="rdfs:label">Article</span>
<span property="rdfs:comment">An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Attorney">
<span class="h" property="rdfs:label">Attorney</span>
<span property="rdfs:comment">Professional service: Attorney. \n\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LegalService">LegalService</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Audience">
<span class="h" property="rdfs:label">Audience</span>
<span property="rdfs:comment">Intended audience for an item, i.e. the group for whom the item was created.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
</div>
<div typeof="http://schema.org/Audience" resource="http://schema.org/Researcher">
<span class="h" property="rdfs:label">Researcher</span>
<span property="rdfs:comment">Researchers.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/MediaObject">
<span class="h" property="rdfs:label">MediaObject</span>
<span property="rdfs:comment">A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AudioObject">
<span class="h" property="rdfs:label">AudioObject</span>
<span property="rdfs:comment">An audio file.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MediaObject">MediaObject</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutomotiveBusiness">
<span class="h" property="rdfs:label">AutomotiveBusiness</span>
<span property="rdfs:comment">Car repair, sales, or parts.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoBodyShop">
<span class="h" property="rdfs:label">AutoBodyShop</span>
<span property="rdfs:comment">Auto body shop.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoDealer">
<span class="h" property="rdfs:label">AutoDealer</span>
<span property="rdfs:comment">An car dealership.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Store">
<span class="h" property="rdfs:label">Store</span>
<span property="rdfs:comment">A retail good store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoPartsStore">
<span class="h" property="rdfs:label">AutoPartsStore</span>
<span property="rdfs:comment">An auto parts store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoRental">
<span class="h" property="rdfs:label">AutoRental</span>
<span property="rdfs:comment">A car rental business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoRepair">
<span class="h" property="rdfs:label">AutoRepair</span>
<span property="rdfs:comment">Car repair business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutoWash">
<span class="h" property="rdfs:label">AutoWash</span>
<span property="rdfs:comment">A car wash business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/AutomatedTeller">
<span class="h" property="rdfs:label">AutomatedTeller</span>
<span property="rdfs:comment">ATM/cash machine.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FinancialService">FinancialService</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FoodEstablishment">
<span class="h" property="rdfs:label">FoodEstablishment</span>
<span property="rdfs:comment">A food-related business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Bakery">
<span class="h" property="rdfs:label">Bakery</span>
<span property="rdfs:comment">A bakery.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FoodEstablishment">FoodEstablishment</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BankOrCreditUnion">
<span class="h" property="rdfs:label">BankOrCreditUnion</span>
<span property="rdfs:comment">Bank or credit union.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FinancialService">FinancialService</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Barcode">
<span class="h" property="rdfs:label">Barcode</span>
<span property="rdfs:comment">An image of a visual machine-readable code such as a barcode or QR code.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/ImageObject">ImageObject</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BarOrPub">
<span class="h" property="rdfs:label">BarOrPub</span>
<span property="rdfs:comment">A bar or pub.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FoodEstablishment">FoodEstablishment</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Beach">
<span class="h" property="rdfs:label">Beach</span>
<span property="rdfs:comment">Beach.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/HealthAndBeautyBusiness">
<span class="h" property="rdfs:label">HealthAndBeautyBusiness</span>
<span property="rdfs:comment">Health and beauty.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BeautySalon">
<span class="h" property="rdfs:label">BeautySalon</span>
<span property="rdfs:comment">Beauty salon.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/HealthAndBeautyBusiness">HealthAndBeautyBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/LodgingBusiness">
<span class="h" property="rdfs:label">LodgingBusiness</span>
<span property="rdfs:comment">A lodging business, such as a motel, hotel, or inn.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BedAndBreakfast">
<span class="h" property="rdfs:label">BedAndBreakfast</span>
<span property="rdfs:comment">Bed and breakfast.
<br /><br />
See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>.
</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LodgingBusiness">LodgingBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BikeStore">
<span class="h" property="rdfs:label">BikeStore</span>
<span property="rdfs:comment">A bike store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Blog">
<span class="h" property="rdfs:label">Blog</span>
<span property="rdfs:comment">A blog.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BlogPosting">
<span class="h" property="rdfs:label">BlogPosting</span>
<span property="rdfs:comment">A blog post.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/SocialMediaPosting">SocialMediaPosting</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Landform">
<span class="h" property="rdfs:label">Landform</span>
<span property="rdfs:comment">A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Place">Place</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BodyOfWater">
<span class="h" property="rdfs:label">BodyOfWater</span>
<span property="rdfs:comment">A body of water, such as a sea, ocean, or lake.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Landform">Landform</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Book">
<span class="h" property="rdfs:label">Book</span>
<span property="rdfs:comment">A book.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BookFormatType">
<span class="h" property="rdfs:label">BookFormatType</span>
<span property="rdfs:comment">The publication format of the book.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
</div>
<div typeof="http://schema.org/BookFormatType" resource="http://schema.org/EBook">
<span class="h" property="rdfs:label">EBook</span>
<span property="rdfs:comment">Book format: Ebook.</span>
</div>
<div typeof="http://schema.org/BookFormatType" resource="http://schema.org/Hardcover">
<span class="h" property="rdfs:label">Hardcover</span>
<span property="rdfs:comment">Book format: Hardcover.</span>
</div>
<div typeof="http://schema.org/BookFormatType" resource="http://schema.org/Paperback">
<span class="h" property="rdfs:label">Paperback</span>
<span property="rdfs:comment">Book format: Paperback.</span>
</div>
<div typeof="http://schema.org/BookFormatType" resource="http://schema.org/AudiobookFormat">
<span class="h" property="rdfs:label">AudiobookFormat</span>
<span property="rdfs:comment">Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BookStore">
<span class="h" property="rdfs:label">BookStore</span>
<span property="rdfs:comment">A bookstore.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DataType">
<span class="h" property="rdfs:label">DataType</span>
<span property="rdfs:comment">The basic data types such as Integers, Strings, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://www.w3.org/2000/01/rdf-schema#Class">rdfs:Class</a></span>
</div>
<div typeof="rdfs:Class http://schema.org/DataType" resource="http://schema.org/Boolean">
<span class="h" property="rdfs:label">Boolean</span>
<span property="rdfs:comment">Boolean: True or False.</span>
<!--<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>-->
</div>
<div typeof="http://schema.org/Boolean" resource="http://schema.org/False">
<span class="h" property="rdfs:label">False</span>
<span property="rdfs:comment">The boolean value false.</span>
</div>
<div typeof="http://schema.org/Boolean" resource="http://schema.org/True">
<span class="h" property="rdfs:label">True</span>
<span property="rdfs:comment">The boolean value true.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/SportsActivityLocation">
<span class="h" property="rdfs:label">SportsActivityLocation</span>
<span property="rdfs:comment">A sports location, such as a playing field.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BowlingAlley">
<span class="h" property="rdfs:label">BowlingAlley</span>
<span property="rdfs:comment">A bowling alley.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/SportsActivityLocation">SportsActivityLocation</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Brewery">
<span class="h" property="rdfs:label">Brewery</span>
<span property="rdfs:comment">Brewery.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FoodEstablishment">FoodEstablishment</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/PlaceOfWorship">
<span class="h" property="rdfs:label">PlaceOfWorship</span>
<span property="rdfs:comment">Place of worship, such as a church, synagogue, or mosque.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BuddhistTemple">
<span class="h" property="rdfs:label">BuddhistTemple</span>
<span property="rdfs:comment">A Buddhist temple.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/PlaceOfWorship">PlaceOfWorship</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BusStation">
<span class="h" property="rdfs:label">BusStation</span>
<span property="rdfs:comment">A bus station.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BusStop">
<span class="h" property="rdfs:label">BusStop</span>
<span property="rdfs:comment">A bus stop.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Event">
<span class="h" property="rdfs:label">Event</span>
<span property="rdfs:comment">An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Thing">Thing</a></span>
<link property="owl:equivalentClass" href="http://purl.org/dc/dcmitype/Event"/>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/BusinessEvent">
<span class="h" property="rdfs:label">BusinessEvent</span>
<span property="rdfs:comment">Event type: Business event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CafeOrCoffeeShop">
<span class="h" property="rdfs:label">CafeOrCoffeeShop</span>
<span property="rdfs:comment">A cafe or coffee shop.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FoodEstablishment">FoodEstablishment</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Campground">
<span class="h" property="rdfs:label">Campground</span>
<span property="rdfs:comment">A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \n\n
In British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\n\n
See also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).
</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LodgingBusiness">LodgingBusiness</a></span>
<span>Source: <a property="dc:source" href="https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology">STI Accommodation Ontology</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Canal">
<span class="h" property="rdfs:label">Canal</span>
<span property="rdfs:comment">A canal, like the Panama Canal.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/BodyOfWater">BodyOfWater</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Casino">
<span class="h" property="rdfs:label">Casino</span>
<span property="rdfs:comment">A casino.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EntertainmentBusiness">EntertainmentBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CatholicChurch">
<span class="h" property="rdfs:label">CatholicChurch</span>
<span property="rdfs:comment">A Catholic church.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Church">Church</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Cemetery">
<span class="h" property="rdfs:label">Cemetery</span>
<span property="rdfs:comment">A graveyard.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CheckoutPage">
<span class="h" property="rdfs:label">CheckoutPage</span>
<span property="rdfs:comment">Web page type: Checkout page.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/WebPage">WebPage</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ChildCare">
<span class="h" property="rdfs:label">ChildCare</span>
<span property="rdfs:comment">A Childcare center.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ChildrensEvent">
<span class="h" property="rdfs:label">ChildrensEvent</span>
<span property="rdfs:comment">Event type: Children's event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Church">
<span class="h" property="rdfs:label">Church</span>
<span property="rdfs:comment">A church.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/PlaceOfWorship">PlaceOfWorship</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/City">
<span class="h" property="rdfs:label">City</span>
<span property="rdfs:comment">A city or town.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AdministrativeArea">AdministrativeArea</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GovernmentBuilding">
<span class="h" property="rdfs:label">GovernmentBuilding</span>
<span property="rdfs:comment">A government building.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CityHall">
<span class="h" property="rdfs:label">CityHall</span>
<span property="rdfs:comment">A city hall.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/GovernmentBuilding">GovernmentBuilding</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ClothingStore">
<span class="h" property="rdfs:label">ClothingStore</span>
<span property="rdfs:comment">A clothing store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CollectionPage">
<span class="h" property="rdfs:label">CollectionPage</span>
<span property="rdfs:comment">Web page type: Collection page.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/WebPage">WebPage</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EducationalOrganization">
<span class="h" property="rdfs:label">EducationalOrganization</span>
<span property="rdfs:comment">An educational organization.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/CollegeOrUniversity">
<span class="h" property="rdfs:label">CollegeOrUniversity</span>
<span property="rdfs:comment">A college, university, or other third-level educational institution.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EducationalOrganization">EducationalOrganization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ComedyClub">
<span class="h" property="rdfs:label">ComedyClub</span>
<span property="rdfs:comment">A comedy club.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EntertainmentBusiness">EntertainmentBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ComedyEvent">
<span class="h" property="rdfs:label">ComedyEvent</span>
<span property="rdfs:comment">Event type: Comedy event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Comment">
<span class="h" property="rdfs:label">Comment</span>
<span property="rdfs:comment">A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ComputerStore">
<span class="h" property="rdfs:label">ComputerStore</span>
<span property="rdfs:comment">A computer store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ContactPage">
<span class="h" property="rdfs:label">ContactPage</span>
<span property="rdfs:comment">Web page type: Contact page.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/WebPage">WebPage</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/StructuredValue">
<span class="h" property="rdfs:label">StructuredValue</span>
<span property="rdfs:comment">Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ContactPoint">
<span class="h" property="rdfs:label">ContactPoint</span>
<span property="rdfs:comment">A contact point&#x2014;for example, a Customer Complaints department.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/StructuredValue">StructuredValue</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Continent">
<span class="h" property="rdfs:label">Continent</span>
<span property="rdfs:comment">One of the continents (for example, Europe or Africa).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Landform">Landform</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ConvenienceStore">
<span class="h" property="rdfs:label">ConvenienceStore</span>
<span property="rdfs:comment">A convenience store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Corporation">
<span class="h" property="rdfs:label">Corporation</span>
<span property="rdfs:comment">Organization: A business corporation.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Country">
<span class="h" property="rdfs:label">Country</span>
<span property="rdfs:comment">A country.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AdministrativeArea">AdministrativeArea</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Courthouse">
<span class="h" property="rdfs:label">Courthouse</span>
<span property="rdfs:comment">A courthouse.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/GovernmentBuilding">GovernmentBuilding</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Crematorium">
<span class="h" property="rdfs:label">Crematorium</span>
<span property="rdfs:comment">A crematorium.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DanceEvent">
<span class="h" property="rdfs:label">DanceEvent</span>
<span property="rdfs:comment">Event type: A social dance.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/PerformingGroup">
<span class="h" property="rdfs:label">PerformingGroup</span>
<span property="rdfs:comment">A performance group, such as a band, an orchestra, or a circus.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DanceGroup">
<span class="h" property="rdfs:label">DanceGroup</span>
<span property="rdfs:comment">A dance group&#x2014;for example, the Alvin Ailey Dance Theater or Riverdance.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/PerformingGroup">PerformingGroup</a></span>
</div>
<div typeof="rdfs:Class http://schema.org/DataType" resource="http://schema.org/Date">
<span class="h" property="rdfs:label">Date</span>
<span property="rdfs:comment">A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).</span>
</div>
<div typeof="rdfs:Class http://schema.org/DataType" resource="http://schema.org/DateTime">
<span class="h" property="rdfs:label">DateTime</span>
<span property="rdfs:comment">A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DaySpa">
<span class="h" property="rdfs:label">DaySpa</span>
<span property="rdfs:comment">A day spa.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/HealthAndBeautyBusiness">HealthAndBeautyBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DefenceEstablishment">
<span class="h" property="rdfs:label">DefenceEstablishment</span>
<span property="rdfs:comment">A defence establishment, such as an army or navy base.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/GovernmentBuilding">GovernmentBuilding</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DepartmentStore">
<span class="h" property="rdfs:label">DepartmentStore</span>
<span property="rdfs:comment">A department store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Quantity">
<span class="h" property="rdfs:label">Quantity</span>
<span property="rdfs:comment">Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Distance">
<span class="h" property="rdfs:label">Distance</span>
<span property="rdfs:comment">Properties that take Distances as values are of the form '&lt;Number&gt; &lt;Length unit of measure&gt;'. E.g., '7 ft'.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Quantity">Quantity</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DryCleaningOrLaundry">
<span class="h" property="rdfs:label">DryCleaningOrLaundry</span>
<span property="rdfs:comment">A dry-cleaning business.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Duration">
<span class="h" property="rdfs:label">Duration</span>
<span property="rdfs:comment">Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Quantity">Quantity</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EducationEvent">
<span class="h" property="rdfs:label">EducationEvent</span>
<span property="rdfs:comment">Event type: Education event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/HomeAndConstructionBusiness">
<span class="h" property="rdfs:label">HomeAndConstructionBusiness</span>
<span property="rdfs:comment">A construction business.\n\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s).</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Electrician">
<span class="h" property="rdfs:label">Electrician</span>
<span property="rdfs:comment">An electrician.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/HomeAndConstructionBusiness">HomeAndConstructionBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ElectronicsStore">
<span class="h" property="rdfs:label">ElectronicsStore</span>
<span property="rdfs:comment">An electronics store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ElementarySchool">
<span class="h" property="rdfs:label">ElementarySchool</span>
<span property="rdfs:comment">An elementary school.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EducationalOrganization">EducationalOrganization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Embassy">
<span class="h" property="rdfs:label">Embassy</span>
<span property="rdfs:comment">An embassy.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/GovernmentBuilding">GovernmentBuilding</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EmergencyService">
<span class="h" property="rdfs:label">EmergencyService</span>
<span property="rdfs:comment">An emergency service, such as a fire station or ER.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EmploymentAgency">
<span class="h" property="rdfs:label">EmploymentAgency</span>
<span property="rdfs:comment">An employment agency.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Energy">
<span class="h" property="rdfs:label">Energy</span>
<span property="rdfs:comment">Properties that take Energy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;'.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Quantity">Quantity</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/EventVenue">
<span class="h" property="rdfs:label">EventVenue</span>
<span property="rdfs:comment">An event venue.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/ExerciseGym">
<span class="h" property="rdfs:label">ExerciseGym</span>
<span property="rdfs:comment">A gym.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/SportsActivityLocation">SportsActivityLocation</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FastFoodRestaurant">
<span class="h" property="rdfs:label">FastFoodRestaurant</span>
<span property="rdfs:comment">A fast-food restaurant.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FoodEstablishment">FoodEstablishment</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Festival">
<span class="h" property="rdfs:label">Festival</span>
<span property="rdfs:comment">Event type: Festival.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FireStation">
<span class="h" property="rdfs:label">FireStation</span>
<span property="rdfs:comment">A fire station. With firemen.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CivicStructure">CivicStructure</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/EmergencyService">EmergencyService</a></span>
</div>
<div typeof="rdfs:Class http://schema.org/DataType" resource="http://schema.org/Number">
<span class="h" property="rdfs:label">Number</span>
<span property="rdfs:comment">Data type: Number.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Float">
<span class="h" property="rdfs:label">Float</span>
<span property="rdfs:comment">Data type: Floating number.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Number">Number</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Florist">
<span class="h" property="rdfs:label">Florist</span>
<span property="rdfs:comment">A florist.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FoodEvent">
<span class="h" property="rdfs:label">FoodEvent</span>
<span property="rdfs:comment">Event type: Food event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Event">Event</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/FurnitureStore">
<span class="h" property="rdfs:label">FurnitureStore</span>
<span property="rdfs:comment">A furniture store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GardenStore">
<span class="h" property="rdfs:label">GardenStore</span>
<span property="rdfs:comment">A garden store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GasStation">
<span class="h" property="rdfs:label">GasStation</span>
<span property="rdfs:comment">A gas station.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AutomotiveBusiness">AutomotiveBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GatedResidenceCommunity">
<span class="h" property="rdfs:label">GatedResidenceCommunity</span>
<span property="rdfs:comment">Residence type: Gated community.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Residence">Residence</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GeneralContractor">
<span class="h" property="rdfs:label">GeneralContractor</span>
<span property="rdfs:comment">A general contractor.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/HomeAndConstructionBusiness">HomeAndConstructionBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GeoCoordinates">
<span class="h" property="rdfs:label">GeoCoordinates</span>
<span property="rdfs:comment">The geographic coordinates of a place or event.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/StructuredValue">StructuredValue</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GeoShape">
<span class="h" property="rdfs:label">GeoShape</span>
<span property="rdfs:comment">The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/StructuredValue">StructuredValue</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews">rNews</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GeoCircle">
<span class="h" property="rdfs:label">GeoCircle</span>
<span property="rdfs:comment">A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape
it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.
The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.
</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/GeoShape">GeoShape</a></span>
</div>
<div typeof="rdf:Property" resource="http://schema.org/geoRadius">
<span class="h" property="rdfs:label">geoRadius</span>
<span class="h" property="rdfs:comment">Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).</span>
<span>Domain: <a property="http://schema.org/domainIncludes" href="http://schema.org/GeoCircle">GeoCircle</a></span>
<span>Range: <a property="http://schema.org/rangeIncludes" href="http://schema.org/Text">Text</a></span>
<span>Range: <a property="http://schema.org/rangeIncludes" href="http://schema.org/Number">Number</a></span>
<span>Range: <a property="http://schema.org/rangeIncludes" href="http://schema.org/Distance">Distance</a></span>
</div>
<div typeof="rdf:Property" resource="http://schema.org/geoMidpoint">
<span class="h" property="rdfs:label">geoMidpoint</span>
<span class="h" property="rdfs:comment">Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.</span>
<span>Domain: <a property="http://schema.org/domainIncludes" href="http://schema.org/GeoCircle">GeoShape</a></span>
<span>Range: <a property="http://schema.org/rangeIncludes" href="http://schema.org/GeoCoordinates">GeoCoordinates</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GolfCourse">
<span class="h" property="rdfs:label">GolfCourse</span>
<span property="rdfs:comment">A golf course.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/SportsActivityLocation">SportsActivityLocation</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GovernmentOffice">
<span class="h" property="rdfs:label">GovernmentOffice</span>
<span property="rdfs:comment">A government office&#x2014;for example, an IRS or DMV office.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GovernmentOrganization">
<span class="h" property="rdfs:label">GovernmentOrganization</span>
<span property="rdfs:comment">A governmental organization or agency.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/GroceryStore">
<span class="h" property="rdfs:label">GroceryStore</span>
<span property="rdfs:comment">A grocery store.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Store">Store</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/HVACBusiness">