rdf 1.1.7 → 1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README +5 -5
- data/VERSION +1 -1
- data/lib/rdf/cli/vocab-loader.rb +10 -6
- data/lib/rdf/model/graph.rb +5 -11
- data/lib/rdf/model/statement.rb +1 -1
- data/lib/rdf/model/uri.rb +5 -4
- data/lib/rdf/repository.rb +1 -1
- data/lib/rdf/util/file.rb +33 -11
- data/lib/rdf/vocab.rb +1 -1
- data/lib/rdf/vocab/dcat.rb +213 -0
- data/lib/rdf/vocab/og.rb +76 -41
- data/lib/rdf/vocab/ogc.rb +57 -0
- data/lib/rdf/vocab/schema.rb +230 -154
- metadata +5 -3
data/lib/rdf/vocab/og.rb
CHANGED
@@ -6,180 +6,215 @@ module RDF
|
|
6
6
|
|
7
7
|
# Property definitions
|
8
8
|
property :audio,
|
9
|
+
comment: %(A relevant audio URL for your object.).freeze,
|
9
10
|
label: "audio".freeze,
|
10
|
-
range: "
|
11
|
+
range: "ogc:url".freeze,
|
11
12
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
12
13
|
type: "rdf:Property".freeze
|
13
14
|
property :"audio:album",
|
14
|
-
|
15
|
+
comment: %([DEPRECATED] An album to which some audio belongs.).freeze,
|
16
|
+
label: "audio album".freeze,
|
15
17
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
16
18
|
type: "rdf:Property".freeze
|
17
19
|
property :"audio:artist",
|
18
|
-
|
20
|
+
comment: %([DEPRECATED] An artist of some audio.).freeze,
|
21
|
+
label: "audio artist".freeze,
|
19
22
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
20
23
|
type: "rdf:Property".freeze
|
21
24
|
property :"audio:secure_url",
|
22
|
-
|
23
|
-
|
25
|
+
comment: %(A relevant, secure audio URL for your object.).freeze,
|
26
|
+
label: "audio secure URL".freeze,
|
27
|
+
range: "ogc:url".freeze,
|
24
28
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
25
29
|
type: "rdf:Property".freeze
|
26
30
|
property :"audio:title",
|
27
|
-
|
31
|
+
comment: %([DEPRECATED] A title for some audio.).freeze,
|
32
|
+
label: "audio title".freeze,
|
28
33
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
29
34
|
type: "rdf:Property".freeze
|
30
35
|
property :"audio:type",
|
31
|
-
|
32
|
-
|
36
|
+
comment: %(The mime type of an audio file e.g., "application/mp3").freeze,
|
37
|
+
label: "audio type".freeze,
|
38
|
+
range: "ogc:mime_type_str".freeze,
|
33
39
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
34
40
|
type: "rdf:Property".freeze
|
35
41
|
property :"country-name",
|
36
|
-
|
42
|
+
comment: %([DEPRECATED] The country name of the resource e.g., "USA").freeze,
|
43
|
+
label: "country name".freeze,
|
37
44
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
38
45
|
"rdfs:seeAlso" => %(vcard:country-name).freeze,
|
39
46
|
type: "rdf:Property".freeze
|
40
47
|
property :description,
|
48
|
+
comment: %(A one to two sentence description of your object.).freeze,
|
41
49
|
label: "description".freeze,
|
42
|
-
range: "
|
50
|
+
range: "ogc:string".freeze,
|
43
51
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
44
52
|
subPropertyOf: "rdfs:comment".freeze,
|
45
53
|
type: "rdf:Property".freeze
|
46
54
|
property :determiner,
|
55
|
+
comment: %(The word to precede the object's title in a sentence \(e.g., "the" in "the statue of liberty"\). Valid values are "a", "an", "the", "", and "auto".).freeze,
|
47
56
|
label: "determiner".freeze,
|
48
|
-
range: "
|
57
|
+
range: "ogc:determiner_str".freeze,
|
49
58
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
50
59
|
type: "rdf:Property".freeze
|
51
60
|
property :email,
|
61
|
+
comment: %([DEPRECATED] Email of the contact for your object.).freeze,
|
52
62
|
label: "email".freeze,
|
53
63
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
54
64
|
"rdfs:seeAlso" => %(foaf:mbox).freeze,
|
55
65
|
type: "rdf:Property".freeze
|
56
66
|
property :fax_number,
|
57
|
-
|
67
|
+
comment: %([DEPRECATED] Fax number of the contact for your object.).freeze,
|
68
|
+
label: "fax number".freeze,
|
58
69
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
59
70
|
"rdfs:seeAlso" => %(foaf:phone).freeze,
|
60
71
|
type: "rdf:Property".freeze
|
61
72
|
property :image,
|
73
|
+
comment: %(An image URL which should represent your object within the graph.).freeze,
|
62
74
|
label: "image".freeze,
|
63
|
-
range: "
|
75
|
+
range: "ogc:url".freeze,
|
64
76
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
65
77
|
"rdfs:seeAlso" => %(foaf:depiction).freeze,
|
66
78
|
type: "rdf:Property".freeze
|
67
79
|
property :"image:height",
|
68
|
-
|
69
|
-
|
80
|
+
comment: %(The height of an image.).freeze,
|
81
|
+
label: "image height".freeze,
|
82
|
+
range: "ogc:integer_str".freeze,
|
70
83
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
71
84
|
type: "rdf:Property".freeze
|
72
85
|
property :"image:secure_url",
|
73
|
-
|
74
|
-
|
86
|
+
comment: %(A secure image URL which should represent your object within the graph.).freeze,
|
87
|
+
label: "image secure url".freeze,
|
88
|
+
range: "ogc:url".freeze,
|
75
89
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
76
90
|
"rdfs:seeAlso" => %(foaf:depiction).freeze,
|
77
91
|
type: "rdf:Property".freeze
|
78
92
|
property :"image:type",
|
79
|
-
|
80
|
-
|
93
|
+
comment: %(The mime type of an image.).freeze,
|
94
|
+
label: "image type".freeze,
|
95
|
+
range: "ogc:mime_type_str".freeze,
|
81
96
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
82
97
|
type: "rdf:Property".freeze
|
83
98
|
property :"image:width",
|
84
|
-
|
85
|
-
|
99
|
+
comment: %(The width of an image.).freeze,
|
100
|
+
label: "image width".freeze,
|
101
|
+
range: "ogc:integer_str".freeze,
|
86
102
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
87
103
|
type: "rdf:Property".freeze
|
88
104
|
property :isbn,
|
89
|
-
|
105
|
+
comment: %([DEPRECATED] International Standard Book Number for you object.).freeze,
|
106
|
+
label: ["isbn".freeze, "International Standard Book Number".freeze],
|
90
107
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
91
108
|
"rdfs:seeAlso" => %(http://purl.org/ontology/bibo/isbn).freeze,
|
92
109
|
type: "rdf:Property".freeze
|
93
110
|
property :latitude,
|
111
|
+
comment: %([DEPRECATED] The latitude of the resource e.g., the latitude of a company.).freeze,
|
94
112
|
label: "latitude".freeze,
|
95
113
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
96
114
|
"rdfs:seeAlso" => %(geo:lat).freeze,
|
97
115
|
type: "rdf:Property".freeze
|
98
116
|
property :locale,
|
117
|
+
comment: %(A Unix locale in which this markup is rendered.).freeze,
|
99
118
|
label: "locale".freeze,
|
100
|
-
range: "
|
119
|
+
range: "ogc:string".freeze,
|
101
120
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
102
121
|
type: "rdf:Property".freeze
|
103
122
|
property :locality,
|
123
|
+
comment: %([DEPRECATED] The locality of the resource e.g, "Palo Alto").freeze,
|
104
124
|
label: "locality".freeze,
|
105
125
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
106
126
|
"rdfs:seeAlso" => %(vcard:locality).freeze,
|
107
127
|
type: "rdf:Property".freeze
|
108
128
|
property :longitude,
|
129
|
+
comment: %([DEPRECATED] The longitude of the resource e.g., the longitude of a company.).freeze,
|
109
130
|
label: "longitude".freeze,
|
110
131
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
111
132
|
"rdfs:seeAlso" => %(geo:long).freeze,
|
112
133
|
type: "rdf:Property".freeze
|
113
134
|
property :phone_number,
|
114
|
-
|
135
|
+
comment: %([DEPRECATED] Phone number of the contact for your object.).freeze,
|
136
|
+
label: "phone number".freeze,
|
115
137
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
116
138
|
"rdfs:seeAlso" => %(foaf:phone).freeze,
|
117
139
|
type: "rdf:Property".freeze
|
118
140
|
property :"postal-code",
|
119
|
-
|
141
|
+
comment: %([DEPRECATED] The postal code of the resource e.g., "94304").freeze,
|
142
|
+
label: "postal code".freeze,
|
120
143
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
121
144
|
"rdfs:seeAlso" => %(vcard:postal-code).freeze,
|
122
145
|
type: "rdf:Property".freeze
|
123
146
|
property :region,
|
147
|
+
comment: %([DEPRECATED] The region of the resource e.g., "CA").freeze,
|
124
148
|
label: "region".freeze,
|
125
149
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
126
150
|
"rdfs:seeAlso" => %(vcard:region).freeze,
|
127
151
|
type: "rdf:Property".freeze
|
128
152
|
property :site_name,
|
129
|
-
|
130
|
-
|
153
|
+
comment: %(If your object is part of a larger web site, the name which should be displayed for the overall site. e.g., "IMDb".).freeze,
|
154
|
+
label: "site name".freeze,
|
155
|
+
range: "ogc:string".freeze,
|
131
156
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
132
157
|
type: "rdf:Property".freeze
|
133
158
|
property :"street-address",
|
134
|
-
|
159
|
+
comment: %([DEPRECATED] The street address of the resource e.g., "1601 S California Ave".).freeze,
|
160
|
+
label: "street address".freeze,
|
135
161
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
136
162
|
"rdfs:seeAlso" => %(vcard:street-address).freeze,
|
137
163
|
type: "rdf:Property".freeze
|
138
164
|
property :title,
|
165
|
+
comment: %(The title of the object as it should appear within the graph, e.g., "The Rock".).freeze,
|
139
166
|
label: "title".freeze,
|
140
|
-
range: "
|
167
|
+
range: "ogc:string".freeze,
|
141
168
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
142
169
|
subPropertyOf: "rdfs:label".freeze,
|
143
170
|
type: "rdf:Property".freeze
|
144
171
|
property :type,
|
172
|
+
comment: %(The type of your object, e.g., "movie". Depending on the type you specify, other properties may also be required.).freeze,
|
145
173
|
label: "type".freeze,
|
146
|
-
range: "
|
174
|
+
range: "ogc:string".freeze,
|
147
175
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
148
176
|
"rdfs:seeAlso" => %(rdf:type).freeze,
|
149
177
|
type: "rdf:Property".freeze
|
150
178
|
property :upc,
|
151
|
-
|
179
|
+
comment: %([DEPRECATED] Universal Product Code for your object.).freeze,
|
180
|
+
label: ["upc".freeze, "universal product code".freeze],
|
152
181
|
"rdfs:seeAlso" => %(gr:hasEAN_UCC-13).freeze,
|
153
182
|
type: "rdf:Property".freeze
|
154
183
|
property :url,
|
184
|
+
comment: %(The canonical URL of your object that will be used as its permanent ID in the graph, e.g., "http://www.imdb.com/title/tt0117500/".).freeze,
|
155
185
|
label: "url".freeze,
|
156
|
-
range: "
|
186
|
+
range: "ogc:url".freeze,
|
157
187
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
158
188
|
"rdfs:seeAlso" => [%(dc11:identifier).freeze, %(foaf:homepage).freeze],
|
159
189
|
type: "rdf:Property".freeze
|
160
190
|
property :video,
|
191
|
+
comment: %(A relevant video URL for your object.).freeze,
|
161
192
|
label: "video".freeze,
|
162
|
-
range: "
|
193
|
+
range: "ogc:url".freeze,
|
163
194
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
164
195
|
type: "rdf:Property".freeze
|
165
196
|
property :"video:height",
|
166
|
-
|
167
|
-
|
197
|
+
comment: %(The height of a video.).freeze,
|
198
|
+
label: "video height".freeze,
|
199
|
+
range: "ogc:integer_str".freeze,
|
168
200
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
169
201
|
type: "rdf:Property".freeze
|
170
202
|
property :"video:secure_url",
|
171
|
-
|
172
|
-
|
203
|
+
comment: %(A relevant, secure video URL for your object.).freeze,
|
204
|
+
label: "video secure URL".freeze,
|
205
|
+
range: "ogc:url".freeze,
|
173
206
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
174
207
|
type: "rdf:Property".freeze
|
175
208
|
property :"video:type",
|
176
|
-
|
177
|
-
|
209
|
+
comment: %(The mime type of a video e.g., "application/x-shockwave-flash").freeze,
|
210
|
+
label: "video type".freeze,
|
211
|
+
range: "ogc:mime_type_str".freeze,
|
178
212
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
179
213
|
type: "rdf:Property".freeze
|
180
214
|
property :"video:width",
|
181
|
-
|
182
|
-
|
215
|
+
comment: %(The width of a video.).freeze,
|
216
|
+
label: "video width".freeze,
|
217
|
+
range: "ogc:integer_str".freeze,
|
183
218
|
"rdfs:isDefinedBy" => %(og:).freeze,
|
184
219
|
type: "rdf:Property".freeze
|
185
220
|
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# This file generated automatically using vocab-fetch from http://ogp.me/ns
|
3
|
+
require 'rdf'
|
4
|
+
module RDF
|
5
|
+
class OGC < RDF::StrictVocabulary("http://ogp.me/ns/class#")
|
6
|
+
|
7
|
+
# Datatype definitions
|
8
|
+
term :boolean_str,
|
9
|
+
comment: %(A string representation of a true or false value. The lexical space contains: "true", "false", "1", and "0".).freeze,
|
10
|
+
label: "boolean string".freeze,
|
11
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
12
|
+
subClassOf: "xsd:string".freeze,
|
13
|
+
type: "rdfs:Datatype".freeze
|
14
|
+
term :date_time_str,
|
15
|
+
comment: %(A string representation of a temporal value composed of a date \(year, month, day\) and an optional time component \(hours, minutes\). The lexical space is defined by ISO 8601.).freeze,
|
16
|
+
label: "date/time string".freeze,
|
17
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
18
|
+
subClassOf: "xsd:string".freeze,
|
19
|
+
type: "rdfs:Datatype".freeze
|
20
|
+
term :determiner_str,
|
21
|
+
comment: %(The lexical space: "", "the", "a", "an", and "auto".).freeze,
|
22
|
+
label: "determiner".freeze,
|
23
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
24
|
+
subClassOf: "xsd:string".freeze,
|
25
|
+
type: "rdfs:Datatype".freeze
|
26
|
+
term :float_str,
|
27
|
+
comment: %(A string representation of a 64-bit signed floating point number. Example lexical values include "1.234", "-1.234", "1.2e3", "-1.2e3", and "7E-10".).freeze,
|
28
|
+
label: "float string".freeze,
|
29
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
30
|
+
subClassOf: "xsd:string".freeze,
|
31
|
+
type: "rdfs:Datatype".freeze
|
32
|
+
term :integer_str,
|
33
|
+
comment: %(A string representation of a 32-bit signed integer. Example lexical values include "1234" and "-123".).freeze,
|
34
|
+
label: "integer string".freeze,
|
35
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
36
|
+
subClassOf: "xsd:string".freeze,
|
37
|
+
type: "rdfs:Datatype".freeze
|
38
|
+
term :mime_type_str,
|
39
|
+
comment: %(Valid mime type strings \(e.g., "application/mp3"\).).freeze,
|
40
|
+
label: "mime type string".freeze,
|
41
|
+
"rdfs:isDefinedBy" => %(og:).freeze,
|
42
|
+
subClassOf: "xsd:string".freeze,
|
43
|
+
type: "rdfs:Datatype".freeze
|
44
|
+
term :string,
|
45
|
+
comment: %(A string of Unicode characters.).freeze,
|
46
|
+
label: "Unicode string".freeze,
|
47
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
48
|
+
subClassOf: "xsd:string".freeze,
|
49
|
+
type: "rdfs:Datatype".freeze
|
50
|
+
term :url,
|
51
|
+
comment: %(A string of Unicode characters forming a valid URL having the http or https scheme.).freeze,
|
52
|
+
label: "URL".freeze,
|
53
|
+
"rdfs:isDefinedBy" => %(ogc:).freeze,
|
54
|
+
subClassOf: "ogc:string".freeze,
|
55
|
+
type: "rdfs:Datatype".freeze
|
56
|
+
end
|
57
|
+
end
|
data/lib/rdf/vocab/schema.rb
CHANGED
@@ -16,7 +16,7 @@ module RDF
|
|
16
16
|
subClassOf: "schema:WebPage".freeze,
|
17
17
|
type: "rdfs:Class".freeze
|
18
18
|
term :AcceptAction,
|
19
|
-
comment: %(The act of committing to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/RejectAction">RejectAction</a>: The antagonym of AcceptAction
|
19
|
+
comment: %(The act of committing to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/RejectAction">RejectAction</a>: The antagonym of AcceptAction</li></ul>.).freeze,
|
20
20
|
label: "AcceptAction".freeze,
|
21
21
|
subClassOf: "schema:AllocateAction".freeze,
|
22
22
|
type: "rdfs:Class".freeze
|
@@ -33,7 +33,7 @@ module RDF
|
|
33
33
|
term :Action,
|
34
34
|
comment: %(An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.
|
35
35
|
<br/><br/>See also <a href="http://blog.schema.org/2014/04/announcing-schemaorg-actions.html">blog post</a>
|
36
|
-
and <a href="http://schema.org/docs/actions.html">Actions overview document
|
36
|
+
and <a href="http://schema.org/docs/actions.html">Actions overview document</a>.).freeze,
|
37
37
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass).freeze,
|
38
38
|
label: "Action".freeze,
|
39
39
|
subClassOf: "schema:Thing".freeze,
|
@@ -138,7 +138,7 @@ module RDF
|
|
138
138
|
subClassOf: "schema:InsertAction".freeze,
|
139
139
|
type: "rdfs:Class".freeze
|
140
140
|
term :ApplyAction,
|
141
|
-
comment: %(The act of registering to an organization/service without the guarantee to receive it.
|
141
|
+
comment: %(The act of registering to an organization/service without the guarantee to receive it. <p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted</li></ul>.).freeze,
|
142
142
|
label: "ApplyAction".freeze,
|
143
143
|
subClassOf: "schema:OrganizeAction".freeze,
|
144
144
|
type: "rdfs:Class".freeze
|
@@ -172,13 +172,13 @@ module RDF
|
|
172
172
|
term :Article,
|
173
173
|
comment: %(An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.
|
174
174
|
|
175
|
-
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a
|
175
|
+
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>.).freeze,
|
176
176
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
|
177
177
|
label: "Article".freeze,
|
178
178
|
subClassOf: "schema:CreativeWork".freeze,
|
179
179
|
type: "rdfs:Class".freeze
|
180
180
|
term :AskAction,
|
181
|
-
comment: %(The act of posing a question / favor to someone.<p>Related actions:</p><ul><li><a href="http://schema.org/ReplyAction">ReplyAction</a>: Appears generally as a response to AskAction
|
181
|
+
comment: %(The act of posing a question / favor to someone.<p>Related actions:</p><ul><li><a href="http://schema.org/ReplyAction">ReplyAction</a>: Appears generally as a response to AskAction</li></ul>.).freeze,
|
182
182
|
label: "AskAction".freeze,
|
183
183
|
subClassOf: "schema:CommunicateAction".freeze,
|
184
184
|
type: "rdfs:Class".freeze
|
@@ -288,7 +288,7 @@ module RDF
|
|
288
288
|
subClassOf: "schema:LodgingBusiness".freeze,
|
289
289
|
type: "rdfs:Class".freeze
|
290
290
|
term :BefriendAction,
|
291
|
-
comment: %(The act of forming a personal connection with someone \(object\) mutually/bidirectionally/symmetrically.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, BefriendAction implies that the connection is reciprocal
|
291
|
+
comment: %(The act of forming a personal connection with someone \(object\) mutually/bidirectionally/symmetrically.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, BefriendAction implies that the connection is reciprocal</li></ul>.).freeze,
|
292
292
|
label: "BefriendAction".freeze,
|
293
293
|
subClassOf: "schema:InteractAction".freeze,
|
294
294
|
type: "rdfs:Class".freeze
|
@@ -298,7 +298,7 @@ module RDF
|
|
298
298
|
subClassOf: "schema:Store".freeze,
|
299
299
|
type: "rdfs:Class".freeze
|
300
300
|
term :Blog,
|
301
|
-
comment: %(A blog).freeze,
|
301
|
+
comment: %(A blog.).freeze,
|
302
302
|
label: "Blog".freeze,
|
303
303
|
subClassOf: "schema:CreativeWork".freeze,
|
304
304
|
type: "rdfs:Class".freeze
|
@@ -355,7 +355,7 @@ module RDF
|
|
355
355
|
subClassOf: "schema:DataType".freeze,
|
356
356
|
type: "rdfs:Class".freeze
|
357
357
|
term :BorrowAction,
|
358
|
-
comment: %(The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.<p>Related actions:</p><ul><li><a href="http://schema.org/LendAction">LendAction</a>: Reciprocal of BorrowAction
|
358
|
+
comment: %(The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.<p>Related actions:</p><ul><li><a href="http://schema.org/LendAction">LendAction</a>: Reciprocal of BorrowAction</li></ul>.).freeze,
|
359
359
|
label: "BorrowAction".freeze,
|
360
360
|
subClassOf: "schema:TransferAction".freeze,
|
361
361
|
type: "rdfs:Class".freeze
|
@@ -481,12 +481,12 @@ module RDF
|
|
481
481
|
subClassOf: "schema:CivicStructure".freeze,
|
482
482
|
type: "rdfs:Class".freeze
|
483
483
|
term :Canal,
|
484
|
-
comment: %(A canal, like the Panama Canal).freeze,
|
484
|
+
comment: %(A canal, like the Panama Canal.).freeze,
|
485
485
|
label: "Canal".freeze,
|
486
486
|
subClassOf: "schema:BodyOfWater".freeze,
|
487
487
|
type: "rdfs:Class".freeze
|
488
488
|
term :CancelAction,
|
489
|
-
comment: %(The act of asserting that a future event/action is no longer going to happen.<p>Related actions:</p><ul><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: The antagonym of CancelAction
|
489
|
+
comment: %(The act of asserting that a future event/action is no longer going to happen.<p>Related actions:</p><ul><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: The antagonym of CancelAction</li></ul>.).freeze,
|
490
490
|
label: "CancelAction".freeze,
|
491
491
|
subClassOf: "schema:PlanAction".freeze,
|
492
492
|
type: "rdfs:Class".freeze
|
@@ -516,12 +516,12 @@ module RDF
|
|
516
516
|
subClassOf: "schema:FindAction".freeze,
|
517
517
|
type: "rdfs:Class".freeze
|
518
518
|
term :CheckInAction,
|
519
|
-
comment: %(The act of an agent communicating \(service provider, social media, etc\) their arrival by registering/confirming for a previously reserved service \(e.g. flight check in\) or at a place \(e.g. hotel\), possibly resulting in a result \(boarding pass, etc\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckOutAction">CheckOutAction</a>: The antagonym of CheckInAction.</li><li><a href="http://schema.org/ArriveAction">ArriveAction</a>: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.</li><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence
|
519
|
+
comment: %(The act of an agent communicating \(service provider, social media, etc\) their arrival by registering/confirming for a previously reserved service \(e.g. flight check in\) or at a place \(e.g. hotel\), possibly resulting in a result \(boarding pass, etc\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckOutAction">CheckOutAction</a>: The antagonym of CheckInAction.</li><li><a href="http://schema.org/ArriveAction">ArriveAction</a>: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.</li><li><a href="http://schema.org/ConfirmAction">ConfirmAction</a>: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence</li></ul>.).freeze,
|
520
520
|
label: "CheckInAction".freeze,
|
521
521
|
subClassOf: "schema:CommunicateAction".freeze,
|
522
522
|
type: "rdfs:Class".freeze
|
523
523
|
term :CheckOutAction,
|
524
|
-
comment: %(The act of an agent communicating \(service provider, social media, etc\) their departure of a previously reserved service \(e.g. flight check in\) or place \(e.g. hotel\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckInAction">CheckInAction</a>: The antagonym of CheckOutAction.</li><li><a href="http://schema.org/DepartAction">DepartAction</a>: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.</li><li><a href="http://schema.org/CancelAction">CancelAction</a>: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service
|
524
|
+
comment: %(The act of an agent communicating \(service provider, social media, etc\) their departure of a previously reserved service \(e.g. flight check in\) or place \(e.g. hotel\).<p>Related actions:</p><ul><li><a href="http://schema.org/CheckInAction">CheckInAction</a>: The antagonym of CheckOutAction.</li><li><a href="http://schema.org/DepartAction">DepartAction</a>: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.</li><li><a href="http://schema.org/CancelAction">CancelAction</a>: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service</li></ul>.).freeze,
|
525
525
|
label: "CheckOutAction".freeze,
|
526
526
|
subClassOf: "schema:CommunicateAction".freeze,
|
527
527
|
type: "rdfs:Class".freeze
|
@@ -626,7 +626,7 @@ module RDF
|
|
626
626
|
subClassOf: "schema:Store".freeze,
|
627
627
|
type: "rdfs:Class".freeze
|
628
628
|
term :ConfirmAction,
|
629
|
-
comment: %(The act of notifying someone that a future event/action is going to happen as expected.<p>Related actions:</p><ul><li><a href="http://schema.org/CancelAction">CancelAction</a>: The antagonym of ConfirmAction
|
629
|
+
comment: %(The act of notifying someone that a future event/action is going to happen as expected.<p>Related actions:</p><ul><li><a href="http://schema.org/CancelAction">CancelAction</a>: The antagonym of ConfirmAction</li></ul>.).freeze,
|
630
630
|
label: "ConfirmAction".freeze,
|
631
631
|
subClassOf: "schema:InformAction".freeze,
|
632
632
|
type: "rdfs:Class".freeze
|
@@ -646,7 +646,7 @@ module RDF
|
|
646
646
|
subClassOf: "schema:StructuredValue".freeze,
|
647
647
|
type: "rdfs:Class".freeze
|
648
648
|
term :ContactPointOption,
|
649
|
-
comment: %(Enumerated options related to a ContactPoint).freeze,
|
649
|
+
comment: %(Enumerated options related to a ContactPoint.).freeze,
|
650
650
|
label: "ContactPointOption".freeze,
|
651
651
|
subClassOf: "schema:Enumeration".freeze,
|
652
652
|
type: "rdfs:Class".freeze
|
@@ -738,14 +738,14 @@ module RDF
|
|
738
738
|
comment: %(A collection of datasets.).freeze,
|
739
739
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
|
740
740
|
label: "DataCatalog".freeze,
|
741
|
-
"owl:equivalentClass" => %(
|
741
|
+
"owl:equivalentClass" => %(dcat:DataCatalog).freeze,
|
742
742
|
subClassOf: "schema:CreativeWork".freeze,
|
743
743
|
type: "rdfs:Class".freeze
|
744
744
|
term :DataDownload,
|
745
745
|
comment: %(A dataset in downloadable form.).freeze,
|
746
746
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
|
747
747
|
label: "DataDownload".freeze,
|
748
|
-
"owl:equivalentClass" => %(
|
748
|
+
"owl:equivalentClass" => %(dcat:Distribution).freeze,
|
749
749
|
subClassOf: "schema:MediaObject".freeze,
|
750
750
|
type: "rdfs:Class".freeze
|
751
751
|
term :DataType,
|
@@ -756,7 +756,7 @@ module RDF
|
|
756
756
|
comment: %(A body of structured information describing some topic\(s\) of interest.).freeze,
|
757
757
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass).freeze,
|
758
758
|
label: "Dataset".freeze,
|
759
|
-
"owl:equivalentClass" => [%(
|
759
|
+
"owl:equivalentClass" => [%(dcat:Dataset).freeze, %(void:Dataset).freeze, %(http://purl.org/dc/dcmitype/Dataset).freeze],
|
760
760
|
subClassOf: "schema:CreativeWork".freeze,
|
761
761
|
type: "rdfs:Class".freeze
|
762
762
|
term :Date,
|
@@ -901,7 +901,7 @@ module RDF
|
|
901
901
|
subClassOf: "schema:ReactAction".freeze,
|
902
902
|
type: "rdfs:Class".freeze
|
903
903
|
term :Distance,
|
904
|
-
comment: %(Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft').freeze,
|
904
|
+
comment: %(Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.).freeze,
|
905
905
|
label: "Distance".freeze,
|
906
906
|
subClassOf: "schema:Quantity".freeze,
|
907
907
|
type: "rdfs:Class".freeze
|
@@ -995,7 +995,7 @@ module RDF
|
|
995
995
|
subClassOf: "schema:Event".freeze,
|
996
996
|
type: "rdfs:Class".freeze
|
997
997
|
term :EducationalAudience,
|
998
|
-
comment: %(An EducationalAudience).freeze,
|
998
|
+
comment: %(An EducationalAudience.).freeze,
|
999
999
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass).freeze,
|
1000
1000
|
label: "EducationalAudience".freeze,
|
1001
1001
|
subClassOf: "schema:Audience".freeze,
|
@@ -1051,7 +1051,7 @@ module RDF
|
|
1051
1051
|
subClassOf: "schema:ReactAction".freeze,
|
1052
1052
|
type: "rdfs:Class".freeze
|
1053
1053
|
term :Energy,
|
1054
|
-
comment: %(Properties that take Energy as values are of the form '<Number> <Energy unit of measure>').freeze,
|
1054
|
+
comment: %(Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.).freeze,
|
1055
1055
|
label: "Energy".freeze,
|
1056
1056
|
subClassOf: "schema:Quantity".freeze,
|
1057
1057
|
type: "rdfs:Class".freeze
|
@@ -1098,7 +1098,7 @@ module RDF
|
|
1098
1098
|
subClassOf: "schema:CivicStructure".freeze,
|
1099
1099
|
type: "rdfs:Class".freeze
|
1100
1100
|
term :ExerciseAction,
|
1101
|
-
comment: %(The act of participating in exertive activity for the purposes of improving health and fitness).freeze,
|
1101
|
+
comment: %(The act of participating in exertive activity for the purposes of improving health and fitness.).freeze,
|
1102
1102
|
label: "ExerciseAction".freeze,
|
1103
1103
|
subClassOf: "schema:PlayAction".freeze,
|
1104
1104
|
type: "rdfs:Class".freeze
|
@@ -1134,7 +1134,7 @@ module RDF
|
|
1134
1134
|
subClassOf: "schema:LocalBusiness".freeze,
|
1135
1135
|
type: "rdfs:Class".freeze
|
1136
1136
|
term :FindAction,
|
1137
|
-
comment: %(The act of finding an object.<p>Related actions:</p><ul><li><a href="http://schema.org/SearchAction">SearchAction</a>: FindAction is generally lead by a SearchAction, but not necessarily
|
1137
|
+
comment: %(The act of finding an object.<p>Related actions:</p><ul><li><a href="http://schema.org/SearchAction">SearchAction</a>: FindAction is generally lead by a SearchAction, but not necessarily</li></ul>.).freeze,
|
1138
1138
|
label: "FindAction".freeze,
|
1139
1139
|
subClassOf: "schema:Action".freeze,
|
1140
1140
|
type: "rdfs:Class".freeze
|
@@ -1164,7 +1164,7 @@ module RDF
|
|
1164
1164
|
subClassOf: "schema:Store".freeze,
|
1165
1165
|
type: "rdfs:Class".freeze
|
1166
1166
|
term :FollowAction,
|
1167
|
-
comment: %(The act of forming a personal connection with someone/something \(object\) unidirectionally/asymmetrically to get updates polled from.<p>Related actions:</p><ul><li><a href="http://schema.org/BefriendAction">BefriendAction</a>: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.</li><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.</li><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.</li><li><a href="http://schema.org/TrackAction">TrackAction</a>: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects \(e.g. you track a package, but you don't follow it\)
|
1167
|
+
comment: %(The act of forming a personal connection with someone/something \(object\) unidirectionally/asymmetrically to get updates polled from.<p>Related actions:</p><ul><li><a href="http://schema.org/BefriendAction">BefriendAction</a>: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.</li><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.</li><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.</li><li><a href="http://schema.org/TrackAction">TrackAction</a>: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects \(e.g. you track a package, but you don't follow it\)</li></ul>.).freeze,
|
1168
1168
|
label: "FollowAction".freeze,
|
1169
1169
|
subClassOf: "schema:InteractAction".freeze,
|
1170
1170
|
type: "rdfs:Class".freeze
|
@@ -1244,7 +1244,7 @@ module RDF
|
|
1244
1244
|
subClassOf: "schema:StructuredValue".freeze,
|
1245
1245
|
type: "rdfs:Class".freeze
|
1246
1246
|
term :GiveAction,
|
1247
|
-
comment: %(The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.<p>Related actions:</p><ul><li><a href="http://schema.org/TakeAction">TakeAction</a>: Reciprocal of GiveAction.</li><li><a href="http://schema.org/SendAction">SendAction</a>: Unlike SendAction, GiveAction implies that ownership is being transferred \(e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you\)
|
1247
|
+
comment: %(The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.<p>Related actions:</p><ul><li><a href="http://schema.org/TakeAction">TakeAction</a>: Reciprocal of GiveAction.</li><li><a href="http://schema.org/SendAction">SendAction</a>: Unlike SendAction, GiveAction implies that ownership is being transferred \(e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you\)</li></ul>.).freeze,
|
1248
1248
|
label: "GiveAction".freeze,
|
1249
1249
|
subClassOf: "schema:TransferAction".freeze,
|
1250
1250
|
type: "rdfs:Class".freeze
|
@@ -1354,7 +1354,7 @@ module RDF
|
|
1354
1354
|
subClassOf: ["schema:HomeAndConstructionBusiness".freeze, "schema:ProfessionalService".freeze],
|
1355
1355
|
type: "rdfs:Class".freeze
|
1356
1356
|
term :IceCreamShop,
|
1357
|
-
comment: %(An ice cream shop).freeze,
|
1357
|
+
comment: %(An ice cream shop.).freeze,
|
1358
1358
|
label: "IceCreamShop".freeze,
|
1359
1359
|
subClassOf: "schema:FoodEstablishment".freeze,
|
1360
1360
|
type: "rdfs:Class".freeze
|
@@ -1443,6 +1443,11 @@ module RDF
|
|
1443
1443
|
label: "InviteAction".freeze,
|
1444
1444
|
subClassOf: "schema:CommunicateAction".freeze,
|
1445
1445
|
type: "rdfs:Class".freeze
|
1446
|
+
term :Invoice,
|
1447
|
+
comment: %(A statement of the money due for goods or services; a bill.).freeze,
|
1448
|
+
label: "Invoice".freeze,
|
1449
|
+
subClassOf: "schema:Intangible".freeze,
|
1450
|
+
type: "rdfs:Class".freeze
|
1446
1451
|
term :ItemAvailability,
|
1447
1452
|
comment: %(A list of possible product availability options.).freeze,
|
1448
1453
|
label: "ItemAvailability".freeze,
|
@@ -1474,7 +1479,7 @@ module RDF
|
|
1474
1479
|
subClassOf: "schema:Intangible".freeze,
|
1475
1480
|
type: "rdfs:Class".freeze
|
1476
1481
|
term :JoinAction,
|
1477
|
-
comment: %(An agent joins an event/group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, JoinAction refers to joining a group/team of people.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.</li><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates
|
1482
|
+
comment: %(An agent joins an event/group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, JoinAction refers to joining a group/team of people.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.</li><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates</li></ul>.).freeze,
|
1478
1483
|
label: "JoinAction".freeze,
|
1479
1484
|
subClassOf: "schema:InteractAction".freeze,
|
1480
1485
|
type: "rdfs:Class".freeze
|
@@ -1505,7 +1510,7 @@ module RDF
|
|
1505
1510
|
subClassOf: "schema:Intangible".freeze,
|
1506
1511
|
type: "rdfs:Class".freeze
|
1507
1512
|
term :LeaveAction,
|
1508
|
-
comment: %(An agent leaves an event / group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: The antagonym of LeaveAction.</li><li><a href="http://schema.org/UnRegisterAction">UnRegisterAction</a>: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service
|
1513
|
+
comment: %(An agent leaves an event / group with participants/friends at a location.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: The antagonym of LeaveAction.</li><li><a href="http://schema.org/UnRegisterAction">UnRegisterAction</a>: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service</li></ul>.).freeze,
|
1509
1514
|
label: "LeaveAction".freeze,
|
1510
1515
|
subClassOf: "schema:InteractAction".freeze,
|
1511
1516
|
type: "rdfs:Class".freeze
|
@@ -1515,7 +1520,7 @@ module RDF
|
|
1515
1520
|
subClassOf: "schema:GovernmentBuilding".freeze,
|
1516
1521
|
type: "rdfs:Class".freeze
|
1517
1522
|
term :LendAction,
|
1518
|
-
comment: %(The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.<p>Related actions:</p><ul><li><a href="http://schema.org/BorrowAction">BorrowAction</a>: Reciprocal of LendAction
|
1523
|
+
comment: %(The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.<p>Related actions:</p><ul><li><a href="http://schema.org/BorrowAction">BorrowAction</a>: Reciprocal of LendAction</li></ul>.).freeze,
|
1519
1524
|
label: "LendAction".freeze,
|
1520
1525
|
subClassOf: "schema:TransferAction".freeze,
|
1521
1526
|
type: "rdfs:Class".freeze
|
@@ -1613,7 +1618,7 @@ module RDF
|
|
1613
1618
|
subClassOf: "schema:InteractAction".freeze,
|
1614
1619
|
type: "rdfs:Class".freeze
|
1615
1620
|
term :Mass,
|
1616
|
-
comment: %(Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg').freeze,
|
1621
|
+
comment: %(Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.).freeze,
|
1617
1622
|
label: "Mass".freeze,
|
1618
1623
|
subClassOf: "schema:Quantity".freeze,
|
1619
1624
|
type: "rdfs:Class".freeze
|
@@ -1907,12 +1912,12 @@ module RDF
|
|
1907
1912
|
subClassOf: "schema:AutomotiveBusiness".freeze,
|
1908
1913
|
type: "rdfs:Class".freeze
|
1909
1914
|
term :Mountain,
|
1910
|
-
comment: %(A mountain, like Mount Whitney or Mount Everest).freeze,
|
1915
|
+
comment: %(A mountain, like Mount Whitney or Mount Everest.).freeze,
|
1911
1916
|
label: "Mountain".freeze,
|
1912
1917
|
subClassOf: "schema:Landform".freeze,
|
1913
1918
|
type: "rdfs:Class".freeze
|
1914
1919
|
term :MoveAction,
|
1915
|
-
comment: %(The act of an agent relocating to a place.<p>Related actions:</p><ul><li><a href="http://schema.org/TransferAction">TransferAction</a>: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object
|
1920
|
+
comment: %(The act of an agent relocating to a place.<p>Related actions:</p><ul><li><a href="http://schema.org/TransferAction">TransferAction</a>: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object</li></ul>.).freeze,
|
1916
1921
|
label: "MoveAction".freeze,
|
1917
1922
|
subClassOf: "schema:Action".freeze,
|
1918
1923
|
type: "rdfs:Class".freeze
|
@@ -2043,7 +2048,7 @@ module RDF
|
|
2043
2048
|
subClassOf: "schema:AnatomicalStructure".freeze,
|
2044
2049
|
type: "rdfs:Class".freeze
|
2045
2050
|
term :NewsArticle,
|
2046
|
-
comment: %(A news article).freeze,
|
2051
|
+
comment: %(A news article.).freeze,
|
2047
2052
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews).freeze,
|
2048
2053
|
label: "NewsArticle".freeze,
|
2049
2054
|
subClassOf: "schema:Article".freeze,
|
@@ -2079,8 +2084,7 @@ module RDF
|
|
2079
2084
|
For <a href="http://www.gs1.org/barcodes/technical/idkeys/gtin">GTIN</a>-related fields, see
|
2080
2085
|
<a href="http://www.gs1.org/barcodes/support/check_digit_calculator">Check Digit calculator</a>
|
2081
2086
|
and <a href="http://www.gs1us.org/resources/standards/gtin-validation-guide">validation guide</a>
|
2082
|
-
from <a href="http://www.gs1.org/">GS1</a>.
|
2083
|
-
).freeze,
|
2087
|
+
from <a href="http://www.gs1.org/">GS1</a>.).freeze,
|
2084
2088
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties).freeze,
|
2085
2089
|
label: "Offer".freeze,
|
2086
2090
|
subClassOf: "schema:Intangible".freeze,
|
@@ -2187,7 +2191,7 @@ module RDF
|
|
2187
2191
|
subClassOf: "schema:DeliveryMethod".freeze,
|
2188
2192
|
type: "rdfs:Class".freeze
|
2189
2193
|
term :ParentAudience,
|
2190
|
-
comment: %(A set of characteristics describing parents, who can be interested in viewing some content).freeze,
|
2194
|
+
comment: %(A set of characteristics describing parents, who can be interested in viewing some content.).freeze,
|
2191
2195
|
label: "ParentAudience".freeze,
|
2192
2196
|
subClassOf: "schema:PeopleAudience".freeze,
|
2193
2197
|
type: "rdfs:Class".freeze
|
@@ -2270,8 +2274,7 @@ module RDF
|
|
2270
2274
|
term :Periodical,
|
2271
2275
|
comment: %(A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.
|
2272
2276
|
|
2273
|
-
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a
|
2274
|
-
).freeze,
|
2277
|
+
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>.).freeze,
|
2275
2278
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
|
2276
2279
|
label: "Periodical".freeze,
|
2277
2280
|
"owl:equivalentClass" => %(http://purl.org/ontology/bibo/Periodical).freeze,
|
@@ -2354,7 +2357,7 @@ module RDF
|
|
2354
2357
|
subClassOf: "schema:OrganizeAction".freeze,
|
2355
2358
|
type: "rdfs:Class".freeze
|
2356
2359
|
term :PlayAction,
|
2357
|
-
comment: %(The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.<p>Related actions:</p><ul><li><a href="http://schema.org/ListenAction">ListenAction</a>: Unlike ListenAction \(which is under ConsumeAction\), PlayAction refers to performing for an audience or at an event, rather than consuming music.</li><li><a href="http://schema.org/WatchAction">WatchAction</a>: Unlike WatchAction \(which is under ConsumeAction\), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content
|
2360
|
+
comment: %(The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.<p>Related actions:</p><ul><li><a href="http://schema.org/ListenAction">ListenAction</a>: Unlike ListenAction \(which is under ConsumeAction\), PlayAction refers to performing for an audience or at an event, rather than consuming music.</li><li><a href="http://schema.org/WatchAction">WatchAction</a>: Unlike WatchAction \(which is under ConsumeAction\), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content</li></ul>.).freeze,
|
2358
2361
|
label: "PlayAction".freeze,
|
2359
2362
|
subClassOf: "schema:Action".freeze,
|
2360
2363
|
type: "rdfs:Class".freeze
|
@@ -2374,7 +2377,7 @@ module RDF
|
|
2374
2377
|
subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze],
|
2375
2378
|
type: "rdfs:Class".freeze
|
2376
2379
|
term :Pond,
|
2377
|
-
comment: %(A pond).freeze,
|
2380
|
+
comment: %(A pond.).freeze,
|
2378
2381
|
label: "Pond".freeze,
|
2379
2382
|
subClassOf: "schema:BodyOfWater".freeze,
|
2380
2383
|
type: "rdfs:Class".freeze
|
@@ -2475,8 +2478,7 @@ module RDF
|
|
2475
2478
|
term :PublicationIssue,
|
2476
2479
|
comment: %(A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.
|
2477
2480
|
|
2478
|
-
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a
|
2479
|
-
).freeze,
|
2481
|
+
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>.).freeze,
|
2480
2482
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
|
2481
2483
|
label: "PublicationIssue".freeze,
|
2482
2484
|
"owl:equivalentClass" => %(http://purl.org/ontology/bibo/Issue).freeze,
|
@@ -2485,8 +2487,7 @@ module RDF
|
|
2485
2487
|
term :PublicationVolume,
|
2486
2488
|
comment: %(A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.
|
2487
2489
|
|
2488
|
-
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a
|
2489
|
-
).freeze,
|
2490
|
+
<br/><br/>See also <a href="http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html">blog post</a>.).freeze,
|
2490
2491
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex).freeze,
|
2491
2492
|
label: "PublicationVolume".freeze,
|
2492
2493
|
subClassOf: "schema:CreativeWork".freeze,
|
@@ -2497,7 +2498,7 @@ module RDF
|
|
2497
2498
|
subClassOf: "schema:WebPage".freeze,
|
2498
2499
|
type: "rdfs:Class".freeze
|
2499
2500
|
term :QualitativeValue,
|
2500
|
-
comment: %(A predefined value for a product characteristic, e.g. the
|
2501
|
+
comment: %(A predefined value for a product characteristic, e.g. the power cord plug type "US" or the garment sizes "S", "M", "L", and "XL".).freeze,
|
2501
2502
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass).freeze,
|
2502
2503
|
label: "QualitativeValue".freeze,
|
2503
2504
|
subClassOf: "schema:Enumeration".freeze,
|
@@ -2581,7 +2582,7 @@ module RDF
|
|
2581
2582
|
subClassOf: "schema:LocalBusiness".freeze,
|
2582
2583
|
type: "rdfs:Class".freeze
|
2583
2584
|
term :ReceiveAction,
|
2584
|
-
comment: %(The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination. Reciprocal of SendAction.<p>Related actions:</p><ul><li><a href="http://schema.org/SendAction">SendAction</a>: The reciprocal of ReceiveAction.</li><li><a href="http://schema.org/TakeAction">TakeAction</a>: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered \(e.g. I can receive a package, but it does not mean the package is now mine\)
|
2585
|
+
comment: %(The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination. Reciprocal of SendAction.<p>Related actions:</p><ul><li><a href="http://schema.org/SendAction">SendAction</a>: The reciprocal of ReceiveAction.</li><li><a href="http://schema.org/TakeAction">TakeAction</a>: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered \(e.g. I can receive a package, but it does not mean the package is now mine\)</li></ul>.).freeze,
|
2585
2586
|
label: "ReceiveAction".freeze,
|
2586
2587
|
subClassOf: "schema:TransferAction".freeze,
|
2587
2588
|
type: "rdfs:Class".freeze
|
@@ -2601,12 +2602,12 @@ module RDF
|
|
2601
2602
|
subClassOf: "schema:LocalBusiness".freeze,
|
2602
2603
|
type: "rdfs:Class".freeze
|
2603
2604
|
term :RegisterAction,
|
2604
|
-
comment: %(The act of registering to be a user of a service, product or web page.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.</li><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object
|
2605
|
+
comment: %(The act of registering to be a user of a service, product or web page.<p>Related actions:</p><ul><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.</li><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object</li></ul>.).freeze,
|
2605
2606
|
label: "RegisterAction".freeze,
|
2606
2607
|
subClassOf: "schema:InteractAction".freeze,
|
2607
2608
|
type: "rdfs:Class".freeze
|
2608
2609
|
term :RejectAction,
|
2609
|
-
comment: %(The act of rejecting to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/AcceptAction">AcceptAction</a>: The antagonym of RejectAction
|
2610
|
+
comment: %(The act of rejecting to/adopting an object.<p>Related actions:</p><ul><li><a href="http://schema.org/AcceptAction">AcceptAction</a>: The antagonym of RejectAction</li></ul>.).freeze,
|
2610
2611
|
label: "RejectAction".freeze,
|
2611
2612
|
subClassOf: "schema:AllocateAction".freeze,
|
2612
2613
|
type: "rdfs:Class".freeze
|
@@ -2626,7 +2627,7 @@ module RDF
|
|
2626
2627
|
subClassOf: "schema:UpdateAction".freeze,
|
2627
2628
|
type: "rdfs:Class".freeze
|
2628
2629
|
term :ReplyAction,
|
2629
|
-
comment: %(The act of responding to a question/message asked/sent by the object. Related to <a href="AskAction">AskAction</a>.<p>Related actions:</p><ul><li><a href="http://schema.org/AskAction">AskAction</a>: Appears generally as an origin of a ReplyAction
|
2630
|
+
comment: %(The act of responding to a question/message asked/sent by the object. Related to <a href="AskAction">AskAction</a>.<p>Related actions:</p><ul><li><a href="http://schema.org/AskAction">AskAction</a>: Appears generally as an origin of a ReplyAction</li></ul>.).freeze,
|
2630
2631
|
label: "ReplyAction".freeze,
|
2631
2632
|
subClassOf: "schema:CommunicateAction".freeze,
|
2632
2633
|
type: "rdfs:Class".freeze
|
@@ -2651,7 +2652,7 @@ module RDF
|
|
2651
2652
|
subClassOf: "schema:Enumeration".freeze,
|
2652
2653
|
type: "rdfs:Class".freeze
|
2653
2654
|
term :ReserveAction,
|
2654
|
-
comment: %(Reserving a concrete object.<p>Related actions:</p><ul><li><a href="http://schema.org/ScheduleAction">ScheduleAction</a>: Unlike ScheduleAction, ReserveAction reserves concrete objects \(e.g. a table, a hotel\) towards a time slot / spatial allocation
|
2655
|
+
comment: %(Reserving a concrete object.<p>Related actions:</p><ul><li><a href="http://schema.org/ScheduleAction">ScheduleAction</a>: Unlike ScheduleAction, ReserveAction reserves concrete objects \(e.g. a table, a hotel\) towards a time slot / spatial allocation</li></ul>.).freeze,
|
2655
2656
|
label: "ReserveAction".freeze,
|
2656
2657
|
subClassOf: "schema:PlanAction".freeze,
|
2657
2658
|
type: "rdfs:Class".freeze
|
@@ -2698,8 +2699,7 @@ module RDF
|
|
2698
2699
|
term :Role,
|
2699
2700
|
comment: %(Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.
|
2700
2701
|
|
2701
|
-
<br/><br/>See also <a href="http://blog.schema.org/2014/06/introducing-role.html">blog post</a
|
2702
|
-
).freeze,
|
2702
|
+
<br/><br/>See also <a href="http://blog.schema.org/2014/06/introducing-role.html">blog post</a>.).freeze,
|
2703
2703
|
label: "Role".freeze,
|
2704
2704
|
subClassOf: "schema:Intangible".freeze,
|
2705
2705
|
type: "rdfs:Class".freeze
|
@@ -2724,7 +2724,7 @@ module RDF
|
|
2724
2724
|
subClassOf: "schema:Event".freeze,
|
2725
2725
|
type: "rdfs:Class".freeze
|
2726
2726
|
term :ScheduleAction,
|
2727
|
-
comment: %(Scheduling future actions, events, or tasks.<p>Related actions:</p><ul><li><a href="http://schema.org/ReserveAction">ReserveAction</a>: Unlike ReserveAction, ScheduleAction allocates future actions \(e.g. an event, a task, etc\) towards a time slot / spatial allocation
|
2727
|
+
comment: %(Scheduling future actions, events, or tasks.<p>Related actions:</p><ul><li><a href="http://schema.org/ReserveAction">ReserveAction</a>: Unlike ReserveAction, ScheduleAction allocates future actions \(e.g. an event, a task, etc\) towards a time slot / spatial allocation</li></ul>.).freeze,
|
2728
2728
|
label: "ScheduleAction".freeze,
|
2729
2729
|
subClassOf: "schema:PlanAction".freeze,
|
2730
2730
|
type: "rdfs:Class".freeze
|
@@ -2749,7 +2749,7 @@ module RDF
|
|
2749
2749
|
subClassOf: "schema:BodyOfWater".freeze,
|
2750
2750
|
type: "rdfs:Class".freeze
|
2751
2751
|
term :SearchAction,
|
2752
|
-
comment: %(The act of searching for an object.<p>Related actions:</p><ul><li><a href="http://schema.org/FindAction">FindAction</a>: SearchAction generally leads to a FindAction, but not necessarily
|
2752
|
+
comment: %(The act of searching for an object.<p>Related actions:</p><ul><li><a href="http://schema.org/FindAction">FindAction</a>: SearchAction generally leads to a FindAction, but not necessarily</li></ul>.).freeze,
|
2753
2753
|
label: "SearchAction".freeze,
|
2754
2754
|
subClassOf: "schema:Action".freeze,
|
2755
2755
|
type: "rdfs:Class".freeze
|
@@ -2779,7 +2779,7 @@ module RDF
|
|
2779
2779
|
subClassOf: "schema:TradeAction".freeze,
|
2780
2780
|
type: "rdfs:Class".freeze
|
2781
2781
|
term :SendAction,
|
2782
|
-
comment: %(The act of physically/electronically dispatching an object for transfer from an origin to a destination.<p>Related actions:</p><ul><li><a href="http://schema.org/ReceiveAction">ReceiveAction</a>: The reciprocal of SendAction.</li><li><a href="http://schema.org/GiveAction">GiveAction</a>: Unlike GiveAction, SendAction does not imply the transfer of ownership \(e.g. I can send you my laptop, but I'm not necessarily giving it to you\)
|
2782
|
+
comment: %(The act of physically/electronically dispatching an object for transfer from an origin to a destination.<p>Related actions:</p><ul><li><a href="http://schema.org/ReceiveAction">ReceiveAction</a>: The reciprocal of SendAction.</li><li><a href="http://schema.org/GiveAction">GiveAction</a>: Unlike GiveAction, SendAction does not imply the transfer of ownership \(e.g. I can send you my laptop, but I'm not necessarily giving it to you\)</li></ul>.).freeze,
|
2783
2783
|
label: "SendAction".freeze,
|
2784
2784
|
subClassOf: "schema:TransferAction".freeze,
|
2785
2785
|
type: "rdfs:Class".freeze
|
@@ -2806,8 +2806,7 @@ module RDF
|
|
2806
2806
|
|
2807
2807
|
It is common for properties applicable to an item from the series to be usefully applied to the containing group.
|
2808
2808
|
Schema.org attempts to anticipate some of these cases, but publishers should be free to apply
|
2809
|
-
properties of the series parts to the series as a whole wherever they seem appropriate.
|
2810
|
-
).freeze,
|
2809
|
+
properties of the series parts to the series as a whole wherever they seem appropriate.).freeze,
|
2811
2810
|
label: "Series".freeze,
|
2812
2811
|
subClassOf: "schema:CreativeWork".freeze,
|
2813
2812
|
type: "rdfs:Class".freeze
|
@@ -2923,7 +2922,7 @@ module RDF
|
|
2923
2922
|
subClassOf: "schema:Intangible".freeze,
|
2924
2923
|
type: "rdfs:Class".freeze
|
2925
2924
|
term :SubscribeAction,
|
2926
|
-
comment: %(The act of forming a personal connection with someone/something \(object\) unidirectionally/asymmetrically to get updates pushed to.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.</li><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.</li><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object
|
2925
|
+
comment: %(The act of forming a personal connection with someone/something \(object\) unidirectionally/asymmetrically to get updates pushed to.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.</li><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.</li><li><a href="http://schema.org/JoinAction">JoinAction</a>: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object</li></ul>.).freeze,
|
2927
2926
|
label: "SubscribeAction".freeze,
|
2928
2927
|
subClassOf: "schema:InteractAction".freeze,
|
2929
2928
|
type: "rdfs:Class".freeze
|
@@ -2974,7 +2973,7 @@ module RDF
|
|
2974
2973
|
subClassOf: "schema:WebPageElement".freeze,
|
2975
2974
|
type: "rdfs:Class".freeze
|
2976
2975
|
term :TakeAction,
|
2977
|
-
comment: %(The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.<p>Related actions:</p><ul><li><a href="http://schema.org/GiveAction">GiveAction</a>: The reciprocal of TakeAction.</li><li><a href="http://schema.org/ReceiveAction">ReceiveAction</a>: Unlike ReceiveAction, TakeAction implies that ownership has been transfered
|
2976
|
+
comment: %(The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.<p>Related actions:</p><ul><li><a href="http://schema.org/GiveAction">GiveAction</a>: The reciprocal of TakeAction.</li><li><a href="http://schema.org/ReceiveAction">ReceiveAction</a>: Unlike ReceiveAction, TakeAction implies that ownership has been transfered</li></ul>.).freeze,
|
2978
2977
|
label: "TakeAction".freeze,
|
2979
2978
|
subClassOf: "schema:TransferAction".freeze,
|
2980
2979
|
type: "rdfs:Class".freeze
|
@@ -3079,7 +3078,7 @@ module RDF
|
|
3079
3078
|
subClassOf: "schema:Store".freeze,
|
3080
3079
|
type: "rdfs:Class".freeze
|
3081
3080
|
term :TrackAction,
|
3082
|
-
comment: %(An agent tracks an object for updates.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects
|
3081
|
+
comment: %(An agent tracks an object for updates.<p>Related actions:</p><ul><li><a href="http://schema.org/FollowAction">FollowAction</a>: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.</li><li><a href="http://schema.org/SubscribeAction">SubscribeAction</a>: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects</li></ul>.).freeze,
|
3083
3082
|
label: "TrackAction".freeze,
|
3084
3083
|
subClassOf: "schema:FindAction".freeze,
|
3085
3084
|
type: "rdfs:Class".freeze
|
@@ -3136,7 +3135,7 @@ module RDF
|
|
3136
3135
|
subClassOf: "schema:Text".freeze,
|
3137
3136
|
type: "rdfs:Class".freeze
|
3138
3137
|
term :UnRegisterAction,
|
3139
|
-
comment: %(The act of un-registering from a service.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Antagonym of UnRegisterAction.</li><li><a href="http://schema.org/Leave">Leave</a>: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people
|
3138
|
+
comment: %(The act of un-registering from a service.<p>Related actions:</p><ul><li><a href="http://schema.org/RegisterAction">RegisterAction</a>: Antagonym of UnRegisterAction.</li><li><a href="http://schema.org/Leave">Leave</a>: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people</li></ul>.).freeze,
|
3140
3139
|
label: "UnRegisterAction".freeze,
|
3141
3140
|
subClassOf: "schema:InteractAction".freeze,
|
3142
3141
|
type: "rdfs:Class".freeze
|
@@ -3178,7 +3177,7 @@ module RDF
|
|
3178
3177
|
subClassOf: "schema:UserInteraction".freeze,
|
3179
3178
|
type: "rdfs:Class".freeze
|
3180
3179
|
term :UserInteraction,
|
3181
|
-
comment: %(A user interacting with a page).freeze,
|
3180
|
+
comment: %(A user interacting with a page.).freeze,
|
3182
3181
|
label: "UserInteraction".freeze,
|
3183
3182
|
subClassOf: "schema:Event".freeze,
|
3184
3183
|
type: "rdfs:Class".freeze
|
@@ -3264,6 +3263,12 @@ module RDF
|
|
3264
3263
|
label: "VisualArtsEvent".freeze,
|
3265
3264
|
subClassOf: "schema:Event".freeze,
|
3266
3265
|
type: "rdfs:Class".freeze
|
3266
|
+
term :VisualArtwork,
|
3267
|
+
comment: %(A work of art that is primarily visual in character.).freeze,
|
3268
|
+
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass).freeze,
|
3269
|
+
label: "VisualArtwork".freeze,
|
3270
|
+
subClassOf: "schema:CreativeWork".freeze,
|
3271
|
+
type: "rdfs:Class".freeze
|
3267
3272
|
term :Volcano,
|
3268
3273
|
comment: %(A volcano, like Fuji san.).freeze,
|
3269
3274
|
label: "Volcano".freeze,
|
@@ -3324,7 +3329,7 @@ module RDF
|
|
3324
3329
|
subClassOf: "schema:ConsumeAction".freeze,
|
3325
3330
|
type: "rdfs:Class".freeze
|
3326
3331
|
term :Waterfall,
|
3327
|
-
comment: %(A waterfall, like Niagara).freeze,
|
3332
|
+
comment: %(A waterfall, like Niagara.).freeze,
|
3328
3333
|
label: "Waterfall".freeze,
|
3329
3334
|
subClassOf: "schema:BodyOfWater".freeze,
|
3330
3335
|
type: "rdfs:Class".freeze
|
@@ -3339,12 +3344,12 @@ module RDF
|
|
3339
3344
|
subClassOf: "schema:SoftwareApplication".freeze,
|
3340
3345
|
type: "rdfs:Class".freeze
|
3341
3346
|
term :WebPage,
|
3342
|
-
comment: %(A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as <code>breadcrumb</code> may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page).freeze,
|
3347
|
+
comment: %(A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as <code>breadcrumb</code> may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.).freeze,
|
3343
3348
|
label: "WebPage".freeze,
|
3344
3349
|
subClassOf: "schema:CreativeWork".freeze,
|
3345
3350
|
type: "rdfs:Class".freeze
|
3346
3351
|
term :WebPageElement,
|
3347
|
-
comment: %(A web page element, like a table or an image).freeze,
|
3352
|
+
comment: %(A web page element, like a table or an image.).freeze,
|
3348
3353
|
label: "WebPageElement".freeze,
|
3349
3354
|
subClassOf: "schema:CreativeWork".freeze,
|
3350
3355
|
type: "rdfs:Class".freeze
|
@@ -3418,8 +3423,7 @@ module RDF
|
|
3418
3423
|
rangeIncludes: "schema:Text".freeze,
|
3419
3424
|
type: "rdf:Property".freeze
|
3420
3425
|
property :accessibilityAPI,
|
3421
|
-
comment: %(Indicates that the resource is compatible with the referenced accessibility API \(<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>\).
|
3422
|
-
).freeze,
|
3426
|
+
comment: %(Indicates that the resource is compatible with the referenced accessibility API \(<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>\).).freeze,
|
3423
3427
|
domainIncludes: "schema:CreativeWork".freeze,
|
3424
3428
|
label: "accessibilityAPI".freeze,
|
3425
3429
|
rangeIncludes: "schema:Text".freeze,
|
@@ -3437,11 +3441,17 @@ module RDF
|
|
3437
3441
|
rangeIncludes: "schema:Text".freeze,
|
3438
3442
|
type: "rdf:Property".freeze
|
3439
3443
|
property :accessibilityHazard,
|
3440
|
-
comment: %(A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3
|
3444
|
+
comment: %(A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 \(<a href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas wiki lists possible values</a>\).).freeze,
|
3441
3445
|
domainIncludes: "schema:CreativeWork".freeze,
|
3442
3446
|
label: "accessibilityHazard".freeze,
|
3443
3447
|
rangeIncludes: "schema:Text".freeze,
|
3444
3448
|
type: "rdf:Property".freeze
|
3449
|
+
property :accountId,
|
3450
|
+
comment: %(The identifier for the account the payment will be applied to.).freeze,
|
3451
|
+
domainIncludes: "schema:Invoice".freeze,
|
3452
|
+
label: "accountId".freeze,
|
3453
|
+
rangeIncludes: "schema:Text".freeze,
|
3454
|
+
type: "rdf:Property".freeze
|
3445
3455
|
property :accountablePerson,
|
3446
3456
|
comment: %(Specifies the Person that is legally accountable for the CreativeWork.).freeze,
|
3447
3457
|
domainIncludes: "schema:CreativeWork".freeze,
|
@@ -3728,7 +3738,7 @@ module RDF
|
|
3728
3738
|
rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
|
3729
3739
|
type: "rdf:Property".freeze
|
3730
3740
|
property :applicationSuite,
|
3731
|
-
comment: %(The name of the application suite to which the application belongs \(e.g. Excel belongs to Office\)).freeze,
|
3741
|
+
comment: %(The name of the application suite to which the application belongs \(e.g. Excel belongs to Office\).).freeze,
|
3732
3742
|
domainIncludes: "schema:SoftwareApplication".freeze,
|
3733
3743
|
label: "applicationSuite".freeze,
|
3734
3744
|
rangeIncludes: "schema:Text".freeze,
|
@@ -3752,7 +3762,7 @@ module RDF
|
|
3752
3762
|
rangeIncludes: "schema:Place".freeze,
|
3753
3763
|
type: "rdf:Property".freeze
|
3754
3764
|
property :areaServed,
|
3755
|
-
comment: %(The location served by this contact point \(e.g., a phone number intended for Europeans vs. North Americans or only within the United States
|
3765
|
+
comment: %(The location served by this contact point \(e.g., a phone number intended for Europeans vs. North Americans or only within the United States\).).freeze,
|
3756
3766
|
domainIncludes: "schema:ContactPoint".freeze,
|
3757
3767
|
label: "areaServed".freeze,
|
3758
3768
|
rangeIncludes: "schema:AdministrativeArea".freeze,
|
@@ -3799,12 +3809,24 @@ module RDF
|
|
3799
3809
|
label: "arrivalTime".freeze,
|
3800
3810
|
rangeIncludes: "schema:DateTime".freeze,
|
3801
3811
|
type: "rdf:Property".freeze
|
3812
|
+
property :artEdition,
|
3813
|
+
comment: %(The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies \(in this example "20"\).).freeze,
|
3814
|
+
domainIncludes: "schema:VisualArtwork".freeze,
|
3815
|
+
label: "artEdition".freeze,
|
3816
|
+
rangeIncludes: ["schema:Text".freeze, "schema:Integer".freeze],
|
3817
|
+
type: "rdf:Property".freeze
|
3802
3818
|
property :arterialBranch,
|
3803
3819
|
comment: %(The branches that comprise the arterial structure.).freeze,
|
3804
3820
|
domainIncludes: "schema:Artery".freeze,
|
3805
3821
|
label: "arterialBranch".freeze,
|
3806
3822
|
rangeIncludes: "schema:AnatomicalStructure".freeze,
|
3807
3823
|
type: "rdf:Property".freeze
|
3824
|
+
property :artform,
|
3825
|
+
comment: %(e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.).freeze,
|
3826
|
+
domainIncludes: "schema:VisualArtwork".freeze,
|
3827
|
+
label: "artform".freeze,
|
3828
|
+
rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
|
3829
|
+
type: "rdf:Property".freeze
|
3808
3830
|
property :articleBody,
|
3809
3831
|
comment: %(The actual body of the article.).freeze,
|
3810
3832
|
domainIncludes: "schema:Article".freeze,
|
@@ -3824,13 +3846,13 @@ module RDF
|
|
3824
3846
|
rangeIncludes: "schema:Text".freeze,
|
3825
3847
|
type: "rdf:Property".freeze
|
3826
3848
|
property :assembly,
|
3827
|
-
comment: %(Library file name e.g., mscorlib.dll, system.web.dll).freeze,
|
3849
|
+
comment: %(Library file name e.g., mscorlib.dll, system.web.dll.).freeze,
|
3828
3850
|
domainIncludes: "schema:APIReference".freeze,
|
3829
3851
|
label: "assembly".freeze,
|
3830
3852
|
rangeIncludes: "schema:Text".freeze,
|
3831
3853
|
type: "rdf:Property".freeze
|
3832
3854
|
property :assemblyVersion,
|
3833
|
-
comment: %(Associated product/technology version. e.g., .NET Framework 4.5).freeze,
|
3855
|
+
comment: %(Associated product/technology version. e.g., .NET Framework 4.5.).freeze,
|
3834
3856
|
domainIncludes: "schema:APIReference".freeze,
|
3835
3857
|
label: "assemblyVersion".freeze,
|
3836
3858
|
rangeIncludes: "schema:Text".freeze,
|
@@ -3860,7 +3882,7 @@ module RDF
|
|
3860
3882
|
rangeIncludes: "schema:Text".freeze,
|
3861
3883
|
type: "rdf:Property".freeze
|
3862
3884
|
property :athlete,
|
3863
|
-
comment: %(A person that acts as performing member of a sports team; a player as opposed to a coach).freeze,
|
3885
|
+
comment: %(A person that acts as performing member of a sports team; a player as opposed to a coach.).freeze,
|
3864
3886
|
domainIncludes: "schema:SportsTeam".freeze,
|
3865
3887
|
label: "athlete".freeze,
|
3866
3888
|
rangeIncludes: "schema:Person".freeze,
|
@@ -3885,10 +3907,7 @@ module RDF
|
|
3885
3907
|
rangeIncludes: "schema:Audience".freeze,
|
3886
3908
|
type: "rdf:Property".freeze
|
3887
3909
|
property :audienceType,
|
3888
|
-
comment: %(The target group associated with a given audience \(e.g. veterans, car owners, musicians, etc.\)
|
3889
|
-
domain: Audience
|
3890
|
-
Range: Text
|
3891
|
-
).freeze,
|
3910
|
+
comment: %(The target group associated with a given audience \(e.g. veterans, car owners, musicians, etc.\).).freeze,
|
3892
3911
|
domainIncludes: "schema:Audience".freeze,
|
3893
3912
|
label: "audienceType".freeze,
|
3894
3913
|
rangeIncludes: "schema:Text".freeze,
|
@@ -3930,7 +3949,7 @@ module RDF
|
|
3930
3949
|
rangeIncludes: "schema:Place".freeze,
|
3931
3950
|
type: "rdf:Property".freeze
|
3932
3951
|
property :availableChannel,
|
3933
|
-
comment: %(A means of accessing the service \(e.g. a phone bank, a web site, a location, etc.\)).freeze,
|
3952
|
+
comment: %(A means of accessing the service \(e.g. a phone bank, a web site, a location, etc.\).).freeze,
|
3934
3953
|
domainIncludes: "schema:Service".freeze,
|
3935
3954
|
label: "availableChannel".freeze,
|
3936
3955
|
rangeIncludes: "schema:ServiceChannel".freeze,
|
@@ -4039,6 +4058,12 @@ module RDF
|
|
4039
4058
|
label: "billingIncrement".freeze,
|
4040
4059
|
rangeIncludes: "schema:Number".freeze,
|
4041
4060
|
type: "rdf:Property".freeze
|
4061
|
+
property :billingPeriod,
|
4062
|
+
comment: %(The time interval used to compute the invoice.).freeze,
|
4063
|
+
domainIncludes: "schema:Invoice".freeze,
|
4064
|
+
label: "billingPeriod".freeze,
|
4065
|
+
rangeIncludes: "schema:Duration".freeze,
|
4066
|
+
type: "rdf:Property".freeze
|
4042
4067
|
property :biomechnicalClass,
|
4043
4068
|
comment: %(The biomechanical properties of the bone.).freeze,
|
4044
4069
|
domainIncludes: "schema:Joint".freeze,
|
@@ -4170,7 +4195,7 @@ module RDF
|
|
4170
4195
|
type: "rdf:Property".freeze
|
4171
4196
|
property :broker,
|
4172
4197
|
comment: %(An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.).freeze,
|
4173
|
-
domainIncludes: ["schema:Reservation".freeze, "schema:Order".freeze],
|
4198
|
+
domainIncludes: ["schema:Reservation".freeze, "schema:Order".freeze, "schema:Invoice".freeze],
|
4174
4199
|
label: "broker".freeze,
|
4175
4200
|
rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
|
4176
4201
|
type: "rdf:Property".freeze
|
@@ -4212,7 +4237,7 @@ module RDF
|
|
4212
4237
|
rangeIncludes: "schema:MusicGroup".freeze,
|
4213
4238
|
type: "rdf:Property".freeze
|
4214
4239
|
property :calories,
|
4215
|
-
comment: %(The number of calories).freeze,
|
4240
|
+
comment: %(The number of calories.).freeze,
|
4216
4241
|
domainIncludes: "schema:NutritionInformation".freeze,
|
4217
4242
|
label: "calories".freeze,
|
4218
4243
|
rangeIncludes: "schema:Energy".freeze,
|
@@ -4264,7 +4289,7 @@ module RDF
|
|
4264
4289
|
type: "rdf:Property".freeze
|
4265
4290
|
property :category,
|
4266
4291
|
comment: %(A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.).freeze,
|
4267
|
-
domainIncludes: ["schema:Offer".freeze, "schema:PhysicalActivity".freeze],
|
4292
|
+
domainIncludes: ["schema:Offer".freeze, "schema:Invoice".freeze, "schema:PhysicalActivity".freeze],
|
4268
4293
|
label: "category".freeze,
|
4269
4294
|
rangeIncludes: ["schema:PhysicalActivityCategory".freeze, "schema:Text".freeze, "schema:Thing".freeze],
|
4270
4295
|
type: "rdf:Property".freeze
|
@@ -4317,13 +4342,13 @@ module RDF
|
|
4317
4342
|
rangeIncludes: "schema:DateTime".freeze,
|
4318
4343
|
type: "rdf:Property".freeze
|
4319
4344
|
property :childMaxAge,
|
4320
|
-
comment: %(Maximal age of the child).freeze,
|
4345
|
+
comment: %(Maximal age of the child.).freeze,
|
4321
4346
|
domainIncludes: "schema:ParentAudience".freeze,
|
4322
4347
|
label: "childMaxAge".freeze,
|
4323
4348
|
rangeIncludes: "schema:Number".freeze,
|
4324
4349
|
type: "rdf:Property".freeze
|
4325
4350
|
property :childMinAge,
|
4326
|
-
comment: %(Minimal age of the child).freeze,
|
4351
|
+
comment: %(Minimal age of the child.).freeze,
|
4327
4352
|
domainIncludes: "schema:ParentAudience".freeze,
|
4328
4353
|
label: "childMinAge".freeze,
|
4329
4354
|
rangeIncludes: "schema:Number".freeze,
|
@@ -4355,7 +4380,13 @@ module RDF
|
|
4355
4380
|
property :clincalPharmacology,
|
4356
4381
|
comment: %(Description of the absorption and elimination of drugs, including their concentration \(pharmacokinetics, pK\) and biological effects \(pharmacodynamics, pD\).).freeze,
|
4357
4382
|
domainIncludes: "schema:Drug".freeze,
|
4358
|
-
label: "
|
4383
|
+
label: "clinicalPharmacology".freeze,
|
4384
|
+
rangeIncludes: "schema:Text".freeze,
|
4385
|
+
type: "rdf:Property".freeze
|
4386
|
+
property :clinicalPharmacology,
|
4387
|
+
comment: %(Description of the absorption and elimination of drugs, including their concentration \(pharmacokinetics, pK\) and biological effects \(pharmacodynamics, pD\).).freeze,
|
4388
|
+
domainIncludes: "schema:Drug".freeze,
|
4389
|
+
label: "clinicalPharmacology".freeze,
|
4359
4390
|
rangeIncludes: "schema:Text".freeze,
|
4360
4391
|
type: "rdf:Property".freeze
|
4361
4392
|
property :clipNumber,
|
@@ -4384,7 +4415,7 @@ module RDF
|
|
4384
4415
|
rangeIncludes: "schema:MedicalCode".freeze,
|
4385
4416
|
type: "rdf:Property".freeze
|
4386
4417
|
property :codeRepository,
|
4387
|
-
comment: %(Link to the repository where the un-compiled, human readable code and related code is located \(SVN, github, CodePlex\)).freeze,
|
4418
|
+
comment: %(Link to the repository where the un-compiled, human readable code and related code is located \(SVN, github, CodePlex\).).freeze,
|
4388
4419
|
domainIncludes: "schema:Code".freeze,
|
4389
4420
|
label: "codeRepository".freeze,
|
4390
4421
|
rangeIncludes: "schema:URL".freeze,
|
@@ -4471,8 +4502,8 @@ module RDF
|
|
4471
4502
|
rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze],
|
4472
4503
|
type: "rdf:Property".freeze
|
4473
4504
|
property :confirmationNumber,
|
4474
|
-
comment: %(A number that confirms the given order.).freeze,
|
4475
|
-
domainIncludes: "schema:Order".freeze,
|
4505
|
+
comment: %(A number that confirms the given order or payment has been received.).freeze,
|
4506
|
+
domainIncludes: ["schema:Order".freeze, "schema:Invoice".freeze],
|
4476
4507
|
label: "confirmationNumber".freeze,
|
4477
4508
|
rangeIncludes: "schema:Text".freeze,
|
4478
4509
|
type: "rdf:Property".freeze
|
@@ -4483,7 +4514,7 @@ module RDF
|
|
4483
4514
|
rangeIncludes: "schema:AnatomicalStructure".freeze,
|
4484
4515
|
type: "rdf:Property".freeze
|
4485
4516
|
property :contactOption,
|
4486
|
-
comment: %(An option available on this contact point \(e.g. a toll-free number or support for hearing-impaired callers
|
4517
|
+
comment: %(An option available on this contact point \(e.g. a toll-free number or support for hearing-impaired callers\).).freeze,
|
4487
4518
|
domainIncludes: "schema:ContactPoint".freeze,
|
4488
4519
|
label: "contactOption".freeze,
|
4489
4520
|
rangeIncludes: "schema:ContactPointOption".freeze,
|
@@ -4538,7 +4569,7 @@ module RDF
|
|
4538
4569
|
rangeIncludes: "schema:Text".freeze,
|
4539
4570
|
type: "rdf:Property".freeze
|
4540
4571
|
property :contentUrl,
|
4541
|
-
comment: %(Actual bytes of the media object, for example the image file or video file.
|
4572
|
+
comment: %(Actual bytes of the media object, for example the image file or video file.).freeze,
|
4542
4573
|
domainIncludes: "schema:MediaObject".freeze,
|
4543
4574
|
label: "contentUrl".freeze,
|
4544
4575
|
rangeIncludes: "schema:URL".freeze,
|
@@ -4654,8 +4685,8 @@ module RDF
|
|
4654
4685
|
rangeIncludes: "schema:Text".freeze,
|
4655
4686
|
type: "rdf:Property".freeze
|
4656
4687
|
property :customer,
|
4657
|
-
comment: %(Party placing the order.).freeze,
|
4658
|
-
domainIncludes: "schema:Order".freeze,
|
4688
|
+
comment: %(Party placing the order or paying the invoice.).freeze,
|
4689
|
+
domainIncludes: ["schema:Order".freeze, "schema:Invoice".freeze],
|
4659
4690
|
label: "customer".freeze,
|
4660
4691
|
rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze],
|
4661
4692
|
type: "rdf:Property".freeze
|
@@ -4738,8 +4769,8 @@ module RDF
|
|
4738
4769
|
rangeIncludes: "schema:QuantitativeValue".freeze,
|
4739
4770
|
type: "rdf:Property".freeze
|
4740
4771
|
property :deliveryMethod,
|
4741
|
-
comment: %(A sub property of instrument. The method of delivery).freeze,
|
4742
|
-
domainIncludes: ["schema:ReceiveAction".freeze, "schema:SendAction".freeze, "schema:TrackAction".freeze],
|
4772
|
+
comment: %(A sub property of instrument. The method of delivery.).freeze,
|
4773
|
+
domainIncludes: ["schema:OrderAction".freeze, "schema:ReceiveAction".freeze, "schema:SendAction".freeze, "schema:TrackAction".freeze],
|
4743
4774
|
label: "deliveryMethod".freeze,
|
4744
4775
|
rangeIncludes: "schema:DeliveryMethod".freeze,
|
4745
4776
|
subPropertyOf: "schema:instrument".freeze,
|
@@ -4805,8 +4836,8 @@ module RDF
|
|
4805
4836
|
rangeIncludes: "schema:Text".freeze,
|
4806
4837
|
type: "rdf:Property".freeze
|
4807
4838
|
property :depth,
|
4808
|
-
comment: %(The depth of the
|
4809
|
-
domainIncludes: "schema:Product".freeze,
|
4839
|
+
comment: %(The depth of the item.).freeze,
|
4840
|
+
domainIncludes: ["schema:Product".freeze, "schema:VisualArtwork".freeze],
|
4810
4841
|
label: "depth".freeze,
|
4811
4842
|
rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze],
|
4812
4843
|
type: "rdf:Property".freeze
|
@@ -5054,7 +5085,7 @@ module RDF
|
|
5054
5085
|
rangeIncludes: "schema:Text".freeze,
|
5055
5086
|
type: "rdf:Property".freeze
|
5056
5087
|
property :educationalRole,
|
5057
|
-
comment: %(An educationalRole of an EducationalAudience).freeze,
|
5088
|
+
comment: %(An educationalRole of an EducationalAudience.).freeze,
|
5058
5089
|
domainIncludes: "schema:EducationalAudience".freeze,
|
5059
5090
|
label: "educationalRole".freeze,
|
5060
5091
|
rangeIncludes: "schema:Text".freeze,
|
@@ -5108,7 +5139,7 @@ module RDF
|
|
5108
5139
|
rangeIncludes: "schema:Text".freeze,
|
5109
5140
|
type: "rdf:Property".freeze
|
5110
5141
|
property :embedUrl,
|
5111
|
-
comment: %(A URL pointing to a player for a specific video. In general, this is the information in the <code>src</code> element of an <code>embed</code> tag and should not be the same as the content of the <code>loc</code> tag.
|
5142
|
+
comment: %(A URL pointing to a player for a specific video. In general, this is the information in the <code>src</code> element of an <code>embed</code> tag and should not be the same as the content of the <code>loc</code> tag.).freeze,
|
5112
5143
|
domainIncludes: "schema:MediaObject".freeze,
|
5113
5144
|
label: "embedUrl".freeze,
|
5114
5145
|
rangeIncludes: "schema:URL".freeze,
|
@@ -5172,8 +5203,7 @@ module RDF
|
|
5172
5203
|
property :endTime,
|
5173
5204
|
comment: %(The endTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*.
|
5174
5205
|
|
5175
|
-
Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
|
5176
|
-
).freeze,
|
5206
|
+
Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.).freeze,
|
5177
5207
|
domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze],
|
5178
5208
|
label: "endTime".freeze,
|
5179
5209
|
rangeIncludes: "schema:DateTime".freeze,
|
@@ -5490,7 +5520,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
5490
5520
|
comment: %(A sub property of location. The original location of the object or the agent before the action.).freeze,
|
5491
5521
|
domainIncludes: ["schema:MoveAction".freeze, "schema:TransferAction".freeze, "schema:ExerciseAction".freeze],
|
5492
5522
|
label: "fromLocation".freeze,
|
5493
|
-
rangeIncludes:
|
5523
|
+
rangeIncludes: "schema:Place".freeze,
|
5494
5524
|
subPropertyOf: "schema:location".freeze,
|
5495
5525
|
type: "rdf:Property".freeze
|
5496
5526
|
property :function,
|
@@ -5654,20 +5684,20 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
5654
5684
|
rangeIncludes: "schema:CreativeWork".freeze,
|
5655
5685
|
type: "rdf:Property".freeze
|
5656
5686
|
property :headline,
|
5657
|
-
comment: %(Headline of the article).freeze,
|
5687
|
+
comment: %(Headline of the article.).freeze,
|
5658
5688
|
domainIncludes: "schema:CreativeWork".freeze,
|
5659
5689
|
label: "headline".freeze,
|
5660
5690
|
rangeIncludes: "schema:Text".freeze,
|
5661
5691
|
type: "rdf:Property".freeze
|
5662
5692
|
property :healthCondition,
|
5663
|
-
comment: %(Expectations for health conditions of target audience).freeze,
|
5693
|
+
comment: %(Expectations for health conditions of target audience.).freeze,
|
5664
5694
|
domainIncludes: "schema:PeopleAudience".freeze,
|
5665
5695
|
label: "healthCondition".freeze,
|
5666
5696
|
rangeIncludes: "schema:MedicalCondition".freeze,
|
5667
5697
|
type: "rdf:Property".freeze
|
5668
5698
|
property :height,
|
5669
|
-
comment: %(The height of the item
|
5670
|
-
domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze, "schema:Person".freeze],
|
5699
|
+
comment: %(The height of the item.).freeze,
|
5700
|
+
domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze, "schema:Person".freeze, "schema:VisualArtwork".freeze],
|
5671
5701
|
label: "height".freeze,
|
5672
5702
|
rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze],
|
5673
5703
|
type: "rdf:Property".freeze
|
@@ -5739,7 +5769,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
5739
5769
|
rangeIncludes: "schema:Text".freeze,
|
5740
5770
|
type: "rdf:Property".freeze
|
5741
5771
|
property :iataCode,
|
5742
|
-
comment: %(IATA identifier for an airline or airport).freeze,
|
5772
|
+
comment: %(IATA identifier for an airline or airport.).freeze,
|
5743
5773
|
domainIncludes: ["schema:Airline".freeze, "schema:Airport".freeze],
|
5744
5774
|
label: "iataCode".freeze,
|
5745
5775
|
rangeIncludes: "schema:Text".freeze,
|
@@ -5787,7 +5817,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
5787
5817
|
rangeIncludes: "schema:MusicAlbum".freeze,
|
5788
5818
|
type: "rdf:Property".freeze
|
5789
5819
|
property :inLanguage,
|
5790
|
-
comment: %(The language of the content. please use one of the language codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard
|
5820
|
+
comment: %(The language of the content. please use one of the language codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard</a>.).freeze,
|
5791
5821
|
domainIncludes: "schema:CreativeWork".freeze,
|
5792
5822
|
label: "inLanguage".freeze,
|
5793
5823
|
rangeIncludes: "schema:Text".freeze,
|
@@ -5932,7 +5962,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
5932
5962
|
rangeIncludes: "schema:Boolean".freeze,
|
5933
5963
|
type: "rdf:Property".freeze
|
5934
5964
|
property :isBasedOnUrl,
|
5935
|
-
comment: %(A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html).freeze,
|
5965
|
+
comment: %(A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.).freeze,
|
5936
5966
|
domainIncludes: "schema:CreativeWork".freeze,
|
5937
5967
|
label: "isBasedOnUrl".freeze,
|
5938
5968
|
rangeIncludes: "schema:URL".freeze,
|
@@ -6055,7 +6085,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6055
6085
|
rangeIncludes: "schema:OfferItemCondition".freeze,
|
6056
6086
|
type: "rdf:Property".freeze
|
6057
6087
|
property :itemListElement,
|
6058
|
-
comment: %(For itemListElement values, you can use simple strings \(e.g. "Peter", "Paul, "Mary"\), existing entities, or use ListItem.
|
6088
|
+
comment: %(For itemListElement values, you can use simple strings \(e.g. "Peter", "Paul", "Mary"\), existing entities, or use ListItem.
|
6059
6089
|
<br/><br/>
|
6060
6090
|
Text values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.
|
6061
6091
|
<br/><br/>
|
@@ -6282,6 +6312,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6282
6312
|
rangeIncludes: "schema:URL".freeze,
|
6283
6313
|
"schema:supersededBy" => %(schema:hasMap).freeze,
|
6284
6314
|
type: "rdf:Property".freeze
|
6315
|
+
property :material,
|
6316
|
+
comment: %(e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.).freeze,
|
6317
|
+
domainIncludes: "schema:VisualArtwork".freeze,
|
6318
|
+
label: "material".freeze,
|
6319
|
+
rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
|
6320
|
+
type: "rdf:Property".freeze
|
6285
6321
|
property :maxPrice,
|
6286
6322
|
comment: %(The highest price if the price is a range.).freeze,
|
6287
6323
|
domainIncludes: "schema:PriceSpecification".freeze,
|
@@ -6388,6 +6424,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6388
6424
|
label: "minValue".freeze,
|
6389
6425
|
rangeIncludes: "schema:Number".freeze,
|
6390
6426
|
type: "rdf:Property".freeze
|
6427
|
+
property :minimumPaymentDue,
|
6428
|
+
comment: %(The minimum payment required at this time.).freeze,
|
6429
|
+
domainIncludes: "schema:Invoice".freeze,
|
6430
|
+
label: "minimumPaymentDue".freeze,
|
6431
|
+
rangeIncludes: "schema:PriceSpecification".freeze,
|
6432
|
+
type: "rdf:Property".freeze
|
6391
6433
|
property :model,
|
6392
6434
|
comment: %(The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.).freeze,
|
6393
6435
|
domainIncludes: "schema:Product".freeze,
|
@@ -6426,13 +6468,13 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6426
6468
|
rangeIncludes: "schema:MusicComposition".freeze,
|
6427
6469
|
type: "rdf:Property".freeze
|
6428
6470
|
property :musicBy,
|
6429
|
-
comment: %(The composer of the
|
6430
|
-
domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze],
|
6471
|
+
comment: %(The composer of the soundtrack.).freeze,
|
6472
|
+
domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:TVSeries".freeze, "schema:RadioSeries".freeze, "schema:Clip".freeze, "schema:MovieSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze],
|
6431
6473
|
label: "musicBy".freeze,
|
6432
6474
|
rangeIncludes: ["schema:MusicGroup".freeze, "schema:Person".freeze],
|
6433
6475
|
type: "rdf:Property".freeze
|
6434
6476
|
property :musicCompositionForm,
|
6435
|
-
comment: %(The type of composition \(e.g. overture, sonata, symphony, etc.\)).freeze,
|
6477
|
+
comment: %(The type of composition \(e.g. overture, sonata, symphony, etc.\).).freeze,
|
6436
6478
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
|
6437
6479
|
domainIncludes: "schema:MusicComposition".freeze,
|
6438
6480
|
label: "musicCompositionForm".freeze,
|
@@ -6550,6 +6592,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6550
6592
|
label: "numTracks".freeze,
|
6551
6593
|
rangeIncludes: "schema:Integer".freeze,
|
6552
6594
|
type: "rdf:Property".freeze
|
6595
|
+
property :numberOfEmployees,
|
6596
|
+
comment: %(The size of business by number of employees.).freeze,
|
6597
|
+
domainIncludes: "schema:BusinessAudience".freeze,
|
6598
|
+
label: "numberOfEmployees".freeze,
|
6599
|
+
rangeIncludes: "schema:QuantitativeValue".freeze,
|
6600
|
+
type: "rdf:Property".freeze
|
6553
6601
|
property :numberOfEpisodes,
|
6554
6602
|
comment: %(The number of episodes in this season or series.).freeze,
|
6555
6603
|
domainIncludes: ["schema:Season".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze, "schema:RadioSeries".freeze],
|
@@ -6586,12 +6634,6 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6586
6634
|
label: "numberedPosition".freeze,
|
6587
6635
|
rangeIncludes: "schema:Number".freeze,
|
6588
6636
|
type: "rdf:Property".freeze
|
6589
|
-
property :numberofEmployees,
|
6590
|
-
comment: %(The size of business by number of employees.).freeze,
|
6591
|
-
domainIncludes: "schema:BusinessAudience".freeze,
|
6592
|
-
label: "numberofEmployees".freeze,
|
6593
|
-
rangeIncludes: "schema:QuantitativeValue".freeze,
|
6594
|
-
type: "rdf:Property".freeze
|
6595
6637
|
property :nutrition,
|
6596
6638
|
comment: %(Nutrition information about the recipe.).freeze,
|
6597
6639
|
domainIncludes: "schema:Recipe".freeze,
|
@@ -6618,7 +6660,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6618
6660
|
type: "rdf:Property".freeze
|
6619
6661
|
property :offers,
|
6620
6662
|
comment: %(An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, or give away tickets to an event.).freeze,
|
6621
|
-
domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Product".freeze],
|
6663
|
+
domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Product".freeze, "schema:AggregateOffer".freeze],
|
6622
6664
|
label: "offers".freeze,
|
6623
6665
|
rangeIncludes: "schema:Offer".freeze,
|
6624
6666
|
type: "rdf:Property".freeze
|
@@ -6800,6 +6842,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6800
6842
|
rangeIncludes: "schema:Episode".freeze,
|
6801
6843
|
subPropertyOf: "schema:isPartOf".freeze,
|
6802
6844
|
type: "rdf:Property".freeze
|
6845
|
+
property :partOfInvoice,
|
6846
|
+
comment: %(The order is being paid as part of the referenced Invoice.).freeze,
|
6847
|
+
domainIncludes: "schema:Order".freeze,
|
6848
|
+
label: "partOfInvoice".freeze,
|
6849
|
+
rangeIncludes: "schema:Invoice".freeze,
|
6850
|
+
type: "rdf:Property".freeze
|
6803
6851
|
property :partOfOrder,
|
6804
6852
|
comment: %(The overall order the items in this delivery were included in.).freeze,
|
6805
6853
|
domainIncludes: "schema:ParcelDelivery".freeze,
|
@@ -6829,7 +6877,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6829
6877
|
subPropertyOf: "schema:isPartOf".freeze,
|
6830
6878
|
type: "rdf:Property".freeze
|
6831
6879
|
property :partOfTVSeries,
|
6832
|
-
comment: %(The TV series to which this episode or season belongs.
|
6880
|
+
comment: %(The TV series to which this episode or season belongs.).freeze,
|
6833
6881
|
domainIncludes: ["schema:TVEpisode".freeze, "schema:TVSeason".freeze, "schema:TVClip".freeze],
|
6834
6882
|
label: "partOfTVSeries".freeze,
|
6835
6883
|
rangeIncludes: "schema:TVSeries".freeze,
|
@@ -6862,22 +6910,28 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
6862
6910
|
type: "rdf:Property".freeze
|
6863
6911
|
property :paymentDue,
|
6864
6912
|
comment: %(The date that payment is due.).freeze,
|
6865
|
-
domainIncludes: "schema:Order".freeze,
|
6913
|
+
domainIncludes: ["schema:Order".freeze, "schema:Invoice".freeze],
|
6866
6914
|
label: "paymentDue".freeze,
|
6867
6915
|
rangeIncludes: "schema:DateTime".freeze,
|
6868
6916
|
type: "rdf:Property".freeze
|
6869
6917
|
property :paymentMethod,
|
6870
6918
|
comment: %(The name of the credit card or other method of payment for the order.).freeze,
|
6871
|
-
domainIncludes: "schema:Order".freeze,
|
6919
|
+
domainIncludes: ["schema:Order".freeze, "schema:Invoice".freeze],
|
6872
6920
|
label: "paymentMethod".freeze,
|
6873
6921
|
rangeIncludes: "schema:PaymentMethod".freeze,
|
6874
6922
|
type: "rdf:Property".freeze
|
6875
6923
|
property :paymentMethodId,
|
6876
6924
|
comment: %(An identifier for the method of payment used \(e.g. the last 4 digits of the credit card\).).freeze,
|
6877
|
-
domainIncludes: "schema:Order".freeze,
|
6925
|
+
domainIncludes: ["schema:Order".freeze, "schema:Invoice".freeze],
|
6878
6926
|
label: "paymentMethodId".freeze,
|
6879
6927
|
rangeIncludes: "schema:Text".freeze,
|
6880
6928
|
type: "rdf:Property".freeze
|
6929
|
+
property :paymentStatus,
|
6930
|
+
comment: %(The status of payment; whether the invoice has been paid or not.).freeze,
|
6931
|
+
domainIncludes: "schema:Invoice".freeze,
|
6932
|
+
label: "paymentStatus".freeze,
|
6933
|
+
rangeIncludes: "schema:Text".freeze,
|
6934
|
+
type: "rdf:Property".freeze
|
6881
6935
|
property :paymentUrl,
|
6882
6936
|
comment: %(The URL for sending a payment.).freeze,
|
6883
6937
|
domainIncludes: "schema:Order".freeze,
|
@@ -7106,7 +7160,6 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7106
7160
|
Use values from 0123456789 \(Unicode 'DIGIT ZERO' \(U+0030\) to 'DIGIT NINE' \(U+0039\)\) rather than superficially similiar Unicode symbols.
|
7107
7161
|
</li>
|
7108
7162
|
</ul>
|
7109
|
-
|
7110
7163
|
).freeze,
|
7111
7164
|
domainIncludes: ["schema:Offer".freeze, "schema:PriceSpecification".freeze, "schema:TradeAction".freeze],
|
7112
7165
|
label: "price".freeze,
|
@@ -7126,7 +7179,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7126
7179
|
type: "rdf:Property".freeze
|
7127
7180
|
property :priceSpecification,
|
7128
7181
|
comment: %(One or more detailed price specifications, indicating the unit price and delivery or payment charges.).freeze,
|
7129
|
-
domainIncludes: ["schema:Offer".freeze, "schema:Demand".freeze],
|
7182
|
+
domainIncludes: ["schema:Offer".freeze, "schema:Demand".freeze, "schema:TradeAction".freeze],
|
7130
7183
|
label: "priceSpecification".freeze,
|
7131
7184
|
rangeIncludes: "schema:PriceSpecification".freeze,
|
7132
7185
|
type: "rdf:Property".freeze
|
@@ -7204,9 +7257,9 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7204
7257
|
type: "rdf:Property".freeze
|
7205
7258
|
property :producer,
|
7206
7259
|
comment: %(The person or organization who produced the work \(e.g. music album, movie, tv/radio series etc.\).).freeze,
|
7207
|
-
domainIncludes:
|
7260
|
+
domainIncludes: "schema:CreativeWork".freeze,
|
7208
7261
|
label: "producer".freeze,
|
7209
|
-
rangeIncludes: "schema:Person".freeze,
|
7262
|
+
rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
|
7210
7263
|
type: "rdf:Property".freeze
|
7211
7264
|
property :produces,
|
7212
7265
|
comment: %(The tangible thing generated by the service, e.g. a passport, permit, etc.).freeze,
|
@@ -7276,7 +7329,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7276
7329
|
type: "rdf:Property".freeze
|
7277
7330
|
property :provider,
|
7278
7331
|
comment: %(The service provider, service operator, or service performer; the goods producer. Another party \(a seller\) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.).freeze,
|
7279
|
-
domainIncludes: ["schema:CreativeWork".freeze, "schema:Service".freeze, "schema:Reservation".freeze, "schema:Flight".freeze, "schema:ParcelDelivery".freeze, "schema:TrainTrip".freeze, "schema:BusTrip".freeze],
|
7332
|
+
domainIncludes: ["schema:CreativeWork".freeze, "schema:Service".freeze, "schema:Invoice".freeze, "schema:Reservation".freeze, "schema:Flight".freeze, "schema:ParcelDelivery".freeze, "schema:TrainTrip".freeze, "schema:BusTrip".freeze],
|
7280
7333
|
label: "provider".freeze,
|
7281
7334
|
rangeIncludes: ["schema:Person".freeze, "schema:Organization".freeze],
|
7282
7335
|
type: "rdf:Property".freeze
|
@@ -7472,6 +7525,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7472
7525
|
label: "recordingOf".freeze,
|
7473
7526
|
rangeIncludes: "schema:MusicComposition".freeze,
|
7474
7527
|
type: "rdf:Property".freeze
|
7528
|
+
property :referencesOrder,
|
7529
|
+
comment: %(The Order\(s\) related to this Invoice. One or more Orders may be combined into a single Invoice.).freeze,
|
7530
|
+
domainIncludes: "schema:Invoice".freeze,
|
7531
|
+
label: "referencesOrder".freeze,
|
7532
|
+
rangeIncludes: "schema:Order".freeze,
|
7533
|
+
type: "rdf:Property".freeze
|
7475
7534
|
property :regionDrained,
|
7476
7535
|
comment: %(The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.).freeze,
|
7477
7536
|
domainIncludes: ["schema:LymphaticVessel".freeze, "schema:Vein".freeze],
|
@@ -7737,7 +7796,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7737
7796
|
rangeIncludes: "schema:Vessel".freeze,
|
7738
7797
|
type: "rdf:Property".freeze
|
7739
7798
|
property :runtime,
|
7740
|
-
comment: %(Runtime platform or script interpreter dependencies \(Example - Java v1, Python2.3, .Net Framework 3.0\)).freeze,
|
7799
|
+
comment: %(Runtime platform or script interpreter dependencies \(Example - Java v1, Python2.3, .Net Framework 3.0\).).freeze,
|
7741
7800
|
domainIncludes: "schema:Code".freeze,
|
7742
7801
|
label: "runtime".freeze,
|
7743
7802
|
rangeIncludes: "schema:Text".freeze,
|
@@ -7772,6 +7831,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
7772
7831
|
label: "saturatedFatContent".freeze,
|
7773
7832
|
rangeIncludes: "schema:Mass".freeze,
|
7774
7833
|
type: "rdf:Property".freeze
|
7834
|
+
property :scheduledPaymentDate,
|
7835
|
+
comment: %(The date the invoice is scheduled to be paid.).freeze,
|
7836
|
+
domainIncludes: "schema:Invoice".freeze,
|
7837
|
+
label: "scheduledPaymentDate".freeze,
|
7838
|
+
rangeIncludes: "schema:Date".freeze,
|
7839
|
+
type: "rdf:Property".freeze
|
7775
7840
|
property :scheduledTime,
|
7776
7841
|
comment: %(The time the object is scheduled to.).freeze,
|
7777
7842
|
domainIncludes: "schema:PlanAction".freeze,
|
@@ -8121,8 +8186,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8121
8186
|
property :startTime,
|
8122
8187
|
comment: %(The startTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December.
|
8123
8188
|
|
8124
|
-
Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
|
8125
|
-
).freeze,
|
8189
|
+
Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.).freeze,
|
8126
8190
|
domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze],
|
8127
8191
|
label: "startTime".freeze,
|
8128
8192
|
rangeIncludes: "schema:DateTime".freeze,
|
@@ -8296,6 +8360,12 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8296
8360
|
label: "supplyTo".freeze,
|
8297
8361
|
rangeIncludes: "schema:AnatomicalStructure".freeze,
|
8298
8362
|
type: "rdf:Property".freeze
|
8363
|
+
property :surface,
|
8364
|
+
comment: %(e.g. Canvas, Paper, Wood, Board, etc.).freeze,
|
8365
|
+
domainIncludes: "schema:VisualArtwork".freeze,
|
8366
|
+
label: "surface".freeze,
|
8367
|
+
rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze],
|
8368
|
+
type: "rdf:Property".freeze
|
8299
8369
|
property :target,
|
8300
8370
|
comment: %(Indicates a target EntryPoint for an Action.).freeze,
|
8301
8371
|
domainIncludes: "schema:Action".freeze,
|
@@ -8420,9 +8490,15 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8420
8490
|
comment: %(A sub property of location. The final location of the object or the agent after the action.).freeze,
|
8421
8491
|
domainIncludes: ["schema:InsertAction".freeze, "schema:MoveAction".freeze, "schema:TransferAction".freeze, "schema:ExerciseAction".freeze],
|
8422
8492
|
label: "toLocation".freeze,
|
8423
|
-
rangeIncludes:
|
8493
|
+
rangeIncludes: "schema:Place".freeze,
|
8424
8494
|
subPropertyOf: "schema:location".freeze,
|
8425
8495
|
type: "rdf:Property".freeze
|
8496
|
+
property :totalPaymentDue,
|
8497
|
+
comment: %(The total amount due.).freeze,
|
8498
|
+
domainIncludes: "schema:Invoice".freeze,
|
8499
|
+
label: "totalPaymentDue".freeze,
|
8500
|
+
rangeIncludes: "schema:PriceSpecification".freeze,
|
8501
|
+
type: "rdf:Property".freeze
|
8426
8502
|
property :totalPrice,
|
8427
8503
|
comment: %(The total price for the reservation or ticket, including applicable taxes, shipping, etc.).freeze,
|
8428
8504
|
domainIncludes: ["schema:Reservation".freeze, "schema:Ticket".freeze],
|
@@ -8436,7 +8512,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8436
8512
|
rangeIncludes: "schema:Duration".freeze,
|
8437
8513
|
type: "rdf:Property".freeze
|
8438
8514
|
property :track,
|
8439
|
-
comment: %(A music recording \(track\)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording).freeze,
|
8515
|
+
comment: %(A music recording \(track\)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.).freeze,
|
8440
8516
|
"dc:source" => %(http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ).freeze,
|
8441
8517
|
domainIncludes: ["schema:MusicPlaylist".freeze, "schema:MusicGroup".freeze],
|
8442
8518
|
label: "track".freeze,
|
@@ -8463,7 +8539,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8463
8539
|
type: "rdf:Property".freeze
|
8464
8540
|
property :trailer,
|
8465
8541
|
comment: %(The trailer of a movie or tv/radio series, season, episode, etc.).freeze,
|
8466
|
-
domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:Season".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:
|
8542
|
+
domainIncludes: ["schema:Movie".freeze, "schema:Episode".freeze, "schema:Season".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze],
|
8467
8543
|
label: "trailer".freeze,
|
8468
8544
|
rangeIncludes: "schema:VideoObject".freeze,
|
8469
8545
|
type: "rdf:Property".freeze
|
@@ -8651,7 +8727,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8651
8727
|
comment: %(Specifies a regular expression for testing literal values according to the HTML spec.).freeze,
|
8652
8728
|
domainIncludes: "schema:PropertyValueSpecification".freeze,
|
8653
8729
|
label: "valuePattern".freeze,
|
8654
|
-
rangeIncludes: "schema:
|
8730
|
+
rangeIncludes: "schema:Text".freeze,
|
8655
8731
|
type: "rdf:Property".freeze
|
8656
8732
|
property :valueReference,
|
8657
8733
|
comment: %(A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.).freeze,
|
@@ -8750,7 +8826,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8750
8826
|
type: "rdf:Property".freeze
|
8751
8827
|
property :width,
|
8752
8828
|
comment: %(The width of the item.).freeze,
|
8753
|
-
domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze],
|
8829
|
+
domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze, "schema:VisualArtwork".freeze],
|
8754
8830
|
label: "width".freeze,
|
8755
8831
|
rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze],
|
8756
8832
|
type: "rdf:Property".freeze
|
@@ -8826,7 +8902,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8826
8902
|
|
8827
8903
|
# Extra definitions
|
8828
8904
|
term :Abdomen,
|
8829
|
-
comment: %(Abdomen).freeze,
|
8905
|
+
comment: %(Abdomen.).freeze,
|
8830
8906
|
label: "Abdomen".freeze,
|
8831
8907
|
type: "schema:PhysicalExam".freeze
|
8832
8908
|
term :ActiveActionStatus,
|
@@ -8855,7 +8931,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8855
8931
|
label: "Anesthesia".freeze,
|
8856
8932
|
type: "schema:MedicalSpecialty".freeze
|
8857
8933
|
term :Appearance,
|
8858
|
-
comment: %(Appearance).freeze,
|
8934
|
+
comment: %(Appearance.).freeze,
|
8859
8935
|
label: "Appearance".freeze,
|
8860
8936
|
type: "schema:PhysicalExam".freeze
|
8861
8937
|
term :Ayurvedic,
|
@@ -8885,7 +8961,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8885
8961
|
label: "Cardiovascular".freeze,
|
8886
8962
|
type: "schema:MedicalSpecialty".freeze
|
8887
8963
|
term :CardiovascularExam,
|
8888
|
-
comment: %(Cardiovascular).freeze,
|
8964
|
+
comment: %(Cardiovascular.).freeze,
|
8889
8965
|
label: "CardiovascularExam".freeze,
|
8890
8966
|
type: "schema:PhysicalExam".freeze
|
8891
8967
|
term :CaseSeries,
|
@@ -8997,7 +9073,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
8997
9073
|
label: "EPRelease".freeze,
|
8998
9074
|
type: "schema:MusicAlbumReleaseType".freeze
|
8999
9075
|
term :Ear,
|
9000
|
-
comment: %(Ear).freeze,
|
9076
|
+
comment: %(Ear.).freeze,
|
9001
9077
|
label: "Ear".freeze,
|
9002
9078
|
type: "schema:PhysicalExam".freeze
|
9003
9079
|
term :Emergency,
|
@@ -9021,7 +9097,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9021
9097
|
label: "EventPostponed".freeze,
|
9022
9098
|
type: "schema:EventStatusType".freeze
|
9023
9099
|
term :EventRescheduled,
|
9024
|
-
comment: %(The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. \(If the event has been rescheduled multiple times, the previousStartDate property may be repeated
|
9100
|
+
comment: %(The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. \(If the event has been rescheduled multiple times, the previousStartDate property may be repeated\).).freeze,
|
9025
9101
|
label: "EventRescheduled".freeze,
|
9026
9102
|
type: "schema:EventStatusType".freeze
|
9027
9103
|
term :EventScheduled,
|
@@ -9041,7 +9117,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9041
9117
|
label: "EvidenceLevelC".freeze,
|
9042
9118
|
type: "schema:MedicalEvidenceLevel".freeze
|
9043
9119
|
term :Eye,
|
9044
|
-
comment: %(Eye).freeze,
|
9120
|
+
comment: %(Eye.).freeze,
|
9045
9121
|
label: "Eye".freeze,
|
9046
9122
|
type: "schema:PhysicalExam".freeze
|
9047
9123
|
term :FDAcategoryA,
|
@@ -9073,7 +9149,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9073
9149
|
label: "FailedActionStatus".freeze,
|
9074
9150
|
type: "schema:ActionStatusType".freeze
|
9075
9151
|
term :False,
|
9076
|
-
comment: %(The boolean value false).freeze,
|
9152
|
+
comment: %(The boolean value false.).freeze,
|
9077
9153
|
label: "False".freeze,
|
9078
9154
|
subClassOf: "schema:Boolean".freeze,
|
9079
9155
|
type: "schema:Boolean".freeze
|
@@ -9090,7 +9166,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9090
9166
|
label: "Genetic".freeze,
|
9091
9167
|
type: "schema:MedicalSpecialty".freeze
|
9092
9168
|
term :Genitourinary,
|
9093
|
-
comment: %(Genitourinary).freeze,
|
9169
|
+
comment: %(Genitourinary.).freeze,
|
9094
9170
|
label: "Genitourinary".freeze,
|
9095
9171
|
type: "schema:PhysicalExam".freeze
|
9096
9172
|
term :Geriatric,
|
@@ -9106,7 +9182,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9106
9182
|
label: "Hardcover".freeze,
|
9107
9183
|
type: "schema:BookFormatType".freeze
|
9108
9184
|
term :Head,
|
9109
|
-
comment: %(Head).freeze,
|
9185
|
+
comment: %(Head.).freeze,
|
9110
9186
|
label: "Head".freeze,
|
9111
9187
|
type: "schema:PhysicalExam".freeze
|
9112
9188
|
term :HearingImpairedSupported,
|
@@ -9176,7 +9252,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9176
9252
|
label: "Longitudinal".freeze,
|
9177
9253
|
type: "schema:MedicalObservationalStudyDesign".freeze
|
9178
9254
|
term :Lung,
|
9179
|
-
comment: %(Lung).freeze,
|
9255
|
+
comment: %(Lung.).freeze,
|
9180
9256
|
label: "Lung".freeze,
|
9181
9257
|
type: "schema:PhysicalExam".freeze
|
9182
9258
|
term :MRI,
|
@@ -9206,23 +9282,23 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9206
9282
|
type: "schema:GamePlayMode".freeze
|
9207
9283
|
term :Musculoskeletal,
|
9208
9284
|
comment: %(A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.).freeze,
|
9209
|
-
label: "Musculoskeletal".freeze,
|
9285
|
+
label: "Musculoskeletal.".freeze,
|
9210
9286
|
type: "schema:MedicalSpecialty".freeze
|
9211
9287
|
term :MusculoskeletalExam,
|
9212
|
-
comment: %(Musculoskeletal).freeze,
|
9288
|
+
comment: %(Musculoskeletal.).freeze,
|
9213
9289
|
label: "MusculoskeletalExam".freeze,
|
9214
9290
|
type: "schema:PhysicalExam".freeze
|
9215
9291
|
term :Neck,
|
9216
|
-
comment: %(Neck).freeze,
|
9292
|
+
comment: %(Neck.).freeze,
|
9217
9293
|
label: "Neck".freeze,
|
9218
9294
|
type: "schema:PhysicalExam".freeze
|
9219
9295
|
term :Neuro,
|
9220
|
-
comment: %(Neuro).freeze,
|
9296
|
+
comment: %(Neuro.).freeze,
|
9221
9297
|
label: "Neuro".freeze,
|
9222
9298
|
type: "schema:PhysicalExam".freeze
|
9223
9299
|
term :Neurologic,
|
9224
9300
|
comment: %(A specific branch of medical science that studies the nerves and nervous system and its respective disease states.).freeze,
|
9225
|
-
label: "Neurologic".freeze,
|
9301
|
+
label: "Neurologic.".freeze,
|
9226
9302
|
type: "schema:MedicalSpecialty".freeze
|
9227
9303
|
term :NewCondition,
|
9228
9304
|
comment: %(Indicates that the item is new.).freeze,
|
@@ -9233,7 +9309,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9233
9309
|
label: "NoninvasiveProcedure".freeze,
|
9234
9310
|
type: "schema:MedicalProcedureType".freeze
|
9235
9311
|
term :Nose,
|
9236
|
-
comment: %(Nose).freeze,
|
9312
|
+
comment: %(Nose.).freeze,
|
9237
9313
|
label: "Nose".freeze,
|
9238
9314
|
type: "schema:PhysicalExam".freeze
|
9239
9315
|
term :NotYetRecruiting,
|
@@ -9527,7 +9603,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9527
9603
|
label: "SingleRelease".freeze,
|
9528
9604
|
type: "schema:MusicAlbumReleaseType".freeze
|
9529
9605
|
term :Skin,
|
9530
|
-
comment: %(Skin).freeze,
|
9606
|
+
comment: %(Skin.).freeze,
|
9531
9607
|
label: "Skin".freeze,
|
9532
9608
|
type: "schema:PhysicalExam".freeze
|
9533
9609
|
term :SoldOut,
|
@@ -9578,7 +9654,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9578
9654
|
label: "Therapeutic".freeze,
|
9579
9655
|
type: "schema:MedicalDevicePurpose".freeze
|
9580
9656
|
term :Throat,
|
9581
|
-
comment: %(Throat).freeze,
|
9657
|
+
comment: %(Throat.).freeze,
|
9582
9658
|
label: "Throat".freeze,
|
9583
9659
|
type: "schema:PhysicalExam".freeze
|
9584
9660
|
term :TollFree,
|
@@ -9602,7 +9678,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9602
9678
|
label: "TripleBlindedTrial".freeze,
|
9603
9679
|
type: "schema:MedicalTrialDesign".freeze
|
9604
9680
|
term :True,
|
9605
|
-
comment: %(The boolean value true).freeze,
|
9681
|
+
comment: %(The boolean value true.).freeze,
|
9606
9682
|
label: "True".freeze,
|
9607
9683
|
subClassOf: "schema:Boolean".freeze,
|
9608
9684
|
type: "schema:Boolean".freeze
|
@@ -9628,7 +9704,7 @@ Note that Event uses startDate/endDate instead of startTime/endTime, even when d
|
|
9628
9704
|
label: "VinylFormat".freeze,
|
9629
9705
|
type: "schema:MusicReleaseFormatType".freeze
|
9630
9706
|
term :VitalSign,
|
9631
|
-
comment: %(VitalSign).freeze,
|
9707
|
+
comment: %(VitalSign.).freeze,
|
9632
9708
|
label: "VitalSign".freeze,
|
9633
9709
|
type: "schema:PhysicalExam".freeze
|
9634
9710
|
term :WesternConventional,
|