rdf-vocab 3.0.12 → 3.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +3 -0
- data/lib/rdf/vocab/as.rb +887 -0
- data/lib/rdf/vocab/dbo.rb +7292 -0
- data/lib/rdf/vocab/sh.rb +1338 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f56a5b974ea5525cf35e6ebe8c2f3238fc14157c880ab187831b268ebe9a3a63
|
4
|
+
data.tar.gz: ed893ccf9c16bba636decad15c7a796f33cf112388ceef17e9f73c154776e0b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4a9cec4d60056fff470bbbb79aa561e9a83e7da1d30b9093ad33cecfb01e437a1341c629a808407c6a0dd105175e838aabd3e00b895071541e4b84e90062e16
|
7
|
+
data.tar.gz: 4c222c0fb1a2f0df431faf0fb1ed400866bb442e078ba7be78047197f7845da020ebde270022708df5ae046c3e6ee52ea7dec1bfe784894bd511e7d97759d2b7
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.13
|
data/lib/rdf/vocab.rb
CHANGED
@@ -8,6 +8,7 @@ module RDF
|
|
8
8
|
autoload :VERSION, 'rdf/vocab/version'
|
9
9
|
VOCABS = {
|
10
10
|
acl: {uri: "http://www.w3.org/ns/auth/acl#"},
|
11
|
+
as: {uri: "https://www.w3.org/ns/activitystreams#", source: 'etc/as.ttl'},
|
11
12
|
bf2: {uri: 'http://id.loc.gov/ontologies/bibframe/'},
|
12
13
|
bibframe: {
|
13
14
|
uri: "http://bibframe.org/vocab/",
|
@@ -55,6 +56,7 @@ module RDF
|
|
55
56
|
class_name: "DataCite",
|
56
57
|
skip: true
|
57
58
|
},
|
59
|
+
dbo: {uri: "http://dbpedia.org/ontology/", source: "http://dbpedia.org/data3/.ttl"},
|
58
60
|
dc: {uri: "http://purl.org/dc/terms/"},
|
59
61
|
dc11: {uri: "http://purl.org/dc/elements/1.1/"},
|
60
62
|
dcat: {
|
@@ -287,6 +289,7 @@ module RDF
|
|
287
289
|
uri: "http://schema.org/",
|
288
290
|
source: "http://schema.org/version/latest/all-layers.nq"
|
289
291
|
},
|
292
|
+
sh: { uri: 'http://www.w3.org/ns/shacl#', source: 'https://www.w3.org/ns/shacl.ttl' },
|
290
293
|
sioc: {uri: "http://rdfs.org/sioc/ns#"},
|
291
294
|
sioc_services: {
|
292
295
|
uri: "http://rdfs.org/sioc/services#",
|
data/lib/rdf/vocab/as.rb
ADDED
@@ -0,0 +1,887 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# frozen_string_literal: true
|
3
|
+
# This file generated automatically using rdf vocabulary format from https://www.w3.org/ns/activitystreams#
|
4
|
+
require 'rdf'
|
5
|
+
module RDF::Vocab
|
6
|
+
# @!parse
|
7
|
+
# # Vocabulary for <https://www.w3.org/ns/activitystreams#>
|
8
|
+
# class AS < RDF::StrictVocabulary
|
9
|
+
# end
|
10
|
+
class AS < RDF::StrictVocabulary("https://www.w3.org/ns/activitystreams#")
|
11
|
+
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"https://www.w3.org/ns/activitystreams#",
|
14
|
+
comment: %(Extended Activity Streams 2.0 Vocabulary).freeze,
|
15
|
+
label: "Activity Streams 2.0".freeze,
|
16
|
+
"owl:imports": "prov:".freeze,
|
17
|
+
type: "owl:Ontology".freeze
|
18
|
+
|
19
|
+
# Class definitions
|
20
|
+
term :Accept,
|
21
|
+
comment: %(Actor accepts the Object).freeze,
|
22
|
+
label: "Accept".freeze,
|
23
|
+
subClassOf: "as:Activity".freeze,
|
24
|
+
type: "owl:Class".freeze
|
25
|
+
term :Activity,
|
26
|
+
comment: %(An Object representing some form of Action that has been taken).freeze,
|
27
|
+
label: "Activity".freeze,
|
28
|
+
subClassOf: "as:Object".freeze,
|
29
|
+
type: "owl:Class".freeze
|
30
|
+
term :Add,
|
31
|
+
comment: %(To Add an Object or Link to Something).freeze,
|
32
|
+
label: "Add".freeze,
|
33
|
+
subClassOf: "as:Activity".freeze,
|
34
|
+
type: "owl:Class".freeze
|
35
|
+
term :Announce,
|
36
|
+
comment: %(Actor announces the object to the target).freeze,
|
37
|
+
label: "Announce".freeze,
|
38
|
+
subClassOf: "as:Activity".freeze,
|
39
|
+
type: "owl:Class".freeze
|
40
|
+
term :Application,
|
41
|
+
comment: %(Represents a software application of any sort).freeze,
|
42
|
+
label: "Application".freeze,
|
43
|
+
subClassOf: "as:Object".freeze,
|
44
|
+
type: "owl:Class".freeze
|
45
|
+
term :Arrive,
|
46
|
+
comment: %(To Arrive Somewhere \(can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a "check-in"\)).freeze,
|
47
|
+
label: "Arrive".freeze,
|
48
|
+
subClassOf: "as:IntransitiveActivity".freeze,
|
49
|
+
type: "owl:Class".freeze
|
50
|
+
term :Article,
|
51
|
+
comment: %(A written work. Typically several paragraphs long. For example, a blog post or a news article.).freeze,
|
52
|
+
label: "Article".freeze,
|
53
|
+
subClassOf: "as:Object".freeze,
|
54
|
+
type: "owl:Class".freeze
|
55
|
+
term :Audio,
|
56
|
+
comment: %(An audio file).freeze,
|
57
|
+
label: "Audio".freeze,
|
58
|
+
subClassOf: "as:Document".freeze,
|
59
|
+
type: "owl:Class".freeze
|
60
|
+
term :Block,
|
61
|
+
label: "Block".freeze,
|
62
|
+
subClassOf: "as:Ignore".freeze,
|
63
|
+
type: "owl:Class".freeze
|
64
|
+
term :Collection,
|
65
|
+
comment: %(An ordered or unordered collection of Objects or Links).freeze,
|
66
|
+
label: "Collection".freeze,
|
67
|
+
subClassOf: "as:Object".freeze,
|
68
|
+
type: "owl:Class".freeze
|
69
|
+
term :CollectionPage,
|
70
|
+
comment: %(A subset of items from a Collection).freeze,
|
71
|
+
label: "CollectionPage".freeze,
|
72
|
+
subClassOf: "as:Collection".freeze,
|
73
|
+
type: "owl:Class".freeze
|
74
|
+
term :Create,
|
75
|
+
comment: %(To Create Something).freeze,
|
76
|
+
label: "Create".freeze,
|
77
|
+
subClassOf: "as:Activity".freeze,
|
78
|
+
type: "owl:Class".freeze
|
79
|
+
term :Delete,
|
80
|
+
comment: %(To Delete Something).freeze,
|
81
|
+
label: "Delete".freeze,
|
82
|
+
subClassOf: "as:Activity".freeze,
|
83
|
+
type: "owl:Class".freeze
|
84
|
+
term :Dislike,
|
85
|
+
comment: %(The actor dislikes the object).freeze,
|
86
|
+
label: "Dislike".freeze,
|
87
|
+
subClassOf: "as:Activity".freeze,
|
88
|
+
type: "owl:Class".freeze
|
89
|
+
term :Document,
|
90
|
+
comment: %(Represents a digital document/file of any sort).freeze,
|
91
|
+
label: "Document".freeze,
|
92
|
+
subClassOf: "as:Object".freeze,
|
93
|
+
type: "owl:Class".freeze
|
94
|
+
term :Event,
|
95
|
+
comment: %(An Event of any kind).freeze,
|
96
|
+
label: "Event".freeze,
|
97
|
+
subClassOf: "as:Object".freeze,
|
98
|
+
type: "owl:Class".freeze
|
99
|
+
term :Flag,
|
100
|
+
comment: %(To flag something \(e.g. flag as inappropriate, flag as spam, etc\)).freeze,
|
101
|
+
label: "Flag".freeze,
|
102
|
+
subClassOf: "as:Activity".freeze,
|
103
|
+
type: "owl:Class".freeze
|
104
|
+
term :Follow,
|
105
|
+
comment: %(To Express Interest in Something).freeze,
|
106
|
+
label: "Follow".freeze,
|
107
|
+
subClassOf: "as:Activity".freeze,
|
108
|
+
type: "owl:Class".freeze
|
109
|
+
term :Group,
|
110
|
+
comment: %(A Group of any kind.).freeze,
|
111
|
+
label: "Group".freeze,
|
112
|
+
subClassOf: "as:Object".freeze,
|
113
|
+
type: "owl:Class".freeze
|
114
|
+
term :Ignore,
|
115
|
+
comment: %(Actor is ignoring the Object).freeze,
|
116
|
+
label: "Ignore".freeze,
|
117
|
+
subClassOf: "as:Activity".freeze,
|
118
|
+
type: "owl:Class".freeze
|
119
|
+
term :Image,
|
120
|
+
comment: %(An Image file).freeze,
|
121
|
+
label: "Image".freeze,
|
122
|
+
subClassOf: "as:Document".freeze,
|
123
|
+
type: "owl:Class".freeze
|
124
|
+
term :IntransitiveActivity,
|
125
|
+
comment: %(An Activity that has no direct object).freeze,
|
126
|
+
label: "IntransitiveActivity".freeze,
|
127
|
+
subClassOf: ["as:Activity".freeze, term(
|
128
|
+
maxCardinality: "0".freeze,
|
129
|
+
onProperty: "as:object".freeze,
|
130
|
+
type: "owl:Restriction".freeze
|
131
|
+
)],
|
132
|
+
type: "owl:Class".freeze
|
133
|
+
term :Invite,
|
134
|
+
comment: %(To invite someone or something to something).freeze,
|
135
|
+
label: "Invite".freeze,
|
136
|
+
subClassOf: "as:Offer".freeze,
|
137
|
+
type: "owl:Class".freeze
|
138
|
+
term :Join,
|
139
|
+
comment: %(To Join Something).freeze,
|
140
|
+
label: "Join".freeze,
|
141
|
+
subClassOf: "as:Activity".freeze,
|
142
|
+
type: "owl:Class".freeze
|
143
|
+
term :Leave,
|
144
|
+
comment: %(To Leave Something).freeze,
|
145
|
+
label: "Leave".freeze,
|
146
|
+
subClassOf: "as:Activity".freeze,
|
147
|
+
type: "owl:Class".freeze
|
148
|
+
term :Like,
|
149
|
+
comment: %(To Like Something).freeze,
|
150
|
+
label: "Like".freeze,
|
151
|
+
subClassOf: "as:Activity".freeze,
|
152
|
+
type: "owl:Class".freeze
|
153
|
+
term :Link,
|
154
|
+
comment: %(Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model).freeze,
|
155
|
+
label: "Link".freeze,
|
156
|
+
"owl:disjointWith": "as:Object".freeze,
|
157
|
+
type: "owl:Class".freeze
|
158
|
+
term :Listen,
|
159
|
+
comment: %(The actor listened to the object).freeze,
|
160
|
+
label: "Listen".freeze,
|
161
|
+
subClassOf: "as:Activity".freeze,
|
162
|
+
type: "owl:Class".freeze
|
163
|
+
term :Mention,
|
164
|
+
comment: %(A specialized Link that represents an @mention).freeze,
|
165
|
+
label: "Mention".freeze,
|
166
|
+
subClassOf: "as:Link".freeze,
|
167
|
+
type: "owl:Class".freeze
|
168
|
+
term :Move,
|
169
|
+
comment: %(The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from.).freeze,
|
170
|
+
label: "Move".freeze,
|
171
|
+
subClassOf: "as:Activity".freeze,
|
172
|
+
type: "owl:Class".freeze
|
173
|
+
term :Note,
|
174
|
+
comment: %(A Short note, typically less than a single paragraph. A "tweet" is an example, or a "status update").freeze,
|
175
|
+
label: "Note".freeze,
|
176
|
+
subClassOf: "as:Object".freeze,
|
177
|
+
type: "owl:Class".freeze
|
178
|
+
term :Object,
|
179
|
+
label: "Object".freeze,
|
180
|
+
type: "owl:Class".freeze
|
181
|
+
term :Offer,
|
182
|
+
comment: %(To Offer something to someone or something).freeze,
|
183
|
+
label: "Offer".freeze,
|
184
|
+
subClassOf: "as:Activity".freeze,
|
185
|
+
type: "owl:Class".freeze
|
186
|
+
term :OrderedCollection,
|
187
|
+
comment: %(A variation of Collection in which items are strictly ordered).freeze,
|
188
|
+
label: "OrderedCollection".freeze,
|
189
|
+
subClassOf: term(
|
190
|
+
intersectionOf: list("as:Collection".freeze, term(
|
191
|
+
allValuesFrom: term(
|
192
|
+
intersectionOf: list("as:OrderedItems".freeze, term(
|
193
|
+
"owl:complementOf": term(
|
194
|
+
type: "owl:Class".freeze,
|
195
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
196
|
+
),
|
197
|
+
type: "owl:Class".freeze
|
198
|
+
)),
|
199
|
+
type: "owl:Class".freeze
|
200
|
+
),
|
201
|
+
onProperty: "as:items".freeze,
|
202
|
+
type: "owl:Restriction".freeze
|
203
|
+
)),
|
204
|
+
type: "owl:Class".freeze
|
205
|
+
),
|
206
|
+
type: "owl:Class".freeze
|
207
|
+
term :OrderedCollectionPage,
|
208
|
+
comment: %(An ordered subset of items from an OrderedCollection).freeze,
|
209
|
+
label: "OrderedCollectionPage".freeze,
|
210
|
+
subClassOf: ["as:CollectionPage".freeze, "as:OrderedCollection".freeze],
|
211
|
+
type: "owl:Class".freeze
|
212
|
+
term :OrderedItems,
|
213
|
+
comment: %(A rdf:List variant for Objects and Links).freeze,
|
214
|
+
label: "OrderedItems".freeze,
|
215
|
+
subClassOf: term(
|
216
|
+
intersectionOf: list("rdf:List".freeze, term(
|
217
|
+
allValuesFrom: term(
|
218
|
+
type: "owl:Class".freeze,
|
219
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
220
|
+
),
|
221
|
+
onProperty: "rdf:first".freeze,
|
222
|
+
type: "owl:Restriction".freeze
|
223
|
+
), term(
|
224
|
+
allValuesFrom: "as:OrderedItems".freeze,
|
225
|
+
onProperty: "rdf:rest".freeze,
|
226
|
+
type: "owl:Restriction".freeze
|
227
|
+
)),
|
228
|
+
type: "owl:Class".freeze
|
229
|
+
),
|
230
|
+
type: "owl:Class".freeze
|
231
|
+
term :Organization,
|
232
|
+
comment: %(An Organization).freeze,
|
233
|
+
label: "Organization".freeze,
|
234
|
+
subClassOf: "as:Object".freeze,
|
235
|
+
type: "owl:Class".freeze
|
236
|
+
term :Page,
|
237
|
+
comment: %(A Web Page).freeze,
|
238
|
+
label: "Page".freeze,
|
239
|
+
subClassOf: "as:Object".freeze,
|
240
|
+
type: "owl:Class".freeze
|
241
|
+
term :Person,
|
242
|
+
comment: %(A Person).freeze,
|
243
|
+
label: "Person".freeze,
|
244
|
+
subClassOf: "as:Object".freeze,
|
245
|
+
type: "owl:Class".freeze
|
246
|
+
term :Place,
|
247
|
+
comment: %(A physical or logical location).freeze,
|
248
|
+
label: "Place".freeze,
|
249
|
+
subClassOf: "as:Object".freeze,
|
250
|
+
type: "owl:Class".freeze
|
251
|
+
term :Profile,
|
252
|
+
comment: %(A Profile Document).freeze,
|
253
|
+
label: "Profile".freeze,
|
254
|
+
subClassOf: "as:Object".freeze,
|
255
|
+
type: "owl:Class".freeze
|
256
|
+
term :Question,
|
257
|
+
comment: %(A question of any sort.).freeze,
|
258
|
+
label: "Question".freeze,
|
259
|
+
subClassOf: "as:IntransitiveActivity".freeze,
|
260
|
+
type: "owl:Class".freeze
|
261
|
+
term :Read,
|
262
|
+
comment: %(The actor read the object).freeze,
|
263
|
+
label: "Read".freeze,
|
264
|
+
subClassOf: "as:Activity".freeze,
|
265
|
+
type: "owl:Class".freeze
|
266
|
+
term :Reject,
|
267
|
+
comment: %(Actor rejects the Object).freeze,
|
268
|
+
label: "Reject".freeze,
|
269
|
+
subClassOf: "as:Activity".freeze,
|
270
|
+
type: "owl:Class".freeze
|
271
|
+
term :Relationship,
|
272
|
+
comment: %(Represents a Social Graph relationship between two Individuals \(indicated by the 'a' and 'b' properties\)).freeze,
|
273
|
+
label: "Relationship".freeze,
|
274
|
+
subClassOf: "as:Object".freeze,
|
275
|
+
type: ["owl:Class".freeze, "rdf:Statement".freeze]
|
276
|
+
term :Remove,
|
277
|
+
comment: %(To Remove Something).freeze,
|
278
|
+
label: "Remove".freeze,
|
279
|
+
subClassOf: "as:Activity".freeze,
|
280
|
+
type: "owl:Class".freeze
|
281
|
+
term :Service,
|
282
|
+
comment: %(A service provided by some entity).freeze,
|
283
|
+
label: "Service".freeze,
|
284
|
+
subClassOf: "as:Object".freeze,
|
285
|
+
type: "owl:Class".freeze
|
286
|
+
term :TentativeAccept,
|
287
|
+
comment: %(Actor tentatively accepts the Object).freeze,
|
288
|
+
label: "TentativeAccept".freeze,
|
289
|
+
subClassOf: "as:Accept".freeze,
|
290
|
+
type: "owl:Class".freeze
|
291
|
+
term :TentativeReject,
|
292
|
+
comment: %(Actor tentatively rejects the object).freeze,
|
293
|
+
label: "TentativeReject".freeze,
|
294
|
+
subClassOf: "as:Reject".freeze,
|
295
|
+
type: "owl:Class".freeze
|
296
|
+
term :Tombstone,
|
297
|
+
comment: %(A placeholder for a deleted object).freeze,
|
298
|
+
label: "Tombstone".freeze,
|
299
|
+
subClassOf: "as:Object".freeze,
|
300
|
+
type: "owl:Class".freeze
|
301
|
+
term :Travel,
|
302
|
+
comment: %(The actor is traveling to the target. The origin specifies where the actor is traveling from.).freeze,
|
303
|
+
label: "Travel".freeze,
|
304
|
+
subClassOf: "as:IntransitiveActivity".freeze,
|
305
|
+
type: "owl:Class".freeze
|
306
|
+
term :Undo,
|
307
|
+
comment: %(To Undo Something. This would typically be used to indicate that a previous Activity has been undone.).freeze,
|
308
|
+
label: "Undo".freeze,
|
309
|
+
subClassOf: "as:Activity".freeze,
|
310
|
+
type: "owl:Class".freeze
|
311
|
+
term :Update,
|
312
|
+
comment: %(To Update/Modify Something).freeze,
|
313
|
+
label: "Update".freeze,
|
314
|
+
subClassOf: "as:Activity".freeze,
|
315
|
+
type: "owl:Class".freeze
|
316
|
+
term :Video,
|
317
|
+
comment: %(A Video document of any kind.).freeze,
|
318
|
+
label: "Video".freeze,
|
319
|
+
subClassOf: "as:Document".freeze,
|
320
|
+
type: "owl:Class".freeze
|
321
|
+
term :View,
|
322
|
+
comment: %(The actor viewed the object).freeze,
|
323
|
+
label: "View".freeze,
|
324
|
+
subClassOf: "as:Activity".freeze,
|
325
|
+
type: "owl:Class".freeze
|
326
|
+
|
327
|
+
# Property definitions
|
328
|
+
property :accuracy,
|
329
|
+
comment: %(Specifies the accuracy around the point established by the longitude and latitude).freeze,
|
330
|
+
domain: "as:Place".freeze,
|
331
|
+
label: "accuracy".freeze,
|
332
|
+
range: term(
|
333
|
+
"owl:onDatatype": "xsd:float".freeze,
|
334
|
+
"owl:withRestrictions": list(term(
|
335
|
+
"xsd:minInclusive": "0.0".freeze
|
336
|
+
)),
|
337
|
+
type: "rdfs:Datatype".freeze
|
338
|
+
),
|
339
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
340
|
+
property :actor,
|
341
|
+
comment: %(Subproperty of as:attributedTo that identifies the primary actor).freeze,
|
342
|
+
domain: "as:Activity".freeze,
|
343
|
+
label: "actor".freeze,
|
344
|
+
range: term(
|
345
|
+
type: "owl:Class".freeze,
|
346
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
347
|
+
),
|
348
|
+
subPropertyOf: "as:attributedTo".freeze,
|
349
|
+
type: "owl:ObjectProperty".freeze
|
350
|
+
property :altitude,
|
351
|
+
comment: %(The altitude of a place).freeze,
|
352
|
+
domain: "as:Place".freeze,
|
353
|
+
label: "altitude".freeze,
|
354
|
+
range: "xsd:float".freeze,
|
355
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
356
|
+
property :anyOf,
|
357
|
+
comment: %(Describes a possible inclusive answer or option for a question.).freeze,
|
358
|
+
domain: "as:Question".freeze,
|
359
|
+
label: "oneOf".freeze,
|
360
|
+
range: term(
|
361
|
+
type: "owl:Class".freeze,
|
362
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
363
|
+
),
|
364
|
+
type: "owl:ObjectProperty".freeze
|
365
|
+
property :attachment,
|
366
|
+
domain: "as:Object".freeze,
|
367
|
+
equivalentProperty: "as:attachments".freeze,
|
368
|
+
label: "attachment".freeze,
|
369
|
+
range: term(
|
370
|
+
type: "owl:Class".freeze,
|
371
|
+
unionOf: list("as:Link".freeze, "as:Object".freeze)
|
372
|
+
),
|
373
|
+
type: "owl:ObjectProperty".freeze
|
374
|
+
property :attachments,
|
375
|
+
domain: "as:Object".freeze,
|
376
|
+
label: "attachments".freeze,
|
377
|
+
range: term(
|
378
|
+
type: "owl:Class".freeze,
|
379
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
380
|
+
),
|
381
|
+
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
382
|
+
property :attributedTo,
|
383
|
+
comment: %(Identifies an entity to which an object is attributed).freeze,
|
384
|
+
domain: term(
|
385
|
+
type: "owl:Class".freeze,
|
386
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
387
|
+
),
|
388
|
+
label: "attributedTo".freeze,
|
389
|
+
range: term(
|
390
|
+
type: "owl:Class".freeze,
|
391
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
392
|
+
),
|
393
|
+
type: "owl:ObjectProperty".freeze
|
394
|
+
property :audience,
|
395
|
+
domain: "as:Object".freeze,
|
396
|
+
label: "audience".freeze,
|
397
|
+
range: term(
|
398
|
+
type: "owl:Class".freeze,
|
399
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
400
|
+
),
|
401
|
+
type: "owl:ObjectProperty".freeze
|
402
|
+
property :author,
|
403
|
+
comment: %(Identifies the author of an object. Deprecated. Use as:attributedTo instead).freeze,
|
404
|
+
domain: "as:Object".freeze,
|
405
|
+
label: "author".freeze,
|
406
|
+
range: term(
|
407
|
+
type: "owl:Class".freeze,
|
408
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
409
|
+
),
|
410
|
+
subPropertyOf: "as:attributedTo".freeze,
|
411
|
+
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
412
|
+
property :bcc,
|
413
|
+
domain: "as:Object".freeze,
|
414
|
+
label: "bcc".freeze,
|
415
|
+
range: term(
|
416
|
+
type: "owl:Class".freeze,
|
417
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
418
|
+
),
|
419
|
+
type: "owl:ObjectProperty".freeze
|
420
|
+
property :bto,
|
421
|
+
domain: "as:Object".freeze,
|
422
|
+
label: "bto".freeze,
|
423
|
+
range: term(
|
424
|
+
type: "owl:Class".freeze,
|
425
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
426
|
+
),
|
427
|
+
type: "owl:ObjectProperty".freeze
|
428
|
+
property :cc,
|
429
|
+
domain: "as:Object".freeze,
|
430
|
+
label: "cc".freeze,
|
431
|
+
range: term(
|
432
|
+
type: "owl:Class".freeze,
|
433
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
434
|
+
),
|
435
|
+
type: "owl:ObjectProperty".freeze
|
436
|
+
property :content,
|
437
|
+
comment: %(The content of the object.).freeze,
|
438
|
+
domain: "as:Object".freeze,
|
439
|
+
label: "content".freeze,
|
440
|
+
range: term(
|
441
|
+
type: "owl:Class".freeze,
|
442
|
+
unionOf: list(term(
|
443
|
+
type: "rdfs:Datatype".freeze
|
444
|
+
), "xsd:string".freeze)
|
445
|
+
),
|
446
|
+
type: "owl:DatatypeProperty".freeze
|
447
|
+
property :context,
|
448
|
+
comment: %(Specifies the context within which an object exists or an activity was performed).freeze,
|
449
|
+
domain: "as:Object".freeze,
|
450
|
+
label: "context".freeze,
|
451
|
+
range: term(
|
452
|
+
type: "owl:Class".freeze,
|
453
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
454
|
+
),
|
455
|
+
type: "owl:ObjectProperty".freeze
|
456
|
+
property :current,
|
457
|
+
domain: "as:Collection".freeze,
|
458
|
+
label: "current".freeze,
|
459
|
+
range: term(
|
460
|
+
type: "owl:Class".freeze,
|
461
|
+
unionOf: list("as:CollectionPage".freeze, "as:Link".freeze)
|
462
|
+
),
|
463
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
464
|
+
property :deleted,
|
465
|
+
comment: %(Specifies the date and time the object was deleted).freeze,
|
466
|
+
domain: "as:Tombstone".freeze,
|
467
|
+
label: "deleted".freeze,
|
468
|
+
range: "xsd:dateTime".freeze,
|
469
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
470
|
+
property :describes,
|
471
|
+
comment: %(On a Profile object, describes the object described by the profile).freeze,
|
472
|
+
domain: "as:Profile".freeze,
|
473
|
+
label: "describes".freeze,
|
474
|
+
range: "as:Object".freeze,
|
475
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
476
|
+
property :downstreamDuplicates,
|
477
|
+
domain: "as:Object".freeze,
|
478
|
+
label: "downstreamDuplicates".freeze,
|
479
|
+
range: "xsd:anyURI".freeze,
|
480
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
481
|
+
property :duration,
|
482
|
+
comment: %(The duration of the object).freeze,
|
483
|
+
domain: "as:Object".freeze,
|
484
|
+
label: "duration".freeze,
|
485
|
+
range: "xsd:duration".freeze,
|
486
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
487
|
+
property :endTime,
|
488
|
+
comment: %(The ending time of the object).freeze,
|
489
|
+
domain: "as:Object".freeze,
|
490
|
+
label: "endTime".freeze,
|
491
|
+
range: "xsd:dateTime".freeze,
|
492
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
493
|
+
property :first,
|
494
|
+
domain: "as:Collection".freeze,
|
495
|
+
label: "first".freeze,
|
496
|
+
range: term(
|
497
|
+
type: "owl:Class".freeze,
|
498
|
+
unionOf: list("as:CollectionPage".freeze, "as:Link".freeze)
|
499
|
+
),
|
500
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
501
|
+
property :formerType,
|
502
|
+
comment: %(On a Tombstone object, describes the former type of the deleted object).freeze,
|
503
|
+
domain: "as:Tombstone".freeze,
|
504
|
+
label: "formerType".freeze,
|
505
|
+
range: "as:Object".freeze,
|
506
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
507
|
+
property :generator,
|
508
|
+
domain: "as:Object".freeze,
|
509
|
+
label: "generator".freeze,
|
510
|
+
range: term(
|
511
|
+
type: "owl:Class".freeze,
|
512
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
513
|
+
),
|
514
|
+
type: "owl:ObjectProperty".freeze
|
515
|
+
property :height,
|
516
|
+
comment: %(The display height expressed as device independent pixels).freeze,
|
517
|
+
domain: "as:Link".freeze,
|
518
|
+
label: "height".freeze,
|
519
|
+
range: "xsd:nonNegativeInteger".freeze,
|
520
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
521
|
+
property :href,
|
522
|
+
comment: %(The target URI of the Link).freeze,
|
523
|
+
domain: "as:Link".freeze,
|
524
|
+
label: "href".freeze,
|
525
|
+
range: "xsd:anyURI".freeze,
|
526
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
527
|
+
property :hreflang,
|
528
|
+
comment: %(A hint about the language of the referenced resource).freeze,
|
529
|
+
domain: "as:Link".freeze,
|
530
|
+
label: "hreflang".freeze,
|
531
|
+
range: "xsd:language".freeze,
|
532
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
533
|
+
property :icon,
|
534
|
+
domain: "as:Object".freeze,
|
535
|
+
label: "icon".freeze,
|
536
|
+
range: term(
|
537
|
+
type: "owl:Class".freeze,
|
538
|
+
unionOf: list("as:Image".freeze, "as:Link".freeze)
|
539
|
+
),
|
540
|
+
type: "owl:ObjectProperty".freeze
|
541
|
+
property :id,
|
542
|
+
domain: term(
|
543
|
+
type: "owl:Class".freeze,
|
544
|
+
unionOf: list("as:Link".freeze, "as:Object".freeze)
|
545
|
+
),
|
546
|
+
label: "id".freeze,
|
547
|
+
range: "xsd:anyURI".freeze,
|
548
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
|
549
|
+
property :image,
|
550
|
+
domain: "as:Object".freeze,
|
551
|
+
label: "image".freeze,
|
552
|
+
range: term(
|
553
|
+
type: "owl:Class".freeze,
|
554
|
+
unionOf: list("as:Image".freeze, "as:Link".freeze)
|
555
|
+
),
|
556
|
+
type: "owl:ObjectProperty".freeze
|
557
|
+
property :inReplyTo,
|
558
|
+
domain: "as:Object".freeze,
|
559
|
+
label: "inReplyTo".freeze,
|
560
|
+
range: term(
|
561
|
+
type: "owl:Class".freeze,
|
562
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
563
|
+
),
|
564
|
+
type: "owl:ObjectProperty".freeze
|
565
|
+
property :instrument,
|
566
|
+
comment: %(Indentifies an object used \(or to be used\) to complete an activity).freeze,
|
567
|
+
domain: "as:Activity".freeze,
|
568
|
+
label: "instrument".freeze,
|
569
|
+
range: term(
|
570
|
+
type: "owl:Class".freeze,
|
571
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
572
|
+
),
|
573
|
+
type: "owl:ObjectProperty".freeze
|
574
|
+
property :items,
|
575
|
+
domain: "as:Collection".freeze,
|
576
|
+
label: "items".freeze,
|
577
|
+
range: term(
|
578
|
+
type: "owl:Class".freeze,
|
579
|
+
unionOf: list(term(
|
580
|
+
type: "owl:Class".freeze,
|
581
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
582
|
+
), "as:OrderedItems".freeze)
|
583
|
+
),
|
584
|
+
type: "owl:ObjectProperty".freeze
|
585
|
+
property :last,
|
586
|
+
domain: "as:Collection".freeze,
|
587
|
+
label: "last".freeze,
|
588
|
+
range: term(
|
589
|
+
type: "owl:Class".freeze,
|
590
|
+
unionOf: list("as:CollectionPage".freeze, "as:Link".freeze)
|
591
|
+
),
|
592
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
593
|
+
property :latitude,
|
594
|
+
comment: %(The latitude).freeze,
|
595
|
+
domain: "as:Place".freeze,
|
596
|
+
label: "latitude".freeze,
|
597
|
+
range: "xsd:float".freeze,
|
598
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
599
|
+
property :location,
|
600
|
+
domain: "as:Object".freeze,
|
601
|
+
label: "location".freeze,
|
602
|
+
range: term(
|
603
|
+
type: "owl:Class".freeze,
|
604
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
605
|
+
),
|
606
|
+
type: "owl:ObjectProperty".freeze
|
607
|
+
property :longitude,
|
608
|
+
comment: %(The longitude).freeze,
|
609
|
+
domain: "as:Place".freeze,
|
610
|
+
label: "longitude".freeze,
|
611
|
+
range: "xsd:float".freeze,
|
612
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
613
|
+
property :mediaType,
|
614
|
+
comment: %(The MIME Media Type).freeze,
|
615
|
+
domain: term(
|
616
|
+
type: "owl:Class".freeze,
|
617
|
+
unionOf: list("as:Link".freeze, "as:Object".freeze)
|
618
|
+
),
|
619
|
+
label: "mediaType".freeze,
|
620
|
+
range: "xsd:string".freeze,
|
621
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
622
|
+
property :name,
|
623
|
+
domain: term(
|
624
|
+
type: "owl:Class".freeze,
|
625
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
626
|
+
),
|
627
|
+
label: "name".freeze,
|
628
|
+
range: term(
|
629
|
+
type: "owl:Class".freeze,
|
630
|
+
unionOf: list(term(
|
631
|
+
type: "rdfs:Datatype".freeze
|
632
|
+
), "xsd:string".freeze)
|
633
|
+
),
|
634
|
+
"rdfs:name": "The default, plain-text display name of the object or link.".freeze,
|
635
|
+
type: "owl:DatatypeProperty".freeze
|
636
|
+
property :next,
|
637
|
+
domain: "as:CollectionPage".freeze,
|
638
|
+
label: "next".freeze,
|
639
|
+
range: term(
|
640
|
+
type: "owl:Class".freeze,
|
641
|
+
unionOf: list("as:CollectionPage".freeze, "as:Link".freeze)
|
642
|
+
),
|
643
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
644
|
+
property :object,
|
645
|
+
domain: term(
|
646
|
+
type: "owl:Class".freeze,
|
647
|
+
unionOf: list("as:Activity".freeze, "as:Relationship".freeze)
|
648
|
+
),
|
649
|
+
label: "object".freeze,
|
650
|
+
range: term(
|
651
|
+
type: "owl:Class".freeze,
|
652
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
653
|
+
),
|
654
|
+
type: "owl:ObjectProperty".freeze
|
655
|
+
property :objectType,
|
656
|
+
domain: "as:Object".freeze,
|
657
|
+
label: "objectType".freeze,
|
658
|
+
range: "xsd:anyURI".freeze,
|
659
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
|
660
|
+
property :oneOf,
|
661
|
+
comment: %(Describes a possible exclusive answer or option for a question.).freeze,
|
662
|
+
domain: "as:Question".freeze,
|
663
|
+
label: "oneOf".freeze,
|
664
|
+
range: term(
|
665
|
+
type: "owl:Class".freeze,
|
666
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
667
|
+
),
|
668
|
+
type: "owl:ObjectProperty".freeze
|
669
|
+
property :origin,
|
670
|
+
comment: %(For certain activities, specifies the entity from which the action is directed.).freeze,
|
671
|
+
domain: "as:Activity".freeze,
|
672
|
+
label: "origin".freeze,
|
673
|
+
range: term(
|
674
|
+
type: "owl:Class".freeze,
|
675
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
676
|
+
),
|
677
|
+
type: "owl:ObjectProperty".freeze
|
678
|
+
property :partOf,
|
679
|
+
domain: "as:CollectionPage".freeze,
|
680
|
+
label: "partOf".freeze,
|
681
|
+
range: term(
|
682
|
+
type: "owl:Class".freeze,
|
683
|
+
unionOf: list("as:Collection".freeze, "as:Link".freeze)
|
684
|
+
),
|
685
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
686
|
+
property :prev,
|
687
|
+
domain: "as:CollectionPage".freeze,
|
688
|
+
label: "prev".freeze,
|
689
|
+
range: term(
|
690
|
+
type: "owl:Class".freeze,
|
691
|
+
unionOf: list("as:CollectionPage".freeze, "as:Link".freeze)
|
692
|
+
),
|
693
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
694
|
+
property :preview,
|
695
|
+
domain: term(
|
696
|
+
type: "owl:Class".freeze,
|
697
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
698
|
+
),
|
699
|
+
label: "preview".freeze,
|
700
|
+
range: term(
|
701
|
+
type: "owl:Class".freeze,
|
702
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
703
|
+
),
|
704
|
+
type: "owl:ObjectProperty".freeze
|
705
|
+
property :provider,
|
706
|
+
domain: "as:Object".freeze,
|
707
|
+
label: "provider".freeze,
|
708
|
+
range: term(
|
709
|
+
type: "owl:Class".freeze,
|
710
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
711
|
+
),
|
712
|
+
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
713
|
+
property :published,
|
714
|
+
comment: %(Specifies the date and time the object was published).freeze,
|
715
|
+
domain: "as:Object".freeze,
|
716
|
+
label: "published".freeze,
|
717
|
+
range: "xsd:dateTime".freeze,
|
718
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
719
|
+
property :radius,
|
720
|
+
comment: %(Specifies a radius around the point established by the longitude and latitude).freeze,
|
721
|
+
domain: "as:Place".freeze,
|
722
|
+
label: "radius".freeze,
|
723
|
+
range: term(
|
724
|
+
"owl:onDatatype": "xsd:float".freeze,
|
725
|
+
"owl:withRestrictions": list(term(
|
726
|
+
"xsd:minInclusive": "0.0".freeze
|
727
|
+
)),
|
728
|
+
type: "rdfs:Datatype".freeze
|
729
|
+
),
|
730
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
731
|
+
property :rating,
|
732
|
+
comment: %(A numeric rating \(>= 0.0, <= 5.0\) for the object).freeze,
|
733
|
+
domain: "as:Object".freeze,
|
734
|
+
label: "rating".freeze,
|
735
|
+
range: term(
|
736
|
+
"owl:onDatatype": "xsd:float".freeze,
|
737
|
+
"owl:withRestrictions": list(term(
|
738
|
+
"xsd:minInclusive": "0.0".freeze
|
739
|
+
), term(
|
740
|
+
"xsd:maxInclusive": "5.0".freeze
|
741
|
+
)),
|
742
|
+
type: "rdfs:Datatype".freeze
|
743
|
+
),
|
744
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
|
745
|
+
property :rel,
|
746
|
+
comment: %(The RFC 5988 or HTML5 Link Relation associated with the Link).freeze,
|
747
|
+
domain: "as:Link".freeze,
|
748
|
+
label: "rel".freeze,
|
749
|
+
range: "xsd:string".freeze,
|
750
|
+
type: "owl:DatatypeProperty".freeze
|
751
|
+
property :relationship,
|
752
|
+
comment: %(On a Relationship object, describes the type of relationship).freeze,
|
753
|
+
domain: "as:Relationship".freeze,
|
754
|
+
label: "relationship".freeze,
|
755
|
+
range: "rdf:Property".freeze,
|
756
|
+
subPropertyOf: "rdf:predicate".freeze,
|
757
|
+
type: "owl:ObjectProperty".freeze
|
758
|
+
property :replies,
|
759
|
+
domain: "as:Object".freeze,
|
760
|
+
label: "replies".freeze,
|
761
|
+
range: "as:Collection".freeze,
|
762
|
+
type: "owl:ObjectProperty".freeze
|
763
|
+
property :result,
|
764
|
+
domain: "as:Activity".freeze,
|
765
|
+
label: "result".freeze,
|
766
|
+
range: term(
|
767
|
+
type: "owl:Class".freeze,
|
768
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
769
|
+
),
|
770
|
+
type: "owl:ObjectProperty".freeze
|
771
|
+
property :startIndex,
|
772
|
+
comment: %(In a strictly ordered logical collection, specifies the index position of the first item in the items list).freeze,
|
773
|
+
domain: "as:OrderedCollectionPage".freeze,
|
774
|
+
label: "startIndex".freeze,
|
775
|
+
range: "xsd:nonNegativeInteger".freeze,
|
776
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
777
|
+
property :startTime,
|
778
|
+
comment: %(The starting time of the object).freeze,
|
779
|
+
domain: "as:Object".freeze,
|
780
|
+
label: "startTime".freeze,
|
781
|
+
range: "xsd:dateTime".freeze,
|
782
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
783
|
+
property :subject,
|
784
|
+
comment: %(On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John').freeze,
|
785
|
+
domain: "as:Relationship".freeze,
|
786
|
+
label: "a".freeze,
|
787
|
+
range: term(
|
788
|
+
type: "owl:Class".freeze,
|
789
|
+
unionOf: list("as:Link".freeze, "as:Object".freeze)
|
790
|
+
),
|
791
|
+
subPropertyOf: "rdf:subject".freeze,
|
792
|
+
type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
|
793
|
+
property :summary,
|
794
|
+
comment: %(A short summary of the object).freeze,
|
795
|
+
domain: "as:Object".freeze,
|
796
|
+
label: "summary".freeze,
|
797
|
+
range: term(
|
798
|
+
type: "owl:Class".freeze,
|
799
|
+
unionOf: list(term(
|
800
|
+
type: "rdfs:Datatype".freeze
|
801
|
+
), "xsd:string".freeze)
|
802
|
+
),
|
803
|
+
type: "owl:DatatypeProperty".freeze
|
804
|
+
property :tag,
|
805
|
+
domain: "as:Object".freeze,
|
806
|
+
label: "tag".freeze,
|
807
|
+
range: term(
|
808
|
+
type: "owl:Class".freeze,
|
809
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
810
|
+
),
|
811
|
+
type: "owl:ObjectProperty".freeze
|
812
|
+
property :tags,
|
813
|
+
domain: "as:Object".freeze,
|
814
|
+
equivalentProperty: "as:tag".freeze,
|
815
|
+
label: "tags".freeze,
|
816
|
+
range: term(
|
817
|
+
type: "owl:Class".freeze,
|
818
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
819
|
+
),
|
820
|
+
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
821
|
+
property :target,
|
822
|
+
domain: "as:Activity".freeze,
|
823
|
+
label: "target".freeze,
|
824
|
+
range: term(
|
825
|
+
type: "owl:Class".freeze,
|
826
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
827
|
+
),
|
828
|
+
type: "owl:ObjectProperty".freeze
|
829
|
+
property :to,
|
830
|
+
domain: "as:Object".freeze,
|
831
|
+
label: "to".freeze,
|
832
|
+
range: term(
|
833
|
+
type: "owl:Class".freeze,
|
834
|
+
unionOf: list("as:Object".freeze, "as:Link".freeze)
|
835
|
+
),
|
836
|
+
type: "owl:ObjectProperty".freeze
|
837
|
+
property :totalItems,
|
838
|
+
comment: %(The total number of items in a logical collection).freeze,
|
839
|
+
domain: "as:Collection".freeze,
|
840
|
+
label: "totalItems".freeze,
|
841
|
+
range: "xsd:nonNegativeInteger".freeze,
|
842
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
843
|
+
property :units,
|
844
|
+
comment: %(Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.).freeze,
|
845
|
+
domain: "as:Place".freeze,
|
846
|
+
label: "units".freeze,
|
847
|
+
range: term(
|
848
|
+
type: "rdfs:Datatype".freeze,
|
849
|
+
unionOf: list(term(
|
850
|
+
"owl:oneOf": list("inches".freeze, "feet".freeze, "miles".freeze, "cm".freeze, "m".freeze, "km".freeze),
|
851
|
+
type: "rdfs:Datatype".freeze
|
852
|
+
), "xsd:anyURI".freeze)
|
853
|
+
),
|
854
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
855
|
+
property :updated,
|
856
|
+
comment: %(Specifies when the object was last updated).freeze,
|
857
|
+
domain: "as:Object".freeze,
|
858
|
+
label: "updated".freeze,
|
859
|
+
range: "xsd:dateTime".freeze,
|
860
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
861
|
+
property :upstreamDuplicates,
|
862
|
+
domain: "as:Object".freeze,
|
863
|
+
label: "upstreamDuplicates".freeze,
|
864
|
+
range: "xsd:anyURI".freeze,
|
865
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
866
|
+
property :url,
|
867
|
+
comment: %(Specifies a link to a specific representation of the Object).freeze,
|
868
|
+
domain: "as:Object".freeze,
|
869
|
+
label: "url".freeze,
|
870
|
+
range: term(
|
871
|
+
type: "owl:Class".freeze,
|
872
|
+
unionOf: list("as:Link".freeze, "owl:Thing".freeze)
|
873
|
+
),
|
874
|
+
type: "owl:ObjectProperty".freeze
|
875
|
+
property :verb,
|
876
|
+
domain: "as:Activity".freeze,
|
877
|
+
label: "verb".freeze,
|
878
|
+
range: "xsd:anyURI".freeze,
|
879
|
+
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
|
880
|
+
property :width,
|
881
|
+
comment: %(Specifies the preferred display width of the content, expressed in terms of device independent pixels.).freeze,
|
882
|
+
domain: "as:Link".freeze,
|
883
|
+
label: "width".freeze,
|
884
|
+
range: "xsd:nonNegativeInteger".freeze,
|
885
|
+
type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
|
886
|
+
end
|
887
|
+
end
|