rdf-rdfa 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README +1 -7
- data/VERSION +1 -1
- data/lib/rdf/rdfa/context/xml.rb +3 -0
- data/lib/rdf/rdfa/expansion/dc.rb +11 -13
- data/lib/rdf/rdfa/expansion/gr.rb +0 -49
- data/lib/rdf/rdfa/expansion/schema.rb +0 -430
- data/lib/rdf/rdfa/expansion/skosxl.rb +0 -9
- data/lib/rdf/rdfa/reader.rb +13 -17
- data/lib/rdf/rdfa/writer.rb +1 -1
- metadata +242 -262
data/README
CHANGED
@@ -149,12 +149,6 @@ this results in
|
|
149
149
|
].
|
150
150
|
|
151
151
|
|
152
|
-
#### Support for HTML5 `data` element
|
153
|
-
This is an alternate way of adding data using the `@value` property. Similar to `meta`
|
154
|
-
|
155
|
-
The `data` element is described in the WHATWG version of the [HTML5 spec](http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-data-element).
|
156
|
-
This is related to [RDFa ISSUE-113](http://www.w3.org/2010/02/rdfa/track/issues/113)
|
157
|
-
|
158
152
|
### Support for embedded RDF/XML
|
159
153
|
If the document includes embedded RDF/XML, as is the case with many SVG documents, and the RDF::RDFXML gem is installed, the reader will add extracted triples to the default graph.
|
160
154
|
|
@@ -430,7 +424,7 @@ Full documentation available on [Rubydoc.info][RDFa doc]
|
|
430
424
|
* [RDF.rb][RDF.rb]
|
431
425
|
* [Distiller](http://rdf.greggkellogg.net/distiller)
|
432
426
|
* [Documentation][RDFa doc]
|
433
|
-
* [History](file:History.
|
427
|
+
* [History](file:History.md)
|
434
428
|
* [RDFa 1.1 Core][RDFa 1.1 Core]
|
435
429
|
* [XHTML+RDFa 1.1][XHTML+RDFa 1.1]
|
436
430
|
* [RDFa-test-suite](http://rdfa.info/test-suite/ "RDFa test suite")
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
data/lib/rdf/rdfa/context/xml.rb
CHANGED
@@ -9,6 +9,7 @@ class RDF::RDFa::Context
|
|
9
9
|
:cc => "http://creativecommons.org/ns#",
|
10
10
|
:ctag => "http://commontag.org/ns#",
|
11
11
|
:dc => "http://purl.org/dc/terms/",
|
12
|
+
:dc11 => "http://purl.org/dc/elements/1.1/",
|
12
13
|
:dcterms => "http://purl.org/dc/terms/",
|
13
14
|
:foaf => "http://xmlns.com/foaf/0.1/",
|
14
15
|
:gr => "http://purl.org/goodrelations/v1#",
|
@@ -17,6 +18,7 @@ class RDF::RDFa::Context
|
|
17
18
|
:ma => "http://www.w3.org/ns/ma-ont#",
|
18
19
|
:og => "http://ogp.me/ns#",
|
19
20
|
:owl => "http://www.w3.org/2002/07/owl#",
|
21
|
+
:prov => "http://www.w3.org/ns/prov#",
|
20
22
|
:rdf => "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
21
23
|
:rdfa => "http://www.w3.org/ns/rdfa#",
|
22
24
|
:rdfs => "http://www.w3.org/2000/01/rdf-schema#",
|
@@ -24,6 +26,7 @@ class RDF::RDFa::Context
|
|
24
26
|
:rif => "http://www.w3.org/2007/rif#",
|
25
27
|
:rr => "http://www.w3.org/ns/r2rml#",
|
26
28
|
:schema => "http://schema.org/",
|
29
|
+
:sd => "http://www.w3.org/ns/sparql-service-description#",
|
27
30
|
:sioc => "http://rdfs.org/sioc/ns#",
|
28
31
|
:skos => "http://www.w3.org/2004/02/skos/core#",
|
29
32
|
:skosxl => "http://www.w3.org/2008/05/skos-xl#",
|
@@ -4,6 +4,15 @@ require 'rdf/rdfa/expansion'
|
|
4
4
|
|
5
5
|
module RDF::RDFa::Expansion
|
6
6
|
[
|
7
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/AgentClass'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#Class'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
8
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/FileFormat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaType'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
9
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/Jurisdiction'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
10
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/LicenseDocument'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/RightsStatement'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
11
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/Location'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
12
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/MediaType'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaTypeOrExtent'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
13
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/PeriodOfTime'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
14
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/PhysicalMedium'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaType'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
15
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/SizeOrDuration'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaTypeOrExtent'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
7
16
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/abstract'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/description'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
8
17
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/abstract'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/description'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
9
18
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/accessRights'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/rights'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
@@ -51,10 +60,10 @@ module RDF::RDFa::Expansion
|
|
51
60
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/isReplacedBy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/relation'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
52
61
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/isRequiredBy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/relation'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
53
62
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/isRequiredBy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/relation'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
54
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/issued'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
55
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/issued'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
56
63
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/isVersionOf'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/relation'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
57
64
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/isVersionOf'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/relation'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
65
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/issued'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
66
|
+
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/issued'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
58
67
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/language'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/language'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
59
68
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/license'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/rights'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
60
69
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/license'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/rights'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
@@ -85,16 +94,5 @@ module RDF::RDFa::Expansion
|
|
85
94
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/type'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/type'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
86
95
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/valid'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/elements/1.1/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
87
96
|
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/valid'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/dc/terms/date'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
88
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/AgentClass'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#Class'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
89
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/FileFormat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaType'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
90
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/Jurisdiction'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
91
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/LicenseDocument'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/RightsStatement'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
92
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/Location'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
93
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/MediaType'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaTypeOrExtent'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
94
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/PeriodOfTime'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/LocationPeriodOrJurisdiction'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
95
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/PhysicalMedium'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaType'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
96
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/terms/SizeOrDuration'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/terms/MediaTypeOrExtent'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
97
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/dcmitype/MovingImage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/dcmitype/Image'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
98
|
-
RDF::Statement.new(RDF::URI('http://purl.org/dc/dcmitype/StillImage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/dc/dcmitype/Image'), :context => RDF::URI('http://purl.org/dc/terms/')),
|
99
97
|
].each {|st| COOKED_VOCAB_STATEMENTS << st }
|
100
98
|
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
# This file is automatically generated by ./script/intern_vocabulary
|
2
|
-
# RDFa vocabulary for http://purl.org/goodrelations/v1# loaded from http://purl.org/goodrelations/v1#
|
3
|
-
require 'rdf/rdfa/expansion'
|
4
|
-
|
5
|
-
module RDF::RDFa::Expansion
|
6
|
-
[
|
7
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasMPN'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://schema.org/productID'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
8
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValueFloat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxValueFloat'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
9
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValueFloat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinValueFloat'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
10
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasMaxValueFloat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
11
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasMinValueFloat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
12
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasGTIN-8'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://schema.org/productID'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
13
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#depth'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
14
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValueInteger'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinValueInteger'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
15
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValueInteger'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxValueInteger'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
16
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasMinValueInteger'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
17
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasMaxValueInteger'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
18
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#color'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#datatypeProductOrServiceProperty'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
19
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasStockKeepingUnit'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://schema.org/productID'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
20
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
21
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
22
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasGTIN-14'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://schema.org/productID'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
23
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasCurrencyValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMinCurrencyValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
24
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasCurrencyValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#hasMaxCurrencyValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
25
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#weight'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
26
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#hasEAN_UCC-13'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://schema.org/productID'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
27
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#height'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
28
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#width'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subPropertyOf'), RDF::URI('http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
29
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#License'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#BusinessFunction'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
30
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#DeliveryModeParcelService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#DeliveryMethod'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
31
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#DeliveryChargeSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#PriceSpecification'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
32
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Person'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#BusinessEntity'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
33
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#QuantitativeValueInteger'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#QuantitativeValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
34
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#ProductOrServicesSomeInstancesPlaceholder'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#ProductOrService'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
35
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#ProductOrServiceModel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#ProductOrService'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
36
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#ProductOrServiceModel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
37
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#PaymentChargeSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#PriceSpecification'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
38
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#UnitPriceSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#PriceSpecification'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
39
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Organization'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#BusinessEntity'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
40
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Offer'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#Offering'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
41
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#PaymentMethodCreditCard'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#PaymentMethod'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
42
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#Individual'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#ProductOrService'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
43
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#Individual'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
44
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#ActualProductOrServiceInstance'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#ProductOrService'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
45
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#QuantitativeValueFloat'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#QuantitativeValue'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
46
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#SomeItems'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://purl.org/goodrelations/v1#ProductOrService'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
47
|
-
RDF::Statement.new(RDF::URI('http://purl.org/goodrelations/v1#SomeItems'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://purl.org/goodrelations/v1#')),
|
48
|
-
].each {|st| COOKED_VOCAB_STATEMENTS << st }
|
49
|
-
end
|
@@ -1,430 +0,0 @@
|
|
1
|
-
# This file is automatically generated by ./script/intern_vocabulary
|
2
|
-
# RDFa vocabulary for http://schema.org/ loaded from http://schema.rdfs.org/all.ttl
|
3
|
-
require 'rdf/rdfa/expansion'
|
4
|
-
|
5
|
-
module RDF::RDFa::Expansion
|
6
|
-
[
|
7
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CreativeWork'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
8
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Article'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
9
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BlogPosting'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Article'), :context => RDF::URI('http://schema.org/')),
|
10
|
-
RDF::Statement.new(RDF::URI('http://schema.org/NewsArticle'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Article'), :context => RDF::URI('http://schema.org/')),
|
11
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ScholarlyArticle'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Article'), :context => RDF::URI('http://schema.org/')),
|
12
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalScholarlyArticle'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ScholarlyArticle'), :context => RDF::URI('http://schema.org/')),
|
13
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Blog'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
14
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Book'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
15
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Comment'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
16
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Diet'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
17
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Diet'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LifestyleModification'), :context => RDF::URI('http://schema.org/')),
|
18
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ExercisePlan'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
19
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ExercisePlan'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PhysicalActivity'), :context => RDF::URI('http://schema.org/')),
|
20
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ItemList'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
21
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Map'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
22
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MediaObject'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
23
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AudioObject'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MediaObject'), :context => RDF::URI('http://schema.org/')),
|
24
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ImageObject'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MediaObject'), :context => RDF::URI('http://schema.org/')),
|
25
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicVideoObject'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MediaObject'), :context => RDF::URI('http://schema.org/')),
|
26
|
-
RDF::Statement.new(RDF::URI('http://schema.org/VideoObject'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MediaObject'), :context => RDF::URI('http://schema.org/')),
|
27
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Movie'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
28
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicPlaylist'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
29
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicAlbum'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MusicPlaylist'), :context => RDF::URI('http://schema.org/')),
|
30
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicRecording'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
31
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Painting'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
32
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Photograph'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
33
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Recipe'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
34
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Review'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
35
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Sculpture'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
36
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SoftwareApplication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
37
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MobileApplication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SoftwareApplication'), :context => RDF::URI('http://schema.org/')),
|
38
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WebApplication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SoftwareApplication'), :context => RDF::URI('http://schema.org/')),
|
39
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TVEpisode'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
40
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TVSeason'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
41
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TVSeries'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
42
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WebPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
43
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AboutPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
44
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CheckoutPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
45
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CollectionPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
46
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ImageGallery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CollectionPage'), :context => RDF::URI('http://schema.org/')),
|
47
|
-
RDF::Statement.new(RDF::URI('http://schema.org/VideoGallery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CollectionPage'), :context => RDF::URI('http://schema.org/')),
|
48
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ContactPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
49
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ItemPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
50
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalWebPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
51
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ProfilePage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
52
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SearchResultsPage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPage'), :context => RDF::URI('http://schema.org/')),
|
53
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WebPageElement'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CreativeWork'), :context => RDF::URI('http://schema.org/')),
|
54
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SiteNavigationElement'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
55
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Table'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
56
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WPAdBlock'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
57
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WPFooter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
58
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WPHeader'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
59
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WPSideBar'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/WebPageElement'), :context => RDF::URI('http://schema.org/')),
|
60
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Event'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
61
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BusinessEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
62
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ChildrensEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
63
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ComedyEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
64
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DanceEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
65
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EducationEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
66
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Festival'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
67
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FoodEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
68
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LiteraryEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
69
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
70
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SaleEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
71
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SocialEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
72
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SportsEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
73
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TheaterEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
74
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserInteraction'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
75
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserBlocks'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
76
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserCheckins'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
77
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserComments'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
78
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserDownloads'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
79
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserLikes'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
80
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserPageVisits'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
81
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserPlays'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
82
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserPlusOnes'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
83
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UserTweets'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/UserInteraction'), :context => RDF::URI('http://schema.org/')),
|
84
|
-
RDF::Statement.new(RDF::URI('http://schema.org/VisualArtsEvent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Event'), :context => RDF::URI('http://schema.org/')),
|
85
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Intangible'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
86
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Audience'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
87
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalAudience'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Audience'), :context => RDF::URI('http://schema.org/')),
|
88
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalAudience'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
89
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Brand'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
90
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Demand'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
91
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Enumeration'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
92
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BookFormatType'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
93
|
-
RDF::Statement.new(RDF::URI('http://schema.rdfs.org/all.ttl'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
94
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ItemAvailability'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
95
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OfferItemCondition'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
96
|
-
RDF::Statement.new(RDF::URI('http://schema.org/QualitativeValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
97
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Specialty'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Enumeration'), :context => RDF::URI('http://schema.org/')),
|
98
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalSpecialty'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Specialty'), :context => RDF::URI('http://schema.org/')),
|
99
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalSpecialty'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
100
|
-
RDF::Statement.new(RDF::URI('http://schema.org/JobPosting'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
101
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Language'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
102
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Offer'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
103
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AggregateOffer'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Offer'), :context => RDF::URI('http://schema.org/')),
|
104
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Quantity'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
105
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Distance'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Quantity'), :context => RDF::URI('http://schema.org/')),
|
106
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Duration'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Quantity'), :context => RDF::URI('http://schema.org/')),
|
107
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Energy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Quantity'), :context => RDF::URI('http://schema.org/')),
|
108
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Mass'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Quantity'), :context => RDF::URI('http://schema.org/')),
|
109
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Rating'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
110
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AggregateRating'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Rating'), :context => RDF::URI('http://schema.org/')),
|
111
|
-
RDF::Statement.new(RDF::URI('http://schema.org/StructuredValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Intangible'), :context => RDF::URI('http://schema.org/')),
|
112
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ContactPoint'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
113
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PostalAddress'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ContactPoint'), :context => RDF::URI('http://schema.org/')),
|
114
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GeoCoordinates'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
115
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GeoShape'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
116
|
-
RDF::Statement.new(RDF::URI('http://schema.org/NutritionInformation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
117
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OpeningHoursSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
118
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OwnershipInfo'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
119
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PriceSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
120
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DeliveryChargeSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PriceSpecification'), :context => RDF::URI('http://schema.org/')),
|
121
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PaymentChargeSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PriceSpecification'), :context => RDF::URI('http://schema.org/')),
|
122
|
-
RDF::Statement.new(RDF::URI('http://schema.org/UnitPriceSpecification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PriceSpecification'), :context => RDF::URI('http://schema.org/')),
|
123
|
-
RDF::Statement.new(RDF::URI('http://schema.org/QuantitativeValue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
124
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TypeAndQuantityNode'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
125
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WarrantyPromise'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/StructuredValue'), :context => RDF::URI('http://schema.org/')),
|
126
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalEntity'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
127
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AnatomicalStructure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
128
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Bone'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
129
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BrainStructure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
130
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Joint'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
131
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Ligament'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
132
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Muscle'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
133
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Nerve'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
134
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Vessel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AnatomicalStructure'), :context => RDF::URI('http://schema.org/')),
|
135
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Artery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Vessel'), :context => RDF::URI('http://schema.org/')),
|
136
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LymphaticVessel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Vessel'), :context => RDF::URI('http://schema.org/')),
|
137
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Vein'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Vessel'), :context => RDF::URI('http://schema.org/')),
|
138
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AnatomicalSystem'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
139
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalCause'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
140
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalCondition'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
141
|
-
RDF::Statement.new(RDF::URI('http://schema.org/InfectiousDisease'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalCondition'), :context => RDF::URI('http://schema.org/')),
|
142
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalContraindication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
143
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalDevice'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
144
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalGuideline'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
145
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalGuidelineContraindication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalGuideline'), :context => RDF::URI('http://schema.org/')),
|
146
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalGuidelineRecommendation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalGuideline'), :context => RDF::URI('http://schema.org/')),
|
147
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalIndication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
148
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ApprovedIndication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIndication'), :context => RDF::URI('http://schema.org/')),
|
149
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PreventionIndication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIndication'), :context => RDF::URI('http://schema.org/')),
|
150
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TreatmentIndication'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIndication'), :context => RDF::URI('http://schema.org/')),
|
151
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalIntangible'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
152
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DDxElement'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
153
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DoseSchedule'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
154
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MaximumDoseSchedule'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/DoseSchedule'), :context => RDF::URI('http://schema.org/')),
|
155
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RecommendedDoseSchedule'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/DoseSchedule'), :context => RDF::URI('http://schema.org/')),
|
156
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ReportedDoseSchedule'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/DoseSchedule'), :context => RDF::URI('http://schema.org/')),
|
157
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugCost'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
158
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugLegalStatus'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
159
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugStrength'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
160
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalCode'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
161
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalConditionStage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
162
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalEnumeration'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalIntangible'), :context => RDF::URI('http://schema.org/')),
|
163
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugCostCategory'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
164
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugPregnancyCategory'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
165
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugPrescriptionStatus'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
166
|
-
RDF::Statement.new(RDF::URI('http://schema.org/InfectiousAgentClass'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
167
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalDevicePurpose'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
168
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalEvidenceLevel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
169
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalImagingTechnique'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
170
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalObservationalStudyDesign'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
171
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalProcedureType'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
172
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalStudyStatus'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
173
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalTrialDesign'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
174
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicineSystem'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
175
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PhysicalActivityCategory'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
176
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PhysicalExam'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEnumeration'), :context => RDF::URI('http://schema.org/')),
|
177
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
178
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DiagnosticProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalProcedure'), :context => RDF::URI('http://schema.org/')),
|
179
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DiagnosticProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTest'), :context => RDF::URI('http://schema.org/')),
|
180
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PalliativeProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalProcedure'), :context => RDF::URI('http://schema.org/')),
|
181
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PalliativeProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
182
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TherapeuticProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalProcedure'), :context => RDF::URI('http://schema.org/')),
|
183
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TherapeuticProcedure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
184
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalRiskEstimator'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
185
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalRiskCalculator'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalRiskEstimator'), :context => RDF::URI('http://schema.org/')),
|
186
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalRiskScore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalRiskEstimator'), :context => RDF::URI('http://schema.org/')),
|
187
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalRiskFactor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
188
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalSignOrSymptom'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
189
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalSign'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalSignOrSymptom'), :context => RDF::URI('http://schema.org/')),
|
190
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalSymptom'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalSignOrSymptom'), :context => RDF::URI('http://schema.org/')),
|
191
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalStudy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
192
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalObservationalStudy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalStudy'), :context => RDF::URI('http://schema.org/')),
|
193
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalTrial'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalStudy'), :context => RDF::URI('http://schema.org/')),
|
194
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalTest'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
195
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BloodTest'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTest'), :context => RDF::URI('http://schema.org/')),
|
196
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ImagingTest'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTest'), :context => RDF::URI('http://schema.org/')),
|
197
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalTestPanel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTest'), :context => RDF::URI('http://schema.org/')),
|
198
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PathologyTest'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTest'), :context => RDF::URI('http://schema.org/')),
|
199
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalTherapy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
200
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DietarySupplement'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
201
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Drug'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
202
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DrugClass'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
203
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LifestyleModification'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
204
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PhysicalActivity'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LifestyleModification'), :context => RDF::URI('http://schema.org/')),
|
205
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PhysicalTherapy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
206
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PsychologicalTreatment'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
207
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RadiationTherapy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalTherapy'), :context => RDF::URI('http://schema.org/')),
|
208
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SuperficialAnatomy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalEntity'), :context => RDF::URI('http://schema.org/')),
|
209
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Organization'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
210
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Corporation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
211
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EducationalOrganization'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
212
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CollegeOrUniversity'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
213
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ElementarySchool'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
214
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HighSchool'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
215
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MiddleSchool'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
216
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Preschool'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
217
|
-
RDF::Statement.new(RDF::URI('http://schema.org/School'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EducationalOrganization'), :context => RDF::URI('http://schema.org/')),
|
218
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GovernmentOrganization'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
219
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LocalBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
220
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LocalBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
221
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AnimalShelter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
222
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutomotiveBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
223
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoBodyShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
224
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoDealer'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
225
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoPartsStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
226
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoPartsStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
227
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoRental'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
228
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoRepair'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
229
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutoWash'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
230
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GasStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
231
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MotorcycleDealer'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
232
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MotorcycleRepair'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AutomotiveBusiness'), :context => RDF::URI('http://schema.org/')),
|
233
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ChildCare'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
234
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DryCleaningOrLaundry'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
235
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EmergencyService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
236
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FireStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
237
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FireStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EmergencyService'), :context => RDF::URI('http://schema.org/')),
|
238
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Hospital'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
239
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Hospital'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
240
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Hospital'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EmergencyService'), :context => RDF::URI('http://schema.org/')),
|
241
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PoliceStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
242
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PoliceStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EmergencyService'), :context => RDF::URI('http://schema.org/')),
|
243
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EmploymentAgency'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
244
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EntertainmentBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
245
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AdultEntertainment'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
246
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AmusementPark'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
247
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ArtGallery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
248
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Casino'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
249
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ComedyClub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
250
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MovieTheater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
251
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MovieTheater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
252
|
-
RDF::Statement.new(RDF::URI('http://schema.org/NightClub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/EntertainmentBusiness'), :context => RDF::URI('http://schema.org/')),
|
253
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FinancialService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
254
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AccountingService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
255
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AccountingService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FinancialService'), :context => RDF::URI('http://schema.org/')),
|
256
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AutomatedTeller'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FinancialService'), :context => RDF::URI('http://schema.org/')),
|
257
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BankOrCreditUnion'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FinancialService'), :context => RDF::URI('http://schema.org/')),
|
258
|
-
RDF::Statement.new(RDF::URI('http://schema.org/InsuranceAgency'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FinancialService'), :context => RDF::URI('http://schema.org/')),
|
259
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FoodEstablishment'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
260
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Bakery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
261
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BarOrPub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
262
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Brewery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
263
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CafeOrCoffeeShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
264
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FastFoodRestaurant'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
265
|
-
RDF::Statement.new(RDF::URI('http://schema.org/IceCreamShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
266
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Restaurant'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
267
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Winery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/FoodEstablishment'), :context => RDF::URI('http://schema.org/')),
|
268
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GovernmentOffice'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
269
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PostOffice'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentOffice'), :context => RDF::URI('http://schema.org/')),
|
270
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HealthAndBeautyBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
271
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BeautySalon'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
272
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DaySpa'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
273
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HairSalon'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
274
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HealthClub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
275
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HealthClub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
276
|
-
RDF::Statement.new(RDF::URI('http://schema.org/NailSalon'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
277
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TattooParlor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HealthAndBeautyBusiness'), :context => RDF::URI('http://schema.org/')),
|
278
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HomeAndConstructionBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
279
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Electrician'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
280
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Electrician'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
281
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GeneralContractor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
282
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GeneralContractor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
283
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HVACBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
284
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HousePainter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
285
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HousePainter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
286
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Locksmith'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
287
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Locksmith'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
288
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MovingCompany'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
289
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Plumber'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
290
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Plumber'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
291
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RoofingContractor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
292
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RoofingContractor'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/HomeAndConstructionBusiness'), :context => RDF::URI('http://schema.org/')),
|
293
|
-
RDF::Statement.new(RDF::URI('http://schema.org/InternetCafe'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
294
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Library'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
295
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LodgingBusiness'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
296
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BedAndBreakfast'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LodgingBusiness'), :context => RDF::URI('http://schema.org/')),
|
297
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Hostel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LodgingBusiness'), :context => RDF::URI('http://schema.org/')),
|
298
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Hotel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LodgingBusiness'), :context => RDF::URI('http://schema.org/')),
|
299
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Motel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LodgingBusiness'), :context => RDF::URI('http://schema.org/')),
|
300
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalOrganization'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
301
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Dentist'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
302
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Dentist'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
303
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DiagnosticLab'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
304
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MedicalClinic'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
305
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Optician'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
306
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Pharmacy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
307
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Physician'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
308
|
-
RDF::Statement.new(RDF::URI('http://schema.org/VeterinaryCare'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/MedicalOrganization'), :context => RDF::URI('http://schema.org/')),
|
309
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ProfessionalService'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
310
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Attorney'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
311
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Notary'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/ProfessionalService'), :context => RDF::URI('http://schema.org/')),
|
312
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RadioStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
313
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RealEstateAgent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
314
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RecyclingCenter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
315
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SelfStorage'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
316
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ShoppingCenter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
317
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SportsActivityLocation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
318
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BowlingAlley'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
319
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ExerciseGym'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
320
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GolfCourse'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
321
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PublicSwimmingPool'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
322
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SkiResort'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
323
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SportsClub'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
324
|
-
RDF::Statement.new(RDF::URI('http://schema.org/StadiumOrArena'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
325
|
-
RDF::Statement.new(RDF::URI('http://schema.org/StadiumOrArena'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
326
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TennisComplex'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/SportsActivityLocation'), :context => RDF::URI('http://schema.org/')),
|
327
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Store'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
328
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BikeStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
329
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BookStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
330
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ClothingStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
331
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ComputerStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
332
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ConvenienceStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
333
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DepartmentStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
334
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ElectronicsStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
335
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Florist'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
336
|
-
RDF::Statement.new(RDF::URI('http://schema.org/FurnitureStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
337
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GardenStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
338
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GroceryStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
339
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HardwareStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
340
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HobbyShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
341
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HomeGoodsStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
342
|
-
RDF::Statement.new(RDF::URI('http://schema.org/JewelryStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
343
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LiquorStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
344
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MensClothingStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
345
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MobilePhoneStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
346
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MovieRentalStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
347
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
348
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OfficeEquipmentStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
349
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OutletStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
350
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PawnShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
351
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PetStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
352
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ShoeStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
353
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SportingGoodsStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
354
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TireShop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
355
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ToyStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
356
|
-
RDF::Statement.new(RDF::URI('http://schema.org/WholesaleStore'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Store'), :context => RDF::URI('http://schema.org/')),
|
357
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TelevisionStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
358
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TouristInformationCenter'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
359
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TravelAgency'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/LocalBusiness'), :context => RDF::URI('http://schema.org/')),
|
360
|
-
RDF::Statement.new(RDF::URI('http://schema.org/NGO'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
361
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PerformingGroup'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
362
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DanceGroup'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PerformingGroup'), :context => RDF::URI('http://schema.org/')),
|
363
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicGroup'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PerformingGroup'), :context => RDF::URI('http://schema.org/')),
|
364
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TheaterGroup'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PerformingGroup'), :context => RDF::URI('http://schema.org/')),
|
365
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SportsTeam'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Organization'), :context => RDF::URI('http://schema.org/')),
|
366
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Person'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
367
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Place'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
368
|
-
RDF::Statement.new(RDF::URI('http://schema.org/AdministrativeArea'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
369
|
-
RDF::Statement.new(RDF::URI('http://schema.org/City'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AdministrativeArea'), :context => RDF::URI('http://schema.org/')),
|
370
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Country'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AdministrativeArea'), :context => RDF::URI('http://schema.org/')),
|
371
|
-
RDF::Statement.new(RDF::URI('http://schema.org/State'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/AdministrativeArea'), :context => RDF::URI('http://schema.org/')),
|
372
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CivicStructure'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
373
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Airport'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
374
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Aquarium'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
375
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Beach'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
376
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BusStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
377
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BusStop'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
378
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Campground'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
379
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Cemetery'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
380
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Crematorium'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
381
|
-
RDF::Statement.new(RDF::URI('http://schema.org/EventVenue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
382
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GovernmentBuilding'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
383
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CityHall'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentBuilding'), :context => RDF::URI('http://schema.org/')),
|
384
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Courthouse'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentBuilding'), :context => RDF::URI('http://schema.org/')),
|
385
|
-
RDF::Statement.new(RDF::URI('http://schema.org/DefenceEstablishment'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentBuilding'), :context => RDF::URI('http://schema.org/')),
|
386
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Embassy'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentBuilding'), :context => RDF::URI('http://schema.org/')),
|
387
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LegislativeBuilding'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/GovernmentBuilding'), :context => RDF::URI('http://schema.org/')),
|
388
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Museum'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
389
|
-
RDF::Statement.new(RDF::URI('http://schema.org/MusicVenue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
390
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Park'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
391
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ParkingFacility'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
392
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PerformingArtsTheater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
393
|
-
RDF::Statement.new(RDF::URI('http://schema.org/PlaceOfWorship'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
394
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BuddhistTemple'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
395
|
-
RDF::Statement.new(RDF::URI('http://schema.org/CatholicChurch'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
396
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Church'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
397
|
-
RDF::Statement.new(RDF::URI('http://schema.org/HinduTemple'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
398
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Mosque'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
399
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Synagogue'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/PlaceOfWorship'), :context => RDF::URI('http://schema.org/')),
|
400
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Playground'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
401
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RVPark'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
402
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SubwayStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
403
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TaxiStand'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
404
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TrainStation'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
405
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Zoo'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/CivicStructure'), :context => RDF::URI('http://schema.org/')),
|
406
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Landform'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
407
|
-
RDF::Statement.new(RDF::URI('http://schema.org/BodyOfWater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Landform'), :context => RDF::URI('http://schema.org/')),
|
408
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Canal'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
409
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LakeBodyOfWater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
410
|
-
RDF::Statement.new(RDF::URI('http://schema.org/OceanBodyOfWater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
411
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Pond'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
412
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Reservoir'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
413
|
-
RDF::Statement.new(RDF::URI('http://schema.org/RiverBodyOfWater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
414
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SeaBodyOfWater'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
415
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Waterfall'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/BodyOfWater'), :context => RDF::URI('http://schema.org/')),
|
416
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Continent'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Landform'), :context => RDF::URI('http://schema.org/')),
|
417
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Mountain'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Landform'), :context => RDF::URI('http://schema.org/')),
|
418
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Volcano'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Landform'), :context => RDF::URI('http://schema.org/')),
|
419
|
-
RDF::Statement.new(RDF::URI('http://schema.org/LandmarksOrHistoricalBuildings'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
420
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Residence'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
421
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ApartmentComplex'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Residence'), :context => RDF::URI('http://schema.org/')),
|
422
|
-
RDF::Statement.new(RDF::URI('http://schema.org/GatedResidenceCommunity'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Residence'), :context => RDF::URI('http://schema.org/')),
|
423
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SingleFamilyResidence'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Residence'), :context => RDF::URI('http://schema.org/')),
|
424
|
-
RDF::Statement.new(RDF::URI('http://schema.org/TouristAttraction'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Place'), :context => RDF::URI('http://schema.org/')),
|
425
|
-
RDF::Statement.new(RDF::URI('http://schema.org/Product'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Thing'), :context => RDF::URI('http://schema.org/')),
|
426
|
-
RDF::Statement.new(RDF::URI('http://schema.org/IndividualProduct'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://schema.org/')),
|
427
|
-
RDF::Statement.new(RDF::URI('http://schema.org/ProductModel'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://schema.org/')),
|
428
|
-
RDF::Statement.new(RDF::URI('http://schema.org/SomeProducts'), RDF::URI('http://www.w3.org/2000/01/rdf-schema#subClassOf'), RDF::URI('http://schema.org/Product'), :context => RDF::URI('http://schema.org/')),
|
429
|
-
].each {|st| COOKED_VOCAB_STATEMENTS << st }
|
430
|
-
end
|