rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/sioc.rb
CHANGED
@@ -5,9 +5,409 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://rdfs.org/sioc/ns#>
|
8
|
+
# #
|
9
|
+
# # SIOC Core Ontology Namespace
|
10
|
+
# #
|
11
|
+
# # SIOC (Semantically-Interlinked Online Communities) is an ontology for describing the information in online communities. This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes (and is not limited to) weblogs, message boards, mailing lists and chat channels.
|
12
|
+
# # @version Revision: 1.36
|
13
|
+
# # @see http://rdfs.org/sioc/spec
|
8
14
|
# class SIOC < RDF::StrictVocabulary
|
15
|
+
# # Community is a high-level concept that defines an online community and what it consists of.
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :Community
|
18
|
+
#
|
19
|
+
# # An area in which content Items are contained.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :Container
|
22
|
+
#
|
23
|
+
# # A discussion area on which Posts or entries are made.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :Forum
|
26
|
+
#
|
27
|
+
# # An Item is something which can be in a Container.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :Item
|
30
|
+
#
|
31
|
+
# # An article or message that can be posted to a Forum.
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :Post
|
34
|
+
#
|
35
|
+
# # A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :Role
|
38
|
+
#
|
39
|
+
# # A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :Site
|
42
|
+
#
|
43
|
+
# # A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :Space
|
46
|
+
#
|
47
|
+
# # A container for a series of threaded discussion Posts or Items.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :Thread
|
50
|
+
#
|
51
|
+
# # UserAccount is now preferred. This is a deprecated class for a User in an online community site.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :User
|
54
|
+
#
|
55
|
+
# # A user account in an online community site.
|
56
|
+
# # @return [RDF::Vocabulary::Term]
|
57
|
+
# attr_reader :UserAccount
|
58
|
+
#
|
59
|
+
# # A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.
|
60
|
+
# # @return [RDF::Vocabulary::Term]
|
61
|
+
# attr_reader :Usergroup
|
62
|
+
#
|
63
|
+
# # Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.
|
64
|
+
# # @return [RDF::Vocabulary::Term]
|
65
|
+
# attr_reader :about
|
66
|
+
#
|
67
|
+
# # Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.
|
68
|
+
# # @return [RDF::Vocabulary::Term]
|
69
|
+
# attr_reader :account_of
|
70
|
+
#
|
71
|
+
# # Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.
|
72
|
+
# # @return [RDF::Vocabulary::Term]
|
73
|
+
# attr_reader :addressed_to
|
74
|
+
#
|
75
|
+
# # A Site that the UserAccount is an administrator of.
|
76
|
+
# # @return [RDF::Vocabulary::Term]
|
77
|
+
# attr_reader :administrator_of
|
78
|
+
#
|
79
|
+
# # The URI of a file attached to an Item.
|
80
|
+
# # @return [RDF::Vocabulary::Term]
|
81
|
+
# attr_reader :attachment
|
82
|
+
#
|
83
|
+
# # An image or depiction used to represent this UserAccount.
|
84
|
+
# # @return [RDF::Vocabulary::Term]
|
85
|
+
# attr_reader :avatar
|
86
|
+
#
|
87
|
+
# # An Item that this Container contains.
|
88
|
+
# # @return [RDF::Vocabulary::Term]
|
89
|
+
# attr_reader :container_of
|
90
|
+
#
|
91
|
+
# # The content of the Item in plain text format.
|
92
|
+
# # @return [RDF::Vocabulary::Term]
|
93
|
+
# attr_reader :content
|
94
|
+
#
|
95
|
+
# # The encoded content of the Post, contained in CDATA areas.
|
96
|
+
# # @return [RDF::Vocabulary::Term]
|
97
|
+
# attr_reader :content_encoded
|
98
|
+
#
|
99
|
+
# # When this was created, in ISO 8601 format.
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :created_at
|
102
|
+
#
|
103
|
+
# # A resource that the UserAccount is a creator of.
|
104
|
+
# # @return [RDF::Vocabulary::Term]
|
105
|
+
# attr_reader :creator_of
|
106
|
+
#
|
107
|
+
# # When this was delivered, in ISO 8601 format.
|
108
|
+
# # @return [RDF::Vocabulary::Term]
|
109
|
+
# attr_reader :delivered_at
|
110
|
+
#
|
111
|
+
# # The content of the Post.
|
112
|
+
# # @return [RDF::Vocabulary::Term]
|
113
|
+
# attr_reader :description
|
114
|
+
#
|
115
|
+
# # The Item that this discussion is about.
|
116
|
+
# # @return [RDF::Vocabulary::Term]
|
117
|
+
# attr_reader :discussion_of
|
118
|
+
#
|
119
|
+
# # Links to a previous (older) revision of this Item or Post.
|
120
|
+
# # @return [RDF::Vocabulary::Term]
|
121
|
+
# attr_reader :earlier_version
|
122
|
+
#
|
123
|
+
# # An electronic mail address of the UserAccount.
|
124
|
+
# # @return [RDF::Vocabulary::Term]
|
125
|
+
# attr_reader :email
|
126
|
+
#
|
127
|
+
# # An electronic mail address of the UserAccount, encoded using SHA1.
|
128
|
+
# # @return [RDF::Vocabulary::Term]
|
129
|
+
# attr_reader :email_sha1
|
130
|
+
#
|
131
|
+
# # This links Items to embedded statements, facts and structured content.
|
132
|
+
# # @return [RDF::Vocabulary::Term]
|
133
|
+
# attr_reader :embeds_knowledge
|
134
|
+
#
|
135
|
+
# # A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).
|
136
|
+
# # @return [RDF::Vocabulary::Term]
|
137
|
+
# attr_reader :feed
|
138
|
+
#
|
139
|
+
# # First (real) name of this User. Synonyms include given name or christian name.
|
140
|
+
# # @return [RDF::Vocabulary::Term]
|
141
|
+
# attr_reader :first_name
|
142
|
+
#
|
143
|
+
# # Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).
|
144
|
+
# # @return [RDF::Vocabulary::Term]
|
145
|
+
# attr_reader :follows
|
146
|
+
#
|
147
|
+
# # A UserAccount that has this Role.
|
148
|
+
# # @return [RDF::Vocabulary::Term]
|
149
|
+
# attr_reader :function_of
|
150
|
+
#
|
151
|
+
# # A URI for the application used to generate this Item.
|
152
|
+
# # @return [RDF::Vocabulary::Term]
|
153
|
+
# attr_reader :generator
|
154
|
+
#
|
155
|
+
# # @return [RDF::Vocabulary::Term]
|
156
|
+
# attr_reader :group_of
|
157
|
+
#
|
158
|
+
# # A UserAccount that is an administrator of this Site.
|
159
|
+
# # @return [RDF::Vocabulary::Term]
|
160
|
+
# attr_reader :has_administrator
|
161
|
+
#
|
162
|
+
# # The Container to which this Item belongs.
|
163
|
+
# # @return [RDF::Vocabulary::Term]
|
164
|
+
# attr_reader :has_container
|
165
|
+
#
|
166
|
+
# # This is the UserAccount that made this resource.
|
167
|
+
# # @return [RDF::Vocabulary::Term]
|
168
|
+
# attr_reader :has_creator
|
169
|
+
#
|
170
|
+
# # A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document.
|
171
|
+
# # @return [RDF::Vocabulary::Term]
|
172
|
+
# attr_reader :has_discussion
|
173
|
+
#
|
174
|
+
# # A Role that this UserAccount has.
|
175
|
+
# # @return [RDF::Vocabulary::Term]
|
176
|
+
# attr_reader :has_function
|
177
|
+
#
|
178
|
+
# # @return [RDF::Vocabulary::Term]
|
179
|
+
# attr_reader :has_group
|
180
|
+
#
|
181
|
+
# # The Site that hosts this Container.
|
182
|
+
# # @return [RDF::Vocabulary::Term]
|
183
|
+
# attr_reader :has_host
|
184
|
+
#
|
185
|
+
# # A UserAccount that is a member of this Usergroup.
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :has_member
|
188
|
+
#
|
189
|
+
# # A UserAccount that is a moderator of this Forum.
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :has_moderator
|
192
|
+
#
|
193
|
+
# # A UserAccount that modified this resource (e.g. Item, Container, Space).
|
194
|
+
# # @return [RDF::Vocabulary::Term]
|
195
|
+
# attr_reader :has_modifier
|
196
|
+
#
|
197
|
+
# # A UserAccount that this resource is owned by.
|
198
|
+
# # @return [RDF::Vocabulary::Term]
|
199
|
+
# attr_reader :has_owner
|
200
|
+
#
|
201
|
+
# # A Container or Forum that this Container or Forum is a child of.
|
202
|
+
# # @return [RDF::Vocabulary::Term]
|
203
|
+
# attr_reader :has_parent
|
204
|
+
#
|
205
|
+
# # An resource that is a part of this subject.
|
206
|
+
# # @return [RDF::Vocabulary::Term]
|
207
|
+
# attr_reader :has_part
|
208
|
+
#
|
209
|
+
# # Points to an Item or Post that is a reply or response to this Item or Post.
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :has_reply
|
212
|
+
#
|
213
|
+
# # A resource that this Role applies to.
|
214
|
+
# # @return [RDF::Vocabulary::Term]
|
215
|
+
# attr_reader :has_scope
|
216
|
+
#
|
217
|
+
# # A data Space which this resource is a part of.
|
218
|
+
# # @return [RDF::Vocabulary::Term]
|
219
|
+
# attr_reader :has_space
|
220
|
+
#
|
221
|
+
# # A UserAccount that is subscribed to this Container.
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :has_subscriber
|
224
|
+
#
|
225
|
+
# # Points to a Usergroup that has certain access to this Space.
|
226
|
+
# # @return [RDF::Vocabulary::Term]
|
227
|
+
# attr_reader :has_usergroup
|
228
|
+
#
|
229
|
+
# # A Container that is hosted on this Site.
|
230
|
+
# # @return [RDF::Vocabulary::Term]
|
231
|
+
# attr_reader :host_of
|
232
|
+
#
|
233
|
+
# # An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site.
|
234
|
+
# # @return [RDF::Vocabulary::Term]
|
235
|
+
# attr_reader :id
|
236
|
+
#
|
237
|
+
# # The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :ip_address
|
240
|
+
#
|
241
|
+
# # The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc.
|
242
|
+
# # @return [RDF::Vocabulary::Term]
|
243
|
+
# attr_reader :last_activity_date
|
244
|
+
#
|
245
|
+
# # The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :last_item_date
|
248
|
+
#
|
249
|
+
# # Last (real) name of this user. Synonyms include surname or family name.
|
250
|
+
# # @return [RDF::Vocabulary::Term]
|
251
|
+
# attr_reader :last_name
|
252
|
+
#
|
253
|
+
# # The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format.
|
254
|
+
# # @return [RDF::Vocabulary::Term]
|
255
|
+
# attr_reader :last_reply_date
|
256
|
+
#
|
257
|
+
# # Links to a later (newer) revision of this Item or Post.
|
258
|
+
# # @return [RDF::Vocabulary::Term]
|
259
|
+
# attr_reader :later_version
|
260
|
+
#
|
261
|
+
# # Links to the latest revision of this Item or Post.
|
262
|
+
# # @return [RDF::Vocabulary::Term]
|
263
|
+
# attr_reader :latest_version
|
264
|
+
#
|
265
|
+
# # Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc.
|
266
|
+
# # @return [RDF::Vocabulary::Term]
|
267
|
+
# attr_reader :likes
|
268
|
+
#
|
269
|
+
# # A URI of a document which contains this SIOC object.
|
270
|
+
# # @return [RDF::Vocabulary::Term]
|
271
|
+
# attr_reader :link
|
272
|
+
#
|
273
|
+
# # Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.
|
274
|
+
# # @return [RDF::Vocabulary::Term]
|
275
|
+
# attr_reader :links_to
|
276
|
+
#
|
277
|
+
# # A Usergroup that this UserAccount is a member of.
|
278
|
+
# # @return [RDF::Vocabulary::Term]
|
279
|
+
# attr_reader :member_of
|
280
|
+
#
|
281
|
+
# # Refers to a UserAccount that a particular Item mentions.
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :mentions
|
284
|
+
#
|
285
|
+
# # A Forum that a UserAccount is a moderator of.
|
286
|
+
# # @return [RDF::Vocabulary::Term]
|
287
|
+
# attr_reader :moderator_of
|
288
|
+
#
|
289
|
+
# # When this was modified, in ISO 8601 format.
|
290
|
+
# # @return [RDF::Vocabulary::Term]
|
291
|
+
# attr_reader :modified_at
|
292
|
+
#
|
293
|
+
# # A resource that this UserAccount has modified.
|
294
|
+
# # @return [RDF::Vocabulary::Term]
|
295
|
+
# attr_reader :modifier_of
|
296
|
+
#
|
297
|
+
# # The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.
|
298
|
+
# # @return [RDF::Vocabulary::Term]
|
299
|
+
# attr_reader :name
|
300
|
+
#
|
301
|
+
# # Next Item or Post in a given Container sorted by date.
|
302
|
+
# # @return [RDF::Vocabulary::Term]
|
303
|
+
# attr_reader :next_by_date
|
304
|
+
#
|
305
|
+
# # Links to the next revision of this Item or Post.
|
306
|
+
# # @return [RDF::Vocabulary::Term]
|
307
|
+
# attr_reader :next_version
|
308
|
+
#
|
309
|
+
# # A note associated with this resource, for example, if it has been edited by a UserAccount.
|
310
|
+
# # @return [RDF::Vocabulary::Term]
|
311
|
+
# attr_reader :note
|
312
|
+
#
|
313
|
+
# # The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.
|
314
|
+
# # @return [RDF::Vocabulary::Term]
|
315
|
+
# attr_reader :num_authors
|
316
|
+
#
|
317
|
+
# # The number of Posts (or Items) in a Forum (or a Container).
|
318
|
+
# # @return [RDF::Vocabulary::Term]
|
319
|
+
# attr_reader :num_items
|
320
|
+
#
|
321
|
+
# # The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.
|
322
|
+
# # @return [RDF::Vocabulary::Term]
|
323
|
+
# attr_reader :num_replies
|
324
|
+
#
|
325
|
+
# # The number of Threads (AKA discussion topics) in a Forum.
|
326
|
+
# # @return [RDF::Vocabulary::Term]
|
327
|
+
# attr_reader :num_threads
|
328
|
+
#
|
329
|
+
# # The number of times this Item, Thread, UserAccount profile, etc. has been viewed.
|
330
|
+
# # @return [RDF::Vocabulary::Term]
|
331
|
+
# attr_reader :num_views
|
332
|
+
#
|
333
|
+
# # A resource owned by a particular UserAccount, for example, a weblog or image gallery.
|
334
|
+
# # @return [RDF::Vocabulary::Term]
|
335
|
+
# attr_reader :owner_of
|
336
|
+
#
|
337
|
+
# # A child Container or Forum that this Container or Forum is a parent of.
|
338
|
+
# # @return [RDF::Vocabulary::Term]
|
339
|
+
# attr_reader :parent_of
|
340
|
+
#
|
341
|
+
# # A resource that the subject is a part of.
|
342
|
+
# # @return [RDF::Vocabulary::Term]
|
343
|
+
# attr_reader :part_of
|
344
|
+
#
|
345
|
+
# # Previous Item or Post in a given Container sorted by date.
|
346
|
+
# # @return [RDF::Vocabulary::Term]
|
347
|
+
# attr_reader :previous_by_date
|
348
|
+
#
|
349
|
+
# # Links to the previous revision of this Item or Post.
|
350
|
+
# # @return [RDF::Vocabulary::Term]
|
351
|
+
# attr_reader :previous_version
|
352
|
+
#
|
353
|
+
# # When this was read, in ISO 8601 format.
|
354
|
+
# # @return [RDF::Vocabulary::Term]
|
355
|
+
# attr_reader :read_at
|
356
|
+
#
|
357
|
+
# # Links either created explicitly or extracted implicitly on the HTML level from the Post.
|
358
|
+
# # @return [RDF::Vocabulary::Term]
|
359
|
+
# attr_reader :reference
|
360
|
+
#
|
361
|
+
# # Related resources for this resource, e.g. for Posts, perhaps determined implicitly from topics or references.
|
362
|
+
# # @return [RDF::Vocabulary::Term]
|
363
|
+
# attr_reader :related_to
|
364
|
+
#
|
365
|
+
# # Links to an Item or Post which this Item or Post is a reply to.
|
366
|
+
# # @return [RDF::Vocabulary::Term]
|
367
|
+
# attr_reader :reply_of
|
368
|
+
#
|
369
|
+
# # For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph).
|
370
|
+
# # @return [RDF::Vocabulary::Term]
|
371
|
+
# attr_reader :respond_to
|
372
|
+
#
|
373
|
+
# # A Role that has a scope of this resource.
|
374
|
+
# # @return [RDF::Vocabulary::Term]
|
375
|
+
# attr_reader :scope_of
|
376
|
+
#
|
377
|
+
# # For shared Items where there is a certain creator_of and an intermediary who shares or forwards it (e.g. as a sibling Item).
|
378
|
+
# # @return [RDF::Vocabulary::Term]
|
379
|
+
# attr_reader :shared_by
|
380
|
+
#
|
381
|
+
# # An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information).
|
382
|
+
# # @return [RDF::Vocabulary::Term]
|
383
|
+
# attr_reader :sibling
|
384
|
+
#
|
385
|
+
# # A resource which belongs to this data Space.
|
386
|
+
# # @return [RDF::Vocabulary::Term]
|
387
|
+
# attr_reader :space_of
|
388
|
+
#
|
389
|
+
# # Keyword(s) describing subject of the Post.
|
390
|
+
# # @return [RDF::Vocabulary::Term]
|
391
|
+
# attr_reader :subject
|
392
|
+
#
|
393
|
+
# # A Container that a UserAccount is subscribed to.
|
394
|
+
# # @return [RDF::Vocabulary::Term]
|
395
|
+
# attr_reader :subscriber_of
|
396
|
+
#
|
397
|
+
# # This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread.
|
398
|
+
# # @return [RDF::Vocabulary::Term]
|
399
|
+
# attr_reader :title
|
400
|
+
#
|
401
|
+
# # A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.
|
402
|
+
# # @return [RDF::Vocabulary::Term]
|
403
|
+
# attr_reader :topic
|
404
|
+
#
|
405
|
+
# # A Space that the Usergroup has access to.
|
406
|
+
# # @return [RDF::Vocabulary::Term]
|
407
|
+
# attr_reader :usergroup_of
|
408
|
+
#
|
9
409
|
# end
|
10
|
-
|
410
|
+
SIOC = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/ns#")) do
|
11
411
|
|
12
412
|
# Ontology definition
|
13
413
|
ontology :"http://rdfs.org/sioc/ns#",
|
@@ -19,61 +419,61 @@ module RDF::Vocab
|
|
19
419
|
|
20
420
|
# Class definitions
|
21
421
|
term :Community,
|
22
|
-
comment:
|
422
|
+
comment: "Community is a high-level concept that defines an online community and what it consists of.".freeze,
|
23
423
|
isDefinedBy: "sioc:".freeze,
|
24
424
|
label: "Community".freeze,
|
25
425
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze],
|
26
426
|
type: "owl:Class".freeze
|
27
427
|
term :Container,
|
28
|
-
comment:
|
428
|
+
comment: "An area in which content Items are contained.".freeze,
|
29
429
|
isDefinedBy: "sioc:".freeze,
|
30
430
|
label: "Container".freeze,
|
31
431
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
32
432
|
type: "owl:Class".freeze
|
33
433
|
term :Forum,
|
34
|
-
comment:
|
434
|
+
comment: "A discussion area on which Posts or entries are made.".freeze,
|
35
435
|
isDefinedBy: "sioc:".freeze,
|
36
436
|
label: "Forum".freeze,
|
37
437
|
subClassOf: "sioc:Container".freeze,
|
38
438
|
type: "owl:Class".freeze
|
39
439
|
term :Item,
|
40
|
-
comment:
|
440
|
+
comment: "An Item is something which can be in a Container.".freeze,
|
41
441
|
isDefinedBy: "sioc:".freeze,
|
42
442
|
label: "Item".freeze,
|
43
443
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
44
444
|
type: "owl:Class".freeze
|
45
445
|
term :Post,
|
46
|
-
comment:
|
446
|
+
comment: "An article or message that can be posted to a Forum.".freeze,
|
47
447
|
isDefinedBy: "sioc:".freeze,
|
48
448
|
label: "Post".freeze,
|
49
449
|
subClassOf: ["foaf:Document".freeze, "sioc:Item".freeze],
|
50
450
|
type: "owl:Class".freeze
|
51
451
|
term :Role,
|
52
|
-
comment:
|
452
|
+
comment: "A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.".freeze,
|
53
453
|
isDefinedBy: "sioc:".freeze,
|
54
454
|
label: "Role".freeze,
|
55
455
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
56
456
|
type: "owl:Class".freeze
|
57
457
|
term :Site,
|
58
|
-
comment:
|
458
|
+
comment: "A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space.".freeze,
|
59
459
|
isDefinedBy: "sioc:".freeze,
|
60
460
|
label: "Site".freeze,
|
61
461
|
subClassOf: "sioc:Space".freeze,
|
62
462
|
type: "owl:Class".freeze
|
63
463
|
term :Space,
|
64
|
-
comment:
|
464
|
+
comment: "A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.".freeze,
|
65
465
|
isDefinedBy: "sioc:".freeze,
|
66
466
|
label: "Space".freeze,
|
67
467
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
68
468
|
type: "owl:Class".freeze
|
69
469
|
term :Thread,
|
70
|
-
comment:
|
470
|
+
comment: "A container for a series of threaded discussion Posts or Items.".freeze,
|
71
471
|
isDefinedBy: "sioc:".freeze,
|
72
472
|
label: "Thread".freeze,
|
73
473
|
subClassOf: "sioc:Container".freeze,
|
74
474
|
type: "owl:Class".freeze
|
75
475
|
term :User,
|
76
|
-
comment:
|
476
|
+
comment: "UserAccount is now preferred. This is a deprecated class for a User in an online community site.".freeze,
|
77
477
|
equivalentClass: "sioc:UserAccount".freeze,
|
78
478
|
isDefinedBy: "sioc:".freeze,
|
79
479
|
label: "User".freeze,
|
@@ -82,14 +482,14 @@ module RDF::Vocab
|
|
82
482
|
subClassOf: "foaf:OnlineAccount".freeze,
|
83
483
|
type: "owl:DeprecatedClass".freeze
|
84
484
|
term :UserAccount,
|
85
|
-
comment:
|
485
|
+
comment: "A user account in an online community site.".freeze,
|
86
486
|
isDefinedBy: "sioc:".freeze,
|
87
487
|
label: "User Account".freeze,
|
88
488
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:Usergroup".freeze],
|
89
489
|
subClassOf: "foaf:OnlineAccount".freeze,
|
90
490
|
type: "owl:Class".freeze
|
91
491
|
term :Usergroup,
|
92
|
-
comment:
|
492
|
+
comment: "A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.".freeze,
|
93
493
|
isDefinedBy: "sioc:".freeze,
|
94
494
|
label: "Usergroup".freeze,
|
95
495
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze],
|
@@ -97,13 +497,13 @@ module RDF::Vocab
|
|
97
497
|
|
98
498
|
# Property definitions
|
99
499
|
property :about,
|
100
|
-
comment:
|
500
|
+
comment: "Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.".freeze,
|
101
501
|
domain: "sioc:Item".freeze,
|
102
502
|
isDefinedBy: "sioc:".freeze,
|
103
503
|
label: "about".freeze,
|
104
504
|
type: "owl:ObjectProperty".freeze
|
105
505
|
property :account_of,
|
106
|
-
comment:
|
506
|
+
comment: "Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.".freeze,
|
107
507
|
domain: "sioc:UserAccount".freeze,
|
108
508
|
inverseOf: "foaf:account".freeze,
|
109
509
|
isDefinedBy: "sioc:".freeze,
|
@@ -111,13 +511,13 @@ module RDF::Vocab
|
|
111
511
|
range: "foaf:Agent".freeze,
|
112
512
|
type: "owl:ObjectProperty".freeze
|
113
513
|
property :addressed_to,
|
114
|
-
comment:
|
514
|
+
comment: "Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.".freeze,
|
115
515
|
domain: "sioc:Item".freeze,
|
116
516
|
isDefinedBy: "sioc:".freeze,
|
117
517
|
label: "addressed to".freeze,
|
118
518
|
type: "owl:ObjectProperty".freeze
|
119
519
|
property :administrator_of,
|
120
|
-
comment:
|
520
|
+
comment: "A Site that the UserAccount is an administrator of.".freeze,
|
121
521
|
domain: "sioc:UserAccount".freeze,
|
122
522
|
inverseOf: "sioc:has_administrator".freeze,
|
123
523
|
isDefinedBy: "sioc:".freeze,
|
@@ -125,20 +525,20 @@ module RDF::Vocab
|
|
125
525
|
range: "sioc:Site".freeze,
|
126
526
|
type: "owl:ObjectProperty".freeze
|
127
527
|
property :attachment,
|
128
|
-
comment:
|
528
|
+
comment: "The URI of a file attached to an Item.".freeze,
|
129
529
|
domain: "sioc:Item".freeze,
|
130
530
|
isDefinedBy: "sioc:".freeze,
|
131
531
|
label: "attachment".freeze,
|
132
532
|
type: "owl:ObjectProperty".freeze
|
133
533
|
property :avatar,
|
134
|
-
comment:
|
534
|
+
comment: "An image or depiction used to represent this UserAccount.".freeze,
|
135
535
|
domain: "sioc:UserAccount".freeze,
|
136
536
|
isDefinedBy: "sioc:".freeze,
|
137
537
|
label: "avatar".freeze,
|
138
538
|
subPropertyOf: "foaf:depiction".freeze,
|
139
539
|
type: "owl:ObjectProperty".freeze
|
140
540
|
property :container_of,
|
141
|
-
comment:
|
541
|
+
comment: "An Item that this Container contains.".freeze,
|
142
542
|
domain: "sioc:Container".freeze,
|
143
543
|
inverseOf: "sioc:has_container".freeze,
|
144
544
|
isDefinedBy: "sioc:".freeze,
|
@@ -147,14 +547,14 @@ module RDF::Vocab
|
|
147
547
|
subPropertyOf: "dc:hasPart".freeze,
|
148
548
|
type: "owl:ObjectProperty".freeze
|
149
549
|
property :content,
|
150
|
-
comment:
|
550
|
+
comment: "The content of the Item in plain text format.".freeze,
|
151
551
|
domain: "sioc:Item".freeze,
|
152
552
|
isDefinedBy: "sioc:".freeze,
|
153
553
|
label: "content".freeze,
|
154
554
|
range: "rdfs:Literal".freeze,
|
155
555
|
type: "owl:DatatypeProperty".freeze
|
156
556
|
property :content_encoded,
|
157
|
-
comment:
|
557
|
+
comment: "The encoded content of the Post, contained in CDATA areas.".freeze,
|
158
558
|
domain: "sioc:Post".freeze,
|
159
559
|
isDefinedBy: "sioc:".freeze,
|
160
560
|
label: "content encoded".freeze,
|
@@ -162,7 +562,7 @@ module RDF::Vocab
|
|
162
562
|
range: "rdfs:Literal".freeze,
|
163
563
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
164
564
|
property :created_at,
|
165
|
-
comment:
|
565
|
+
comment: "When this was created, in ISO 8601 format.".freeze,
|
166
566
|
domain: "sioc:Post".freeze,
|
167
567
|
isDefinedBy: "sioc:".freeze,
|
168
568
|
label: "created at".freeze,
|
@@ -170,21 +570,21 @@ module RDF::Vocab
|
|
170
570
|
range: "rdfs:Literal".freeze,
|
171
571
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
172
572
|
property :creator_of,
|
173
|
-
comment:
|
573
|
+
comment: "A resource that the UserAccount is a creator of.".freeze,
|
174
574
|
domain: "sioc:UserAccount".freeze,
|
175
575
|
inverseOf: "sioc:has_creator".freeze,
|
176
576
|
isDefinedBy: "sioc:".freeze,
|
177
577
|
label: "creator of".freeze,
|
178
578
|
type: "owl:ObjectProperty".freeze
|
179
579
|
property :delivered_at,
|
180
|
-
comment:
|
580
|
+
comment: "When this was delivered, in ISO 8601 format.".freeze,
|
181
581
|
domain: "sioc:Item".freeze,
|
182
582
|
isDefinedBy: "sioc:".freeze,
|
183
583
|
label: "delivered at".freeze,
|
184
584
|
range: "rdfs:Literal".freeze,
|
185
585
|
type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze]
|
186
586
|
property :description,
|
187
|
-
comment:
|
587
|
+
comment: "The content of the Post.".freeze,
|
188
588
|
domain: "sioc:Post".freeze,
|
189
589
|
isDefinedBy: "sioc:".freeze,
|
190
590
|
label: "description".freeze,
|
@@ -192,14 +592,14 @@ module RDF::Vocab
|
|
192
592
|
range: "rdfs:Literal".freeze,
|
193
593
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
194
594
|
property :discussion_of,
|
195
|
-
comment:
|
595
|
+
comment: "The Item that this discussion is about.".freeze,
|
196
596
|
inverseOf: "sioc:has_discussion".freeze,
|
197
597
|
isDefinedBy: "sioc:".freeze,
|
198
598
|
label: "discussion of".freeze,
|
199
599
|
range: "sioc:Item".freeze,
|
200
600
|
type: "owl:ObjectProperty".freeze
|
201
601
|
property :earlier_version,
|
202
|
-
comment:
|
602
|
+
comment: "Links to a previous (older) revision of this Item or Post.".freeze,
|
203
603
|
domain: "sioc:Item".freeze,
|
204
604
|
inverseOf: "sioc:later_version".freeze,
|
205
605
|
isDefinedBy: "sioc:".freeze,
|
@@ -207,32 +607,32 @@ module RDF::Vocab
|
|
207
607
|
range: "sioc:Item".freeze,
|
208
608
|
type: "owl:TransitiveProperty".freeze
|
209
609
|
property :email,
|
210
|
-
comment:
|
610
|
+
comment: "An electronic mail address of the UserAccount.".freeze,
|
211
611
|
domain: "sioc:UserAccount".freeze,
|
212
612
|
isDefinedBy: "sioc:".freeze,
|
213
613
|
label: "email".freeze,
|
214
614
|
type: "owl:ObjectProperty".freeze
|
215
615
|
property :email_sha1,
|
216
|
-
comment:
|
616
|
+
comment: "An electronic mail address of the UserAccount, encoded using SHA1.".freeze,
|
217
617
|
domain: "sioc:UserAccount".freeze,
|
218
618
|
isDefinedBy: "sioc:".freeze,
|
219
619
|
label: "email sha1".freeze,
|
220
620
|
range: "rdfs:Literal".freeze,
|
221
621
|
type: "owl:DatatypeProperty".freeze
|
222
622
|
property :embeds_knowledge,
|
223
|
-
comment:
|
623
|
+
comment: "This links Items to embedded statements, facts and structured content.".freeze,
|
224
624
|
domain: "sioc:Item".freeze,
|
225
625
|
isDefinedBy: "sioc:".freeze,
|
226
626
|
label: "embeds knowledge".freeze,
|
227
627
|
range: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze,
|
228
628
|
type: "owl:ObjectProperty".freeze
|
229
629
|
property :feed,
|
230
|
-
comment:
|
630
|
+
comment: "A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).".freeze,
|
231
631
|
isDefinedBy: "sioc:".freeze,
|
232
632
|
label: "feed".freeze,
|
233
633
|
type: "owl:ObjectProperty".freeze
|
234
634
|
property :first_name,
|
235
|
-
comment:
|
635
|
+
comment: "First (real) name of this User. Synonyms include given name or christian name.".freeze,
|
236
636
|
domain: "sioc:UserAccount".freeze,
|
237
637
|
isDefinedBy: "sioc:".freeze,
|
238
638
|
label: "first name".freeze,
|
@@ -240,21 +640,21 @@ module RDF::Vocab
|
|
240
640
|
range: "rdfs:Literal".freeze,
|
241
641
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
242
642
|
property :follows,
|
243
|
-
comment:
|
643
|
+
comment: "Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).".freeze,
|
244
644
|
domain: "sioc:UserAccount".freeze,
|
245
645
|
isDefinedBy: "sioc:".freeze,
|
246
646
|
label: "follows".freeze,
|
247
647
|
range: "sioc:UserAccount".freeze,
|
248
648
|
type: "owl:ObjectProperty".freeze
|
249
649
|
property :function_of,
|
250
|
-
comment:
|
650
|
+
comment: "A UserAccount that has this Role.".freeze,
|
251
651
|
domain: "sioc:Role".freeze,
|
252
652
|
inverseOf: "sioc:has_function".freeze,
|
253
653
|
isDefinedBy: "sioc:".freeze,
|
254
654
|
label: "function of".freeze,
|
255
655
|
type: "owl:ObjectProperty".freeze
|
256
656
|
property :generator,
|
257
|
-
comment:
|
657
|
+
comment: "A URI for the application used to generate this Item.".freeze,
|
258
658
|
domain: "sioc:Item".freeze,
|
259
659
|
isDefinedBy: "sioc:".freeze,
|
260
660
|
label: "generator".freeze,
|
@@ -265,7 +665,7 @@ module RDF::Vocab
|
|
265
665
|
"owl:versionInfo": "This property has been renamed. Use sioc:usergroup_of instead.".freeze,
|
266
666
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
267
667
|
property :has_administrator,
|
268
|
-
comment:
|
668
|
+
comment: "A UserAccount that is an administrator of this Site.".freeze,
|
269
669
|
domain: "sioc:Site".freeze,
|
270
670
|
inverseOf: "sioc:administrator_of".freeze,
|
271
671
|
isDefinedBy: "sioc:".freeze,
|
@@ -273,7 +673,7 @@ module RDF::Vocab
|
|
273
673
|
range: "sioc:UserAccount".freeze,
|
274
674
|
type: "owl:ObjectProperty".freeze
|
275
675
|
property :has_container,
|
276
|
-
comment:
|
676
|
+
comment: "The Container to which this Item belongs.".freeze,
|
277
677
|
domain: "sioc:Item".freeze,
|
278
678
|
inverseOf: "sioc:container_of".freeze,
|
279
679
|
isDefinedBy: "sioc:".freeze,
|
@@ -282,21 +682,21 @@ module RDF::Vocab
|
|
282
682
|
subPropertyOf: "dc:partOf".freeze,
|
283
683
|
type: "owl:ObjectProperty".freeze
|
284
684
|
property :has_creator,
|
285
|
-
comment:
|
685
|
+
comment: "This is the UserAccount that made this resource.".freeze,
|
286
686
|
inverseOf: "sioc:creator_of".freeze,
|
287
687
|
isDefinedBy: "sioc:".freeze,
|
288
688
|
label: "has creator".freeze,
|
289
689
|
range: "sioc:UserAccount".freeze,
|
290
690
|
type: "owl:ObjectProperty".freeze
|
291
691
|
property :has_discussion,
|
292
|
-
comment:
|
692
|
+
comment: "A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document.".freeze,
|
293
693
|
domain: "sioc:Item".freeze,
|
294
694
|
inverseOf: "sioc:discussion_of".freeze,
|
295
695
|
isDefinedBy: "sioc:".freeze,
|
296
696
|
label: "has discussion".freeze,
|
297
697
|
type: "owl:ObjectProperty".freeze
|
298
698
|
property :has_function,
|
299
|
-
comment:
|
699
|
+
comment: "A Role that this UserAccount has.".freeze,
|
300
700
|
inverseOf: "sioc:function_of".freeze,
|
301
701
|
isDefinedBy: "sioc:".freeze,
|
302
702
|
label: "has function".freeze,
|
@@ -308,7 +708,7 @@ module RDF::Vocab
|
|
308
708
|
"owl:versionInfo": "This property has been renamed. Use sioc:has_usergroup instead.".freeze,
|
309
709
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
310
710
|
property :has_host,
|
311
|
-
comment:
|
711
|
+
comment: "The Site that hosts this Container.".freeze,
|
312
712
|
domain: "sioc:Container".freeze,
|
313
713
|
inverseOf: "sioc:host_of".freeze,
|
314
714
|
isDefinedBy: "sioc:".freeze,
|
@@ -317,7 +717,7 @@ module RDF::Vocab
|
|
317
717
|
subPropertyOf: "sioc:has_space".freeze,
|
318
718
|
type: "owl:ObjectProperty".freeze
|
319
719
|
property :has_member,
|
320
|
-
comment:
|
720
|
+
comment: "A UserAccount that is a member of this Usergroup.".freeze,
|
321
721
|
domain: "sioc:Usergroup".freeze,
|
322
722
|
inverseOf: "sioc:member_of".freeze,
|
323
723
|
isDefinedBy: "sioc:".freeze,
|
@@ -325,7 +725,7 @@ module RDF::Vocab
|
|
325
725
|
range: "sioc:UserAccount".freeze,
|
326
726
|
type: "owl:ObjectProperty".freeze
|
327
727
|
property :has_moderator,
|
328
|
-
comment:
|
728
|
+
comment: "A UserAccount that is a moderator of this Forum.".freeze,
|
329
729
|
domain: "sioc:Forum".freeze,
|
330
730
|
inverseOf: "sioc:moderator_of".freeze,
|
331
731
|
isDefinedBy: "sioc:".freeze,
|
@@ -333,21 +733,21 @@ module RDF::Vocab
|
|
333
733
|
range: "sioc:UserAccount".freeze,
|
334
734
|
type: "owl:ObjectProperty".freeze
|
335
735
|
property :has_modifier,
|
336
|
-
comment:
|
736
|
+
comment: "A UserAccount that modified this resource (e.g. Item, Container, Space).".freeze,
|
337
737
|
inverseOf: "sioc:modifier_of".freeze,
|
338
738
|
isDefinedBy: "sioc:".freeze,
|
339
739
|
label: "has modifier".freeze,
|
340
740
|
range: "sioc:UserAccount".freeze,
|
341
741
|
type: "owl:ObjectProperty".freeze
|
342
742
|
property :has_owner,
|
343
|
-
comment:
|
743
|
+
comment: "A UserAccount that this resource is owned by.".freeze,
|
344
744
|
inverseOf: "sioc:owner_of".freeze,
|
345
745
|
isDefinedBy: "sioc:".freeze,
|
346
746
|
label: "has owner".freeze,
|
347
747
|
range: "sioc:UserAccount".freeze,
|
348
748
|
type: "owl:ObjectProperty".freeze
|
349
749
|
property :has_parent,
|
350
|
-
comment:
|
750
|
+
comment: "A Container or Forum that this Container or Forum is a child of.".freeze,
|
351
751
|
domain: "sioc:Container".freeze,
|
352
752
|
inverseOf: "sioc:parent_of".freeze,
|
353
753
|
isDefinedBy: "sioc:".freeze,
|
@@ -356,14 +756,14 @@ module RDF::Vocab
|
|
356
756
|
subPropertyOf: "dc:partOf".freeze,
|
357
757
|
type: "owl:ObjectProperty".freeze
|
358
758
|
property :has_part,
|
359
|
-
comment:
|
759
|
+
comment: "An resource that is a part of this subject.".freeze,
|
360
760
|
inverseOf: "sioc:part_of".freeze,
|
361
761
|
isDefinedBy: "sioc:".freeze,
|
362
762
|
label: "has part".freeze,
|
363
763
|
"owl:versionInfo": "This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.".freeze,
|
364
764
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
365
765
|
property :has_reply,
|
366
|
-
comment:
|
766
|
+
comment: "Points to an Item or Post that is a reply or response to this Item or Post.".freeze,
|
367
767
|
domain: "sioc:Item".freeze,
|
368
768
|
inverseOf: "sioc:reply_of".freeze,
|
369
769
|
isDefinedBy: "sioc:".freeze,
|
@@ -372,14 +772,14 @@ module RDF::Vocab
|
|
372
772
|
subPropertyOf: "sioc:related_to".freeze,
|
373
773
|
type: "owl:ObjectProperty".freeze
|
374
774
|
property :has_scope,
|
375
|
-
comment:
|
775
|
+
comment: "A resource that this Role applies to.".freeze,
|
376
776
|
domain: "sioc:Role".freeze,
|
377
777
|
inverseOf: "sioc:scope_of".freeze,
|
378
778
|
isDefinedBy: "sioc:".freeze,
|
379
779
|
label: "has scope".freeze,
|
380
780
|
type: "owl:ObjectProperty".freeze
|
381
781
|
property :has_space,
|
382
|
-
comment:
|
782
|
+
comment: "A data Space which this resource is a part of.".freeze,
|
383
783
|
inverseOf: "sioc:space_of".freeze,
|
384
784
|
isDefinedBy: "sioc:".freeze,
|
385
785
|
label: "has space".freeze,
|
@@ -387,7 +787,7 @@ module RDF::Vocab
|
|
387
787
|
subPropertyOf: "dc:partOf".freeze,
|
388
788
|
type: "owl:ObjectProperty".freeze
|
389
789
|
property :has_subscriber,
|
390
|
-
comment:
|
790
|
+
comment: "A UserAccount that is subscribed to this Container.".freeze,
|
391
791
|
domain: "sioc:Container".freeze,
|
392
792
|
inverseOf: "sioc:subscriber_of".freeze,
|
393
793
|
isDefinedBy: "sioc:".freeze,
|
@@ -396,7 +796,7 @@ module RDF::Vocab
|
|
396
796
|
"rdfs:seeAlso": "sioc:feed".freeze,
|
397
797
|
type: "owl:ObjectProperty".freeze
|
398
798
|
property :has_usergroup,
|
399
|
-
comment:
|
799
|
+
comment: "Points to a Usergroup that has certain access to this Space.".freeze,
|
400
800
|
domain: "sioc:Space".freeze,
|
401
801
|
inverseOf: "sioc:usergroup_of".freeze,
|
402
802
|
isDefinedBy: "sioc:".freeze,
|
@@ -404,7 +804,7 @@ module RDF::Vocab
|
|
404
804
|
range: "sioc:Usergroup".freeze,
|
405
805
|
type: "owl:ObjectProperty".freeze
|
406
806
|
property :host_of,
|
407
|
-
comment:
|
807
|
+
comment: "A Container that is hosted on this Site.".freeze,
|
408
808
|
domain: "sioc:Site".freeze,
|
409
809
|
inverseOf: "sioc:has_host".freeze,
|
410
810
|
isDefinedBy: "sioc:".freeze,
|
@@ -413,26 +813,26 @@ module RDF::Vocab
|
|
413
813
|
subPropertyOf: "sioc:space_of".freeze,
|
414
814
|
type: "owl:ObjectProperty".freeze
|
415
815
|
property :id,
|
416
|
-
comment:
|
816
|
+
comment: "An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site.".freeze,
|
417
817
|
isDefinedBy: "sioc:".freeze,
|
418
818
|
label: "id".freeze,
|
419
819
|
range: "rdfs:Literal".freeze,
|
420
820
|
type: "owl:DatatypeProperty".freeze
|
421
821
|
property :ip_address,
|
422
|
-
comment:
|
822
|
+
comment: "The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.".freeze,
|
423
823
|
isDefinedBy: "sioc:".freeze,
|
424
824
|
label: "ip address".freeze,
|
425
825
|
range: "rdfs:Literal".freeze,
|
426
826
|
type: "owl:DatatypeProperty".freeze
|
427
827
|
property :last_activity_date,
|
428
|
-
comment:
|
828
|
+
comment: "The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc.".freeze,
|
429
829
|
isDefinedBy: "sioc:".freeze,
|
430
830
|
label: "last activity date".freeze,
|
431
831
|
range: "rdfs:Literal".freeze,
|
432
832
|
subPropertyOf: "dc:date".freeze,
|
433
833
|
type: "owl:DatatypeProperty".freeze
|
434
834
|
property :last_item_date,
|
435
|
-
comment:
|
835
|
+
comment: "The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.".freeze,
|
436
836
|
domain: "sioc:Container".freeze,
|
437
837
|
isDefinedBy: "sioc:".freeze,
|
438
838
|
label: "last item date".freeze,
|
@@ -440,7 +840,7 @@ module RDF::Vocab
|
|
440
840
|
subPropertyOf: "dc:date".freeze,
|
441
841
|
type: "owl:DatatypeProperty".freeze
|
442
842
|
property :last_name,
|
443
|
-
comment:
|
843
|
+
comment: "Last (real) name of this user. Synonyms include surname or family name.".freeze,
|
444
844
|
domain: "sioc:UserAccount".freeze,
|
445
845
|
isDefinedBy: "sioc:".freeze,
|
446
846
|
label: "last name".freeze,
|
@@ -448,14 +848,14 @@ module RDF::Vocab
|
|
448
848
|
range: "rdfs:Literal".freeze,
|
449
849
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
450
850
|
property :last_reply_date,
|
451
|
-
comment:
|
851
|
+
comment: "The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format.".freeze,
|
452
852
|
isDefinedBy: "sioc:".freeze,
|
453
853
|
label: "last reply date".freeze,
|
454
854
|
range: "rdfs:Literal".freeze,
|
455
855
|
subPropertyOf: "dc:date".freeze,
|
456
856
|
type: "owl:DatatypeProperty".freeze
|
457
857
|
property :later_version,
|
458
|
-
comment:
|
858
|
+
comment: "Links to a later (newer) revision of this Item or Post.".freeze,
|
459
859
|
domain: "sioc:Item".freeze,
|
460
860
|
inverseOf: "sioc:earlier_version".freeze,
|
461
861
|
isDefinedBy: "sioc:".freeze,
|
@@ -463,30 +863,30 @@ module RDF::Vocab
|
|
463
863
|
range: "sioc:Item".freeze,
|
464
864
|
type: "owl:TransitiveProperty".freeze
|
465
865
|
property :latest_version,
|
466
|
-
comment:
|
866
|
+
comment: "Links to the latest revision of this Item or Post.".freeze,
|
467
867
|
domain: "sioc:Item".freeze,
|
468
868
|
isDefinedBy: "sioc:".freeze,
|
469
869
|
label: "latest version".freeze,
|
470
870
|
range: "sioc:Item".freeze,
|
471
871
|
type: "owl:ObjectProperty".freeze
|
472
872
|
property :likes,
|
473
|
-
comment:
|
873
|
+
comment: "Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc.".freeze,
|
474
874
|
isDefinedBy: "sioc:".freeze,
|
475
875
|
label: "likes".freeze,
|
476
876
|
type: "owl:ObjectProperty".freeze
|
477
877
|
property :link,
|
478
|
-
comment:
|
878
|
+
comment: "A URI of a document which contains this SIOC object.".freeze,
|
479
879
|
isDefinedBy: "sioc:".freeze,
|
480
880
|
label: "link".freeze,
|
481
881
|
type: "owl:ObjectProperty".freeze
|
482
882
|
property :links_to,
|
483
|
-
comment:
|
883
|
+
comment: "Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.".freeze,
|
484
884
|
isDefinedBy: "sioc:".freeze,
|
485
885
|
label: "links to".freeze,
|
486
886
|
subPropertyOf: "dc:references".freeze,
|
487
887
|
type: "owl:ObjectProperty".freeze
|
488
888
|
property :member_of,
|
489
|
-
comment:
|
889
|
+
comment: "A Usergroup that this UserAccount is a member of.".freeze,
|
490
890
|
domain: "sioc:UserAccount".freeze,
|
491
891
|
inverseOf: "sioc:has_member".freeze,
|
492
892
|
isDefinedBy: "sioc:".freeze,
|
@@ -494,14 +894,14 @@ module RDF::Vocab
|
|
494
894
|
range: "sioc:Usergroup".freeze,
|
495
895
|
type: "owl:ObjectProperty".freeze
|
496
896
|
property :mentions,
|
497
|
-
comment:
|
897
|
+
comment: "Refers to a UserAccount that a particular Item mentions.".freeze,
|
498
898
|
domain: "sioc:Item".freeze,
|
499
899
|
isDefinedBy: "sioc:".freeze,
|
500
900
|
label: "mentions".freeze,
|
501
901
|
range: "sioc:UserAccount".freeze,
|
502
902
|
type: "owl:ObjectProperty".freeze
|
503
903
|
property :moderator_of,
|
504
|
-
comment:
|
904
|
+
comment: "A Forum that a UserAccount is a moderator of.".freeze,
|
505
905
|
domain: "sioc:UserAccount".freeze,
|
506
906
|
inverseOf: "sioc:has_moderator".freeze,
|
507
907
|
isDefinedBy: "sioc:".freeze,
|
@@ -509,7 +909,7 @@ module RDF::Vocab
|
|
509
909
|
range: "sioc:Forum".freeze,
|
510
910
|
type: "owl:ObjectProperty".freeze
|
511
911
|
property :modified_at,
|
512
|
-
comment:
|
912
|
+
comment: "When this was modified, in ISO 8601 format.".freeze,
|
513
913
|
domain: "sioc:Post".freeze,
|
514
914
|
isDefinedBy: "sioc:".freeze,
|
515
915
|
label: "modified at".freeze,
|
@@ -517,20 +917,20 @@ module RDF::Vocab
|
|
517
917
|
range: "rdfs:Literal".freeze,
|
518
918
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
519
919
|
property :modifier_of,
|
520
|
-
comment:
|
920
|
+
comment: "A resource that this UserAccount has modified.".freeze,
|
521
921
|
domain: "sioc:UserAccount".freeze,
|
522
922
|
inverseOf: "sioc:has_modifier".freeze,
|
523
923
|
isDefinedBy: "sioc:".freeze,
|
524
924
|
label: "modifier of".freeze,
|
525
925
|
type: "owl:ObjectProperty".freeze
|
526
926
|
property :name,
|
527
|
-
comment:
|
927
|
+
comment: "The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.".freeze,
|
528
928
|
isDefinedBy: "sioc:".freeze,
|
529
929
|
label: "name".freeze,
|
530
930
|
range: "rdfs:Literal".freeze,
|
531
931
|
type: "owl:DatatypeProperty".freeze
|
532
932
|
property :next_by_date,
|
533
|
-
comment:
|
933
|
+
comment: "Next Item or Post in a given Container sorted by date.".freeze,
|
534
934
|
domain: "sioc:Item".freeze,
|
535
935
|
inverseOf: "sioc:previous_by_date".freeze,
|
536
936
|
isDefinedBy: "sioc:".freeze,
|
@@ -538,7 +938,7 @@ module RDF::Vocab
|
|
538
938
|
range: "sioc:Item".freeze,
|
539
939
|
type: "owl:ObjectProperty".freeze
|
540
940
|
property :next_version,
|
541
|
-
comment:
|
941
|
+
comment: "Links to the next revision of this Item or Post.".freeze,
|
542
942
|
domain: "sioc:Item".freeze,
|
543
943
|
inverseOf: "sioc:previous_version".freeze,
|
544
944
|
isDefinedBy: "sioc:".freeze,
|
@@ -547,52 +947,52 @@ module RDF::Vocab
|
|
547
947
|
subPropertyOf: "sioc:later_version".freeze,
|
548
948
|
type: "owl:ObjectProperty".freeze
|
549
949
|
property :note,
|
550
|
-
comment:
|
950
|
+
comment: "A note associated with this resource, for example, if it has been edited by a UserAccount.".freeze,
|
551
951
|
isDefinedBy: "sioc:".freeze,
|
552
952
|
label: "note".freeze,
|
553
953
|
range: "rdfs:Literal".freeze,
|
554
954
|
type: "owl:DatatypeProperty".freeze
|
555
955
|
property :num_authors,
|
556
|
-
comment:
|
956
|
+
comment: "The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.".freeze,
|
557
957
|
isDefinedBy: "sioc:".freeze,
|
558
958
|
label: "num authors".freeze,
|
559
959
|
range: "xsd:nonNegativeInteger".freeze,
|
560
960
|
type: "owl:DatatypeProperty".freeze
|
561
961
|
property :num_items,
|
562
|
-
comment:
|
962
|
+
comment: "The number of Posts (or Items) in a Forum (or a Container).".freeze,
|
563
963
|
domain: "sioc:Container".freeze,
|
564
964
|
isDefinedBy: "sioc:".freeze,
|
565
965
|
label: "num items".freeze,
|
566
966
|
range: "xsd:nonNegativeInteger".freeze,
|
567
967
|
type: "owl:DatatypeProperty".freeze
|
568
968
|
property :num_replies,
|
569
|
-
comment:
|
969
|
+
comment: "The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.".freeze,
|
570
970
|
isDefinedBy: "sioc:".freeze,
|
571
971
|
label: "num replies".freeze,
|
572
972
|
range: "xsd:nonNegativeInteger".freeze,
|
573
973
|
type: "owl:DatatypeProperty".freeze
|
574
974
|
property :num_threads,
|
575
|
-
comment:
|
975
|
+
comment: "The number of Threads (AKA discussion topics) in a Forum.".freeze,
|
576
976
|
domain: "sioc:Forum".freeze,
|
577
977
|
isDefinedBy: "sioc:".freeze,
|
578
978
|
label: "num threads".freeze,
|
579
979
|
range: "xsd:nonNegativeInteger".freeze,
|
580
980
|
type: "owl:DatatypeProperty".freeze
|
581
981
|
property :num_views,
|
582
|
-
comment:
|
982
|
+
comment: "The number of times this Item, Thread, UserAccount profile, etc. has been viewed.".freeze,
|
583
983
|
isDefinedBy: "sioc:".freeze,
|
584
984
|
label: "num views".freeze,
|
585
985
|
range: "xsd:nonNegativeInteger".freeze,
|
586
986
|
type: "owl:DatatypeProperty".freeze
|
587
987
|
property :owner_of,
|
588
|
-
comment:
|
988
|
+
comment: "A resource owned by a particular UserAccount, for example, a weblog or image gallery.".freeze,
|
589
989
|
domain: "sioc:UserAccount".freeze,
|
590
990
|
inverseOf: "sioc:has_owner".freeze,
|
591
991
|
isDefinedBy: "sioc:".freeze,
|
592
992
|
label: "owner of".freeze,
|
593
993
|
type: "owl:ObjectProperty".freeze
|
594
994
|
property :parent_of,
|
595
|
-
comment:
|
995
|
+
comment: "A child Container or Forum that this Container or Forum is a parent of.".freeze,
|
596
996
|
domain: "sioc:Container".freeze,
|
597
997
|
inverseOf: "sioc:has_parent".freeze,
|
598
998
|
isDefinedBy: "sioc:".freeze,
|
@@ -601,14 +1001,14 @@ module RDF::Vocab
|
|
601
1001
|
subPropertyOf: "dc:hasPart".freeze,
|
602
1002
|
type: "owl:ObjectProperty".freeze
|
603
1003
|
property :part_of,
|
604
|
-
comment:
|
1004
|
+
comment: "A resource that the subject is a part of.".freeze,
|
605
1005
|
inverseOf: "sioc:has_part".freeze,
|
606
1006
|
isDefinedBy: "sioc:".freeze,
|
607
1007
|
label: "part of".freeze,
|
608
1008
|
"owl:versionInfo": "This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.".freeze,
|
609
1009
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
610
1010
|
property :previous_by_date,
|
611
|
-
comment:
|
1011
|
+
comment: "Previous Item or Post in a given Container sorted by date.".freeze,
|
612
1012
|
domain: "sioc:Item".freeze,
|
613
1013
|
inverseOf: "sioc:next_by_date".freeze,
|
614
1014
|
isDefinedBy: "sioc:".freeze,
|
@@ -616,7 +1016,7 @@ module RDF::Vocab
|
|
616
1016
|
range: "sioc:Item".freeze,
|
617
1017
|
type: "owl:ObjectProperty".freeze
|
618
1018
|
property :previous_version,
|
619
|
-
comment:
|
1019
|
+
comment: "Links to the previous revision of this Item or Post.".freeze,
|
620
1020
|
domain: "sioc:Item".freeze,
|
621
1021
|
inverseOf: "sioc:next_version".freeze,
|
622
1022
|
isDefinedBy: "sioc:".freeze,
|
@@ -625,26 +1025,26 @@ module RDF::Vocab
|
|
625
1025
|
subPropertyOf: "sioc:earlier_version".freeze,
|
626
1026
|
type: "owl:ObjectProperty".freeze
|
627
1027
|
property :read_at,
|
628
|
-
comment:
|
1028
|
+
comment: "When this was read, in ISO 8601 format.".freeze,
|
629
1029
|
domain: "sioc:Item".freeze,
|
630
1030
|
isDefinedBy: "sioc:".freeze,
|
631
1031
|
label: "read at".freeze,
|
632
1032
|
range: "rdfs:Literal".freeze,
|
633
1033
|
type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze]
|
634
1034
|
property :reference,
|
635
|
-
comment:
|
1035
|
+
comment: "Links either created explicitly or extracted implicitly on the HTML level from the Post.".freeze,
|
636
1036
|
domain: "sioc:Post".freeze,
|
637
1037
|
isDefinedBy: "sioc:".freeze,
|
638
1038
|
label: "reference".freeze,
|
639
1039
|
"owl:versionInfo": "Renamed to sioc:links_to.".freeze,
|
640
1040
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
641
1041
|
property :related_to,
|
642
|
-
comment:
|
1042
|
+
comment: "Related resources for this resource, e.g. for Posts, perhaps determined implicitly from topics or references.".freeze,
|
643
1043
|
isDefinedBy: "sioc:".freeze,
|
644
1044
|
label: "related to".freeze,
|
645
1045
|
type: "owl:ObjectProperty".freeze
|
646
1046
|
property :reply_of,
|
647
|
-
comment:
|
1047
|
+
comment: "Links to an Item or Post which this Item or Post is a reply to.".freeze,
|
648
1048
|
domain: "sioc:Item".freeze,
|
649
1049
|
inverseOf: "sioc:has_reply".freeze,
|
650
1050
|
isDefinedBy: "sioc:".freeze,
|
@@ -653,20 +1053,20 @@ module RDF::Vocab
|
|
653
1053
|
subPropertyOf: "sioc:related_to".freeze,
|
654
1054
|
type: "owl:ObjectProperty".freeze
|
655
1055
|
property :respond_to,
|
656
|
-
comment:
|
1056
|
+
comment: "For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph).".freeze,
|
657
1057
|
domain: "sioc:Item".freeze,
|
658
1058
|
isDefinedBy: "sioc:".freeze,
|
659
1059
|
label: "respond to".freeze,
|
660
1060
|
type: "owl:ObjectProperty".freeze
|
661
1061
|
property :scope_of,
|
662
|
-
comment:
|
1062
|
+
comment: "A Role that has a scope of this resource.".freeze,
|
663
1063
|
inverseOf: "sioc:has_scope".freeze,
|
664
1064
|
isDefinedBy: "sioc:".freeze,
|
665
1065
|
label: "scope of".freeze,
|
666
1066
|
range: "sioc:Role".freeze,
|
667
1067
|
type: "owl:ObjectProperty".freeze
|
668
1068
|
property :shared_by,
|
669
|
-
comment:
|
1069
|
+
comment: "For shared Items where there is a certain creator_of and an intermediary who shares or forwards it (e.g. as a sibling Item).".freeze,
|
670
1070
|
domain: "sioc:Item".freeze,
|
671
1071
|
isDefinedBy: "sioc:".freeze,
|
672
1072
|
label: "shared by".freeze,
|
@@ -674,14 +1074,14 @@ module RDF::Vocab
|
|
674
1074
|
"rdfs:seeAlso": "sioc:sibling".freeze,
|
675
1075
|
type: "owl:ObjectProperty".freeze
|
676
1076
|
property :sibling,
|
677
|
-
comment:
|
1077
|
+
comment: "An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information).".freeze,
|
678
1078
|
domain: "sioc:Item".freeze,
|
679
1079
|
isDefinedBy: "sioc:".freeze,
|
680
1080
|
label: "sibling".freeze,
|
681
1081
|
range: "sioc:Item".freeze,
|
682
1082
|
type: "owl:SymmetricProperty".freeze
|
683
1083
|
property :space_of,
|
684
|
-
comment:
|
1084
|
+
comment: "A resource which belongs to this data Space.".freeze,
|
685
1085
|
domain: "sioc:Space".freeze,
|
686
1086
|
inverseOf: "sioc:has_space".freeze,
|
687
1087
|
isDefinedBy: "sioc:".freeze,
|
@@ -689,7 +1089,7 @@ module RDF::Vocab
|
|
689
1089
|
subPropertyOf: "dc:hasPart".freeze,
|
690
1090
|
type: "owl:ObjectProperty".freeze
|
691
1091
|
property :subject,
|
692
|
-
comment:
|
1092
|
+
comment: "Keyword(s) describing subject of the Post.".freeze,
|
693
1093
|
domain: "sioc:Post".freeze,
|
694
1094
|
isDefinedBy: "sioc:".freeze,
|
695
1095
|
label: "subject".freeze,
|
@@ -697,7 +1097,7 @@ module RDF::Vocab
|
|
697
1097
|
range: "rdfs:Literal".freeze,
|
698
1098
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
699
1099
|
property :subscriber_of,
|
700
|
-
comment:
|
1100
|
+
comment: "A Container that a UserAccount is subscribed to.".freeze,
|
701
1101
|
domain: "sioc:UserAccount".freeze,
|
702
1102
|
inverseOf: "sioc:has_subscriber".freeze,
|
703
1103
|
isDefinedBy: "sioc:".freeze,
|
@@ -706,7 +1106,7 @@ module RDF::Vocab
|
|
706
1106
|
"rdfs:seeAlso": "sioc:feed".freeze,
|
707
1107
|
type: "owl:ObjectProperty".freeze
|
708
1108
|
property :title,
|
709
|
-
comment:
|
1109
|
+
comment: "This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread.".freeze,
|
710
1110
|
domain: "sioc:Post".freeze,
|
711
1111
|
isDefinedBy: "sioc:".freeze,
|
712
1112
|
label: "title".freeze,
|
@@ -714,13 +1114,13 @@ module RDF::Vocab
|
|
714
1114
|
range: "rdfs:Literal".freeze,
|
715
1115
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
716
1116
|
property :topic,
|
717
|
-
comment:
|
1117
|
+
comment: "A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.".freeze,
|
718
1118
|
isDefinedBy: "sioc:".freeze,
|
719
1119
|
label: "topic".freeze,
|
720
1120
|
subPropertyOf: "dc:subject".freeze,
|
721
1121
|
type: "owl:ObjectProperty".freeze
|
722
1122
|
property :usergroup_of,
|
723
|
-
comment:
|
1123
|
+
comment: "A Space that the Usergroup has access to.".freeze,
|
724
1124
|
domain: "sioc:Usergroup".freeze,
|
725
1125
|
inverseOf: "sioc:has_usergroup".freeze,
|
726
1126
|
isDefinedBy: "sioc:".freeze,
|