-
Notifications
You must be signed in to change notification settings - Fork 25
/
schema_org_rdfa.html
10005 lines (9183 loc) · 779 KB
/
schema_org_rdfa.html
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>
<head>
<title>RDFa Lite Reflection</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 the RDFa 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. For Discussion please use the W3C <a href="mailto:[email protected]">Web schemas</a> group.</p>
<p>
See <a href="http://schema.org/docs/datamodel.html">datamodel</a> for more details.
</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>.
</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/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">Provider of professional services.</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.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/FinancialService">FinancialService</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/ProfessionalService">ProfessionalService</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 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&#x2014;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.</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_GoodRelationsProperties">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">The rating of the video.</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/MedicalEntity">
<span class="h" property="rdfs:label">MedicalEntity</span>
<span property="rdfs:comment">The most generic type of entity related to health and the practice of medicine.</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_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/AnatomicalStructure">
<span class="h" property="rdfs:label">AnatomicalStructure</span>
<span property="rdfs:comment">Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/AnatomicalSystem">
<span class="h" property="rdfs:label">AnatomicalSystem</span>
<span property="rdfs:comment">An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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/MedicalIndication">
<span class="h" property="rdfs:label">MedicalIndication</span>
<span property="rdfs:comment">A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/ApprovedIndication">
<span class="h" property="rdfs:label">ApprovedIndication</span>
<span property="rdfs:comment">An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIndication">MedicalIndication</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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/Vessel">
<span class="h" property="rdfs:label">Vessel</span>
<span property="rdfs:comment">A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AnatomicalStructure">AnatomicalStructure</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/Artery">
<span class="h" property="rdfs:label">Artery</span>
<span property="rdfs:comment">A type of blood vessel that specifically carries blood away from the heart.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Vessel">Vessel</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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.</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.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/ProfessionalService">ProfessionalService</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">An image, video, or audio object embedded in a web page. 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/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.</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/Article">Article</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/MedicalTest">
<span class="h" property="rdfs:label">MedicalTest</span>
<span property="rdfs:comment">Any medical test, typically performed for diagnostic purposes.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/BloodTest">
<span class="h" property="rdfs:label">BloodTest</span>
<span property="rdfs:comment">A medical test performed on a sample of a patient's blood.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTest">MedicalTest</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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/Bone">
<span class="h" property="rdfs:label">Bone</span>
<span property="rdfs:comment">Rigid connective tissue that comprises up the skeletal structure of the human body.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AnatomicalStructure">AnatomicalStructure</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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/Enumeration">
<span class="h" property="rdfs:label">Enumeration</span>
<span property="rdfs:comment">Lists or enumerations&#x2014;for example, a list of cuisines or music genres, etc.</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/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="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>
</div>
<div typeof="rdfs:Class" 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/DataType">DataType</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>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Boolean">Boolean</a></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>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Boolean">Boolean</a></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/BrainStructure">
<span class="h" property="rdfs:label">BrainStructure</span>
<span property="rdfs:comment">Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/AnatomicalStructure">AnatomicalStructure</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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="dc: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 campground.</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/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/PlaceOfWorship">PlaceOfWorship</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 strings&#x2014;for example, addresses&#x2014;that have certain constraints on their structure.</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/MedicalIntangible">
<span class="h" property="rdfs:label">MedicalIntangible</span>
<span property="rdfs:comment">A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DDxElement">
<span class="h" property="rdfs:label">DDxElement</span>
<span property="rdfs:comment">An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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" resource="http://schema.org/Date">
<span class="h" property="rdfs:label">Date</span>
<span property="rdfs:comment">A date value in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/DataType">DataType</a></span>
</div>
<div typeof="rdfs:Class" 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>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/DataType">DataType</a></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/MedicalOrganization">
<span class="h" property="rdfs:label">MedicalOrganization</span>
<span property="rdfs:comment">A medical organization, such as a doctor's office or clinic.</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/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/ProfessionalService">ProfessionalService</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/DiagnosticLab">
<span class="h" property="rdfs:label">DiagnosticLab</span>
<span property="rdfs:comment">A medical laboratory that offers on-site or off-site diagnostic services.</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/MedicalProcedure">
<span class="h" property="rdfs:label">MedicalProcedure</span>
<span property="rdfs:comment">A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/DiagnosticProcedure">
<span class="h" property="rdfs:label">DiagnosticProcedure</span>
<span property="rdfs:comment">A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalProcedure">MedicalProcedure</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTest">MedicalTest</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/MedicalTherapy">
<span class="h" property="rdfs:label">MedicalTherapy</span>
<span property="rdfs:comment">Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEntity">MedicalEntity</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/LifestyleModification">
<span class="h" property="rdfs:label">LifestyleModification</span>
<span property="rdfs:comment">A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTherapy">MedicalTherapy</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/Diet">
<span class="h" property="rdfs:label">Diet</span>
<span property="rdfs:comment">A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LifestyleModification">LifestyleModification</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/DietarySupplement">
<span class="h" property="rdfs:label">DietarySupplement</span>
<span property="rdfs:comment">A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTherapy">MedicalTherapy</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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/DoseSchedule">
<span class="h" property="rdfs:label">DoseSchedule</span>
<span property="rdfs:comment">A specific dosing schedule for a drug or supplement.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/Drug">
<span class="h" property="rdfs:label">Drug</span>
<span property="rdfs:comment">A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTherapy">MedicalTherapy</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugClass">
<span class="h" property="rdfs:label">DrugClass</span>
<span property="rdfs:comment">A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalTherapy">MedicalTherapy</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugCost">
<span class="h" property="rdfs:label">DrugCost</span>
<span property="rdfs:comment">The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/MedicalEnumeration">
<span class="h" property="rdfs:label">MedicalEnumeration</span>
<span property="rdfs:comment">Enumerations related to health and the practice of medicine.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugCostCategory">
<span class="h" property="rdfs:label">DrugCostCategory</span>
<span property="rdfs:comment">Enumerated categories of medical drug costs.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEnumeration">MedicalEnumeration</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
</div>
<div typeof="http://schema.org/DrugCostCategory" resource="http://schema.org/ReimbursementCap">
<span class="h" property="rdfs:label">ReimbursementCap</span>
<span property="rdfs:comment">The drug's cost represents the maximum reimbursement paid by an insurer for the drug.</span>
</div>
<div typeof="http://schema.org/DrugCostCategory" resource="http://schema.org/Retail">
<span class="h" property="rdfs:label">Retail</span>
<span property="rdfs:comment">The drug's cost represents the retail cost of the drug.</span>
</div>
<div typeof="http://schema.org/DrugCostCategory" resource="http://schema.org/Wholesale">
<span class="h" property="rdfs:label">Wholesale</span>
<span property="rdfs:comment">The drug's cost represents the wholesale acquisition cost of the drug.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugLegalStatus">
<span class="h" property="rdfs:label">DrugLegalStatus</span>
<span property="rdfs:comment">The legal availability status of a medical drug.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</a></span></div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugPregnancyCategory">
<span class="h" property="rdfs:label">DrugPregnancyCategory</span>
<span property="rdfs:comment">Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEnumeration">MedicalEnumeration</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAcategoryA">
<span class="h" property="rdfs:label">FDAcategoryA</span>
<span property="rdfs:comment">A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).</span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAcategoryB">
<span class="h" property="rdfs:label">FDAcategoryB</span>
<span property="rdfs:comment">A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.</span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAcategoryC">
<span class="h" property="rdfs:label">FDAcategoryC</span>
<span property="rdfs:comment">A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.</span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAcategoryD">
<span class="h" property="rdfs:label">FDAcategoryD</span>
<span property="rdfs:comment">A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.</span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAcategoryX">
<span class="h" property="rdfs:label">FDAcategoryX</span>
<span property="rdfs:comment">A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.</span>
</div>
<div typeof="http://schema.org/DrugPregnancyCategory" resource="http://schema.org/FDAnotEvaluated">
<span class="h" property="rdfs:label">FDAnotEvaluated</span>
<span property="rdfs:comment">A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugPrescriptionStatus">
<span class="h" property="rdfs:label">DrugPrescriptionStatus</span>
<span property="rdfs:comment">Indicates whether this drug is available by prescription or over-the-counter.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalEnumeration">MedicalEnumeration</a></span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
</div>
<div typeof="http://schema.org/DrugPrescriptionStatus" resource="http://schema.org/OTC">
<span class="h" property="rdfs:label">OTC</span>
<span property="rdfs:comment">Available over the counter.</span>
</div>
<div typeof="http://schema.org/DrugPrescriptionStatus" resource="http://schema.org/PrescriptionOnly">
<span class="h" property="rdfs:label">PrescriptionOnly</span>
<span property="rdfs:comment">Available by prescription only.</span>
</div>
<div typeof="rdfs:Class" resource="http://schema.org/DrugStrength">
<span class="h" property="rdfs:label">DrugStrength</span>
<span property="rdfs:comment">A specific strength in which a medical drug is available in a specific country.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/MedicalIntangible">MedicalIntangible</a></span>
<span>Source: <a property="dc:source" href="http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc">WikiDoc</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 <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>).</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.</span>
<span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/LocalBusiness">LocalBusiness</a></span>