rdf 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CREDITS +1 -0
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +10 -48
  5. data/lib/rdf/cli/vocab-loader.rb +78 -142
  6. data/lib/rdf/mixin/enumerable.rb +25 -0
  7. data/lib/rdf/mixin/mutable.rb +3 -0
  8. data/lib/rdf/model/graph.rb +1 -1
  9. data/lib/rdf/model/node.rb +25 -2
  10. data/lib/rdf/model/statement.rb +20 -12
  11. data/lib/rdf/model/uri.rb +11 -2
  12. data/lib/rdf/nquads.rb +8 -6
  13. data/lib/rdf/ntriples/writer.rb +14 -10
  14. data/lib/rdf/query/pattern.rb +10 -8
  15. data/lib/rdf/reader.rb +11 -2
  16. data/lib/rdf/repository.rb +1 -1
  17. data/lib/rdf/vocab.rb +396 -96
  18. data/lib/rdf/vocab/cc.rb +117 -25
  19. data/lib/rdf/vocab/cert.rb +230 -117
  20. data/lib/rdf/vocab/dc.rb +930 -233
  21. data/lib/rdf/vocab/dc11.rb +151 -37
  22. data/lib/rdf/vocab/doap.rb +326 -114
  23. data/lib/rdf/vocab/exif.rb +930 -533
  24. data/lib/rdf/vocab/foaf.rb +602 -346
  25. data/lib/rdf/vocab/geo.rb +139 -33
  26. data/lib/rdf/vocab/gr.rb +1551 -1084
  27. data/lib/rdf/vocab/ht.rb +319 -0
  28. data/lib/rdf/vocab/ical.rb +507 -349
  29. data/lib/rdf/vocab/ma.rb +504 -280
  30. data/lib/rdf/vocab/mo.rb +2425 -876
  31. data/lib/rdf/vocab/og.rb +178 -90
  32. data/lib/rdf/vocab/owl.rb +513 -219
  33. data/lib/rdf/vocab/prov.rb +1557 -479
  34. data/lib/rdf/vocab/rdfs.rb +107 -31
  35. data/lib/rdf/vocab/rdfv.rb +165 -0
  36. data/lib/rdf/vocab/rsa.rb +61 -18
  37. data/lib/rdf/vocab/rss.rb +55 -22
  38. data/lib/rdf/vocab/schema.rb +8590 -3995
  39. data/lib/rdf/vocab/sioc.rb +657 -218
  40. data/lib/rdf/vocab/skos.rb +227 -134
  41. data/lib/rdf/vocab/skosxl.rb +47 -33
  42. data/lib/rdf/vocab/vcard.rb +693 -327
  43. data/lib/rdf/vocab/void.rb +175 -132
  44. data/lib/rdf/vocab/vs.rb +27 -0
  45. data/lib/rdf/vocab/wdrs.rb +123 -119
  46. data/lib/rdf/vocab/wot.rb +155 -45
  47. data/lib/rdf/vocab/xhtml.rb +2 -1
  48. data/lib/rdf/vocab/xhv.rb +496 -231
  49. data/lib/rdf/vocab/xsd.rb +382 -53
  50. data/lib/rdf/writer.rb +8 -4
  51. metadata +5 -4
  52. data/lib/rdf/vocab/http.rb +0 -84
  53. data/lib/rdf/vocab/v.rb +0 -154
@@ -1,228 +1,667 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # This file generated automatically using vocab-fetch from http://rdfs.org/sioc/ns#
2
3
  require 'rdf'
3
4
  module RDF
4
5
  class SIOC < StrictVocabulary("http://rdfs.org/sioc/ns#")
5
6
 
6
7
  # Class definitions
7
- property :Community, :label => 'Community', :comment =>
8
- %(Community is a high-level concept that defines an online
9
- community and what it consists of.)
10
- property :Container, :label => 'Container', :comment =>
11
- %(An area in which content Items are contained.)
12
- property :Forum, :label => 'Forum', :comment =>
13
- %(A discussion area on which Posts or entries are made.)
14
- property :Item, :label => 'Item', :comment =>
15
- %(An Item is something which can be in a Container.)
16
- property :Post, :label => 'Post', :comment =>
17
- %(An article or message that can be posted to a Forum.)
18
- property :Role, :label => 'Role', :comment =>
19
- %(A Role is a function of a UserAccount within a scope of a
20
- particular Forum, Site, etc.)
21
- property :Site, :label => 'Site', :comment =>
22
- %(A Site can be the location of an online community or set of
23
- communities, with UserAccounts and Usergroups creating Items
24
- in a set of Containers. It can be thought of as a
25
- web-accessible data Space.)
26
- property :Space, :label => 'Space', :comment =>
27
- %(A Space is a place where data resides, e.g. on a website,
28
- desktop, fileshare, etc.)
29
- property :Thread, :label => 'Thread', :comment =>
30
- %(A container for a series of threaded discussion Posts or
31
- Items.)
32
- property :UserAccount, :label => 'User Account', :comment =>
33
- %(A user account in an online community site.)
34
- property :Usergroup, :label => 'Usergroup', :comment =>
35
- %(A set of UserAccounts whose owners have a common purpose or
36
- interest. Can be used for access control purposes.)
8
+ term :Community,
9
+ comment: %(Community is a high-level concept that defines an online community and what it consists of.).freeze,
10
+ label: "Community".freeze,
11
+ "owl:disjointWith" => %(sioc:Item).freeze,
12
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
13
+ type: "owl:Class".freeze
14
+ term :Container,
15
+ comment: %(An area in which content Items are contained.).freeze,
16
+ label: "Container".freeze,
17
+ "owl:disjointWith" => %(sioc:Item).freeze,
18
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
19
+ type: "owl:Class".freeze
20
+ term :Forum,
21
+ comment: %(A discussion area on which Posts or entries are made.).freeze,
22
+ label: "Forum".freeze,
23
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
24
+ subClassOf: "sioc:Container".freeze,
25
+ type: "owl:Class".freeze
26
+ term :Item,
27
+ comment: %(An Item is something which can be in a Container.).freeze,
28
+ label: "Item".freeze,
29
+ "owl:disjointWith" => %(sioc:Container).freeze,
30
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
31
+ type: "owl:Class".freeze
32
+ term :Post,
33
+ comment: %(An article or message that can be posted to a Forum.).freeze,
34
+ label: "Post".freeze,
35
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
36
+ subClassOf: "sioc:Item".freeze,
37
+ type: "owl:Class".freeze
38
+ term :Role,
39
+ comment: %(A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.).freeze,
40
+ label: "Role".freeze,
41
+ "owl:disjointWith" => %(sioc:Container).freeze,
42
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
43
+ type: "owl:Class".freeze
44
+ term :Site,
45
+ 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,
46
+ label: "Site".freeze,
47
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
48
+ subClassOf: "sioc:Space".freeze,
49
+ type: "owl:Class".freeze
50
+ term :Space,
51
+ comment: %(A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.).freeze,
52
+ label: "Space".freeze,
53
+ "owl:disjointWith" => %(sioc:Item).freeze,
54
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
55
+ type: "owl:Class".freeze
56
+ term :Thread,
57
+ comment: %(A container for a series of threaded discussion Posts or Items.).freeze,
58
+ label: "Thread".freeze,
59
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
60
+ subClassOf: "sioc:Container".freeze,
61
+ type: "owl:Class".freeze
62
+ term :User,
63
+ comment: %(UserAccount is now preferred. This is a deprecated class for a User in an online community site.).freeze,
64
+ label: "User".freeze,
65
+ "owl:disjointWith" => %(sioc:Container).freeze,
66
+ "owl:equivalentClass" => %(sioc:UserAccount).freeze,
67
+ "owl:versionInfo" => %(This class is deprecated. Use sioc:UserAccount from the SIOC ontology instead.).freeze,
68
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
69
+ subClassOf: "foaf:OnlineAccount".freeze,
70
+ type: "owl:DeprecatedClass".freeze
71
+ term :UserAccount,
72
+ comment: %(A user account in an online community site.).freeze,
73
+ label: "User Account".freeze,
74
+ "owl:disjointWith" => %(sioc:Container).freeze,
75
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
76
+ subClassOf: "foaf:OnlineAccount".freeze,
77
+ type: "owl:Class".freeze
78
+ term :Usergroup,
79
+ comment: %(A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.).freeze,
80
+ label: "Usergroup".freeze,
81
+ "owl:disjointWith" => %(sioc:Container).freeze,
82
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
83
+ type: "owl:Class".freeze
37
84
 
38
85
  # Property definitions
39
- property :content, :label => 'content', :comment =>
40
- %(The content of the Item in plain text format.)
41
- property :content_encoded, :label => 'content encoded', :comment =>
42
- %(The encoded content of the Post, contained in CDATA areas.)
43
- property :created_at, :label => 'created at', :comment =>
44
- %(When this was created, in ISO 8601 format.)
45
- property :description, :label => 'description', :comment =>
46
- %(The content of the Post.)
47
- property :email_sha1, :label => 'email sha1', :comment =>
48
- %(An electronic mail address of the UserAccount, encoded using
49
- SHA1.)
50
- property :first_name, :label => 'first name', :comment =>
51
- %(First \(real\) name of this User. Synonyms include given name
52
- or christian name.)
53
- property :id, :label => 'id', :comment =>
54
- %(An identifier of a SIOC concept instance. For example, a user
55
- ID. Must be unique for instances of each type of SIOC concept
56
- within the same site.)
57
- property :ip_address, :label => 'ip address', :comment =>
58
- %(The IP address used when creating this Item. This can be
59
- associated with a creator. Some wiki articles list the IP
60
- addresses for the creator or modifiers when the usernames are
61
- absent.)
62
- property :last_activity_date, :label => 'last activity date', :comment =>
63
- %(The date and time of the last activity associated with a SIOC
64
- concept instance, and expressed in ISO 8601 format. This could
65
- be due to a reply Post or Comment, a modification to an Item,
66
- etc.)
67
- property :last_item_date, :label => 'last item date', :comment =>
68
- %(The date and time of the last Post \(or Item\) in a Forum \(or
69
- a Container\), in ISO 8601 format.)
70
- property :last_name, :label => 'last name', :comment =>
71
- %(Last \(real\) name of this user. Synonyms include surname or
72
- family name.)
73
- property :last_reply_date, :label => 'last reply date', :comment =>
74
- %(The date and time of the last reply Post or Comment, which
75
- could be associated with a starter Item or Post or with a
76
- Thread, and expressed in ISO 8601 format.)
77
- property :modified_at, :label => 'modified at', :comment =>
78
- %(When this was modified, in ISO 8601 format.)
79
- property :name, :label => 'name', :comment =>
80
- %(The name of a SIOC concept instance, e.g. a username for a
81
- UserAccount, group name for a Usergroup, etc.)
82
- property :note, :label => 'note', :comment =>
83
- %(A note associated with this resource, for example, if it has
84
- been edited by a UserAccount.)
85
- property :num_authors, :label => 'num authors', :comment =>
86
- %(The number of unique authors \(UserAccounts and unregistered
87
- posters\) who have contributed to this Item, Thread, Post,
88
- etc.)
89
- property :num_items, :label => 'num items', :comment =>
90
- %(The number of Posts \(or Items\) in a Forum \(or a
91
- Container\).)
92
- property :num_replies, :label => 'num replies', :comment =>
93
- %(The number of replies that this Item, Thread, Post, etc. has.
94
- Useful for when the reply structure is absent.)
95
- property :num_threads, :label => 'num threads', :comment =>
96
- %(The number of Threads \(AKA discussion topics\) in a Forum.)
97
- property :num_views, :label => 'num views', :comment =>
98
- %(The number of times this Item, Thread, UserAccount profile,
99
- etc. has been viewed.)
100
- property :subject, :label => 'subject', :comment =>
101
- %(Keyword\(s\) describing subject of the Post.)
102
- property :title, :label => 'title', :comment =>
103
- %(This is the title \(subject line\) of the Post. Note that for
104
- a Post within a threaded discussion that has no parents, it
105
- would detail the topic thread.)
106
- property :about, :label => 'about', :comment =>
107
- %(Specifies that this Item is about a particular resource, e.g.
108
- a Post describing a book, hotel, etc.)
109
- property :account_of, :label => 'account of', :comment =>
110
- %(Refers to the foaf:Agent or foaf:Person who owns this
111
- sioc:UserAccount.)
112
- property :addressed_to, :label => 'addressed to', :comment =>
113
- %(Refers to who \(e.g. a UserAccount, e-mail address, etc.\) a
114
- particular Item is addressed to.)
115
- property :administrator_of, :label => 'administrator of', :comment =>
116
- %(A Site that the UserAccount is an administrator of.)
117
- property :attachment, :label => 'attachment', :comment =>
118
- %(The URI of a file attached to an Item.)
119
- property :avatar, :label => 'avatar', :comment =>
120
- %(An image or depiction used to represent this UserAccount.)
121
- property :container_of, :label => 'container of', :comment =>
122
- %(An Item that this Container contains.)
123
- property :creator_of, :label => 'creator of', :comment =>
124
- %(A resource that the UserAccount is a creator of.)
125
- property :email, :label => 'email', :comment =>
126
- %(An electronic mail address of the UserAccount.)
127
- property :embeds_knowledge, :label => 'embeds knowledge', :comment =>
128
- %(This links Items to embedded statements, facts and structured
129
- content.)
130
- property :feed, :label => 'feed', :comment =>
131
- %(A feed \(e.g. RSS, Atom, etc.\) pertaining to this resource
132
- \(e.g. for a Forum, Site, UserAccount, etc.\).)
133
- property :follows, :label => 'follows', :comment =>
134
- %(Indicates that one UserAccount follows another UserAccount
135
- \(e.g. for microblog posts or other content item updates\).)
136
- property :function_of, :label => 'function of', :comment =>
137
- %(A UserAccount that has this Role.)
138
- property :group_of, :label => 'group of'
139
- property :has_administrator, :label => 'has administrator', :comment =>
140
- %(A UserAccount that is an administrator of this Site.)
141
- property :has_container, :label => 'has container', :comment =>
142
- %(The Container to which this Item belongs.)
143
- property :has_creator, :label => 'has creator', :comment =>
144
- %(This is the UserAccount that made this resource.)
145
- property :has_discussion, :label => 'has discussion', :comment =>
146
- %(The discussion that is related to this Item.)
147
- property :has_function, :label => 'has function', :comment =>
148
- %(A Role that this UserAccount has.)
149
- property :has_group, :label => 'has group'
150
- property :has_host, :label => 'has host', :comment =>
151
- %(The Site that hosts this Forum.)
152
- property :has_member, :label => 'has member', :comment =>
153
- %(A UserAccount that is a member of this Usergroup.)
154
- property :has_moderator, :label => 'has moderator', :comment =>
155
- %(A UserAccount that is a moderator of this Forum.)
156
- property :has_modifier, :label => 'has modifier', :comment =>
157
- %(A UserAccount that modified this Item.)
158
- property :has_owner, :label => 'has owner', :comment =>
159
- %(A UserAccount that this resource is owned by.)
160
- property :has_parent, :label => 'has parent', :comment =>
161
- %(A Container or Forum that this Container or Forum is a child
162
- of.)
163
- property :has_part, :label => 'has part', :comment =>
164
- %(An resource that is a part of this subject.)
165
- property :has_reply, :label => 'has reply', :comment =>
166
- %(Points to an Item or Post that is a reply or response to this
167
- Item or Post.)
168
- property :has_scope, :label => 'has scope', :comment =>
169
- %(A resource that this Role applies to.)
170
- property :has_space, :label => 'has space', :comment =>
171
- %(A data Space which this resource is a part of.)
172
- property :has_subscriber, :label => 'has subscriber', :comment =>
173
- %(A UserAccount that is subscribed to this Container.)
174
- property :has_usergroup, :label => 'has usergroup', :comment =>
175
- %(Points to a Usergroup that has certain access to this Space.)
176
- property :host_of, :label => 'host of', :comment =>
177
- %(A Forum that is hosted on this Site.)
178
- property :latest_version, :label => 'latest version', :comment =>
179
- %(Links to the latest revision of this Item or Post.)
180
- property :link, :label => 'link', :comment =>
181
- %(A URI of a document which contains this SIOC object.)
182
- property :links_to, :label => 'links to', :comment =>
183
- %(Links extracted from hyperlinks within a SIOC concept, e.g.
184
- Post or Site.)
185
- property :member_of, :label => 'member of', :comment =>
186
- %(A Usergroup that this UserAccount is a member of.)
187
- property :moderator_of, :label => 'moderator of', :comment =>
188
- %(A Forum that a UserAccount is a moderator of.)
189
- property :modifier_of, :label => 'modifier of', :comment =>
190
- %(An Item that this UserAccount has modified.)
191
- property :next_by_date, :label => 'next by date', :comment =>
192
- %(Next Item or Post in a given Container sorted by date.)
193
- property :next_version, :label => 'next version', :comment =>
194
- %(Links to the next revision of this Item or Post.)
195
- property :owner_of, :label => 'owner of', :comment =>
196
- %(A resource owned by a particular UserAccount, for example, a
197
- weblog or image gallery.)
198
- property :parent_of, :label => 'parent of', :comment =>
199
- %(A child Container or Forum that this Container or Forum is a
200
- parent of.)
201
- property :part_of, :label => 'part of', :comment =>
202
- %(A resource that the subject is a part of.)
203
- property :previous_by_date, :label => 'previous by date', :comment =>
204
- %(Previous Item or Post in a given Container sorted by date.)
205
- property :previous_version, :label => 'previous version', :comment =>
206
- %(Links to the previous revision of this Item or Post.)
207
- property :reference, :label => 'reference', :comment =>
208
- %(Links either created explicitly or extracted implicitly on the
209
- HTML level from the Post.)
210
- property :related_to, :label => 'related to', :comment =>
211
- %(Related Posts for this Post, perhaps determined implicitly
212
- from topics or references.)
213
- property :reply_of, :label => 'reply of', :comment =>
214
- %(Links to an Item or Post which this Item or Post is a reply
215
- to.)
216
- property :scope_of, :label => 'scope of', :comment =>
217
- %(A Role that has a scope of this resource.)
218
- property :space_of, :label => 'space of', :comment =>
219
- %(A resource which belongs to this data Space.)
220
- property :subscriber_of, :label => 'subscriber of', :comment =>
221
- %(A Container that a UserAccount is subscribed to.)
222
- property :topic, :label => 'topic', :comment =>
223
- %(A topic of interest, linking to the appropriate URI, e.g. in
224
- the Open Directory Project or of a SKOS category.)
225
- property :usergroup_of, :label => 'usergroup of', :comment =>
226
- %(A Space that the Usergroup has access to.)
86
+ property :about,
87
+ comment: %(Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.).freeze,
88
+ domain: "sioc:Item".freeze,
89
+ label: "about".freeze,
90
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
91
+ type: "owl:ObjectProperty".freeze
92
+ property :account_of,
93
+ comment: %(Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.).freeze,
94
+ domain: "sioc:UserAccount".freeze,
95
+ label: "account of".freeze,
96
+ "owl:inverseOf" => %(foaf:account).freeze,
97
+ range: "foaf:Agent".freeze,
98
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
99
+ type: "owl:ObjectProperty".freeze
100
+ property :addressed_to,
101
+ comment: %(Refers to who \(e.g. a UserAccount, e-mail address, etc.\) a particular Item is addressed to.).freeze,
102
+ domain: "sioc:Item".freeze,
103
+ label: "addressed to".freeze,
104
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
105
+ type: "owl:ObjectProperty".freeze
106
+ property :administrator_of,
107
+ comment: %(A Site that the UserAccount is an administrator of.).freeze,
108
+ domain: "sioc:UserAccount".freeze,
109
+ label: "administrator of".freeze,
110
+ "owl:inverseOf" => %(sioc:has_administrator).freeze,
111
+ range: "sioc:Site".freeze,
112
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
113
+ type: "owl:ObjectProperty".freeze
114
+ property :attachment,
115
+ comment: %(The URI of a file attached to an Item.).freeze,
116
+ domain: "sioc:Item".freeze,
117
+ label: "attachment".freeze,
118
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
119
+ type: "owl:ObjectProperty".freeze
120
+ property :avatar,
121
+ comment: %(An image or depiction used to represent this UserAccount.).freeze,
122
+ domain: "sioc:UserAccount".freeze,
123
+ label: "avatar".freeze,
124
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
125
+ subPropertyOf: "foaf:depiction".freeze,
126
+ type: "owl:ObjectProperty".freeze
127
+ property :container_of,
128
+ comment: %(An Item that this Container contains.).freeze,
129
+ domain: "sioc:Container".freeze,
130
+ label: "container of".freeze,
131
+ "owl:inverseOf" => %(sioc:has_container).freeze,
132
+ range: "sioc:Item".freeze,
133
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
134
+ type: "owl:ObjectProperty".freeze
135
+ property :content,
136
+ comment: %(The content of the Item in plain text format.).freeze,
137
+ domain: "sioc:Item".freeze,
138
+ label: "content".freeze,
139
+ range: "rdfs:Literal".freeze,
140
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
141
+ type: "owl:DatatypeProperty".freeze
142
+ property :content_encoded,
143
+ comment: %(The encoded content of the Post, contained in CDATA areas.).freeze,
144
+ domain: "sioc:Post".freeze,
145
+ label: "content encoded".freeze,
146
+ "owl:versionInfo" => %(This property is deprecated. Use content:encoded from the RSS 1.0 content module instead.).freeze,
147
+ range: "rdfs:Literal".freeze,
148
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
149
+ type: "owl:DeprecatedProperty".freeze
150
+ property :created_at,
151
+ comment: %(When this was created, in ISO 8601 format.).freeze,
152
+ domain: "sioc:Post".freeze,
153
+ label: "created at".freeze,
154
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:created from the Dublin Core ontology instead.).freeze,
155
+ range: "rdfs:Literal".freeze,
156
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
157
+ type: "owl:DeprecatedProperty".freeze
158
+ property :creator_of,
159
+ comment: %(A resource that the UserAccount is a creator of.).freeze,
160
+ domain: "sioc:UserAccount".freeze,
161
+ label: "creator of".freeze,
162
+ "owl:inverseOf" => %(sioc:has_creator).freeze,
163
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
164
+ type: "owl:ObjectProperty".freeze
165
+ property :description,
166
+ comment: %(The content of the Post.).freeze,
167
+ domain: "sioc:Post".freeze,
168
+ label: "description".freeze,
169
+ "owl:versionInfo" => %(This property is deprecated. Use sioc:content or other methods \(AtomOwl, content:encoded from RSS 1.0, etc.\) instead.).freeze,
170
+ range: "rdfs:Literal".freeze,
171
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
172
+ type: "owl:DeprecatedProperty".freeze
173
+ property :earlier_version,
174
+ comment: %(Links to a previous \(older\) revision of this Item or Post.).freeze,
175
+ domain: "sioc:Item".freeze,
176
+ label: "earlier version".freeze,
177
+ "owl:inverseOf" => %(sioc:later_version).freeze,
178
+ range: "sioc:Item".freeze,
179
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
180
+ type: "owl:TransitiveProperty".freeze
181
+ property :email,
182
+ comment: %(An electronic mail address of the UserAccount.).freeze,
183
+ domain: "sioc:UserAccount".freeze,
184
+ label: "email".freeze,
185
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
186
+ type: "owl:ObjectProperty".freeze
187
+ property :email_sha1,
188
+ comment: %(An electronic mail address of the UserAccount, encoded using SHA1.).freeze,
189
+ domain: "sioc:UserAccount".freeze,
190
+ label: "email sha1".freeze,
191
+ range: "rdfs:Literal".freeze,
192
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
193
+ type: "owl:DatatypeProperty".freeze
194
+ property :embeds_knowledge,
195
+ comment: %(This links Items to embedded statements, facts and structured content.).freeze,
196
+ domain: "sioc:Item".freeze,
197
+ label: "embeds knowledge".freeze,
198
+ range: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze,
199
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
200
+ type: "owl:ObjectProperty".freeze
201
+ property :feed,
202
+ comment: %(A feed \(e.g. RSS, Atom, etc.\) pertaining to this resource \(e.g. for a Forum, Site, UserAccount, etc.\).).freeze,
203
+ label: "feed".freeze,
204
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
205
+ type: "owl:ObjectProperty".freeze
206
+ property :first_name,
207
+ comment: %(First \(real\) name of this User. Synonyms include given name or christian name.).freeze,
208
+ domain: "sioc:UserAccount".freeze,
209
+ label: "first name".freeze,
210
+ "owl:versionInfo" => %(This property is deprecated. Use foaf:name or foaf:firstName from the FOAF vocabulary instead.).freeze,
211
+ range: "rdfs:Literal".freeze,
212
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
213
+ type: "owl:DeprecatedProperty".freeze
214
+ property :follows,
215
+ comment: %(Indicates that one UserAccount follows another UserAccount \(e.g. for microblog posts or other content item updates\).).freeze,
216
+ domain: "sioc:UserAccount".freeze,
217
+ label: "follows".freeze,
218
+ range: "sioc:UserAccount".freeze,
219
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
220
+ type: "owl:ObjectProperty".freeze
221
+ property :function_of,
222
+ comment: %(A UserAccount that has this Role.).freeze,
223
+ domain: "sioc:Role".freeze,
224
+ label: "function of".freeze,
225
+ "owl:inverseOf" => %(sioc:has_function).freeze,
226
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
227
+ type: "owl:ObjectProperty".freeze
228
+ property :group_of,
229
+ label: "group of".freeze,
230
+ "owl:inverseOf" => %(sioc:has_group).freeze,
231
+ "owl:versionInfo" => %(This property has been renamed. Use sioc:usergroup_of instead.).freeze,
232
+ type: "owl:DeprecatedProperty".freeze
233
+ property :has_administrator,
234
+ comment: %(A UserAccount that is an administrator of this Site.).freeze,
235
+ domain: "sioc:Site".freeze,
236
+ label: "has administrator".freeze,
237
+ "owl:inverseOf" => %(sioc:administrator_of).freeze,
238
+ range: "sioc:UserAccount".freeze,
239
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
240
+ type: "owl:ObjectProperty".freeze
241
+ property :has_container,
242
+ comment: %(The Container to which this Item belongs.).freeze,
243
+ domain: "sioc:Item".freeze,
244
+ label: "has container".freeze,
245
+ "owl:inverseOf" => %(sioc:container_of).freeze,
246
+ range: "sioc:Container".freeze,
247
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
248
+ type: "owl:ObjectProperty".freeze
249
+ property :has_creator,
250
+ comment: %(This is the UserAccount that made this resource.).freeze,
251
+ label: "has creator".freeze,
252
+ "owl:inverseOf" => %(sioc:creator_of).freeze,
253
+ range: "sioc:UserAccount".freeze,
254
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
255
+ type: "owl:ObjectProperty".freeze
256
+ property :has_discussion,
257
+ comment: %(The discussion that is related to this Item.).freeze,
258
+ domain: "sioc:Item".freeze,
259
+ label: "has discussion".freeze,
260
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
261
+ type: "owl:ObjectProperty".freeze
262
+ property :has_function,
263
+ comment: %(A Role that this UserAccount has.).freeze,
264
+ label: "has function".freeze,
265
+ "owl:inverseOf" => %(sioc:function_of).freeze,
266
+ range: "sioc:Role".freeze,
267
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
268
+ type: "owl:ObjectProperty".freeze
269
+ property :has_group,
270
+ label: "has group".freeze,
271
+ "owl:inverseOf" => %(sioc:group_of).freeze,
272
+ "owl:versionInfo" => %(This property has been renamed. Use sioc:has_usergroup instead.).freeze,
273
+ type: "owl:DeprecatedProperty".freeze
274
+ property :has_host,
275
+ comment: %(The Site that hosts this Forum.).freeze,
276
+ domain: "sioc:Forum".freeze,
277
+ label: "has host".freeze,
278
+ "owl:inverseOf" => %(sioc:host_of).freeze,
279
+ range: "sioc:Site".freeze,
280
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
281
+ type: "owl:ObjectProperty".freeze
282
+ property :has_member,
283
+ comment: %(A UserAccount that is a member of this Usergroup.).freeze,
284
+ domain: "sioc:Usergroup".freeze,
285
+ label: "has member".freeze,
286
+ "owl:inverseOf" => %(sioc:member_of).freeze,
287
+ range: "sioc:UserAccount".freeze,
288
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
289
+ type: "owl:ObjectProperty".freeze
290
+ property :has_moderator,
291
+ comment: %(A UserAccount that is a moderator of this Forum.).freeze,
292
+ domain: "sioc:Forum".freeze,
293
+ label: "has moderator".freeze,
294
+ range: "sioc:UserAccount".freeze,
295
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
296
+ type: "owl:ObjectProperty".freeze
297
+ property :has_modifier,
298
+ comment: %(A UserAccount that modified this Item.).freeze,
299
+ domain: "sioc:Item".freeze,
300
+ label: "has modifier".freeze,
301
+ "owl:inverseOf" => %(sioc:modifier_of).freeze,
302
+ range: "sioc:UserAccount".freeze,
303
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
304
+ type: "owl:ObjectProperty".freeze
305
+ property :has_owner,
306
+ comment: %(A UserAccount that this resource is owned by.).freeze,
307
+ label: "has owner".freeze,
308
+ "owl:inverseOf" => %(sioc:owner_of).freeze,
309
+ range: "sioc:UserAccount".freeze,
310
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
311
+ type: "owl:ObjectProperty".freeze
312
+ property :has_parent,
313
+ comment: %(A Container or Forum that this Container or Forum is a child of.).freeze,
314
+ domain: "sioc:Container".freeze,
315
+ label: "has parent".freeze,
316
+ "owl:inverseOf" => %(sioc:parent_of).freeze,
317
+ range: "sioc:Container".freeze,
318
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
319
+ type: "owl:ObjectProperty".freeze
320
+ property :has_part,
321
+ comment: %(An resource that is a part of this subject.).freeze,
322
+ label: "has part".freeze,
323
+ "owl:inverseOf" => %(sioc:part_of).freeze,
324
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.).freeze,
325
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
326
+ type: "owl:DeprecatedProperty".freeze
327
+ property :has_reply,
328
+ comment: %(Points to an Item or Post that is a reply or response to this Item or Post.).freeze,
329
+ domain: "sioc:Item".freeze,
330
+ label: "has reply".freeze,
331
+ "owl:inverseOf" => %(sioc:reply_of).freeze,
332
+ range: "sioc:Item".freeze,
333
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
334
+ subPropertyOf: "sioc:related_to".freeze,
335
+ type: "owl:ObjectProperty".freeze
336
+ property :has_scope,
337
+ comment: %(A resource that this Role applies to.).freeze,
338
+ domain: "sioc:Role".freeze,
339
+ label: "has scope".freeze,
340
+ "owl:inverseOf" => %(sioc:scope_of).freeze,
341
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
342
+ type: "owl:ObjectProperty".freeze
343
+ property :has_space,
344
+ comment: %(A data Space which this resource is a part of.).freeze,
345
+ label: "has space".freeze,
346
+ "owl:inverseOf" => %(sioc:space_of).freeze,
347
+ range: "sioc:Space".freeze,
348
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
349
+ type: "owl:ObjectProperty".freeze
350
+ property :has_subscriber,
351
+ comment: %(A UserAccount that is subscribed to this Container.).freeze,
352
+ domain: "sioc:Container".freeze,
353
+ label: "has subscriber".freeze,
354
+ "owl:inverseOf" => %(sioc:subscriber_of).freeze,
355
+ range: "sioc:UserAccount".freeze,
356
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
357
+ "rdfs:seeAlso" => %(sioc:feed).freeze,
358
+ type: "owl:ObjectProperty".freeze
359
+ property :has_usergroup,
360
+ comment: %(Points to a Usergroup that has certain access to this Space.).freeze,
361
+ domain: "sioc:Space".freeze,
362
+ label: "has usergroup".freeze,
363
+ "owl:inverseOf" => %(sioc:usergroup_of).freeze,
364
+ range: "sioc:Usergroup".freeze,
365
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
366
+ type: "owl:ObjectProperty".freeze
367
+ property :host_of,
368
+ comment: %(A Forum that is hosted on this Site.).freeze,
369
+ domain: "sioc:Site".freeze,
370
+ label: "host of".freeze,
371
+ "owl:inverseOf" => %(sioc:has_host).freeze,
372
+ range: "sioc:Forum".freeze,
373
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
374
+ type: "owl:ObjectProperty".freeze
375
+ property :id,
376
+ 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,
377
+ label: "id".freeze,
378
+ range: "rdfs:Literal".freeze,
379
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
380
+ type: "owl:DatatypeProperty".freeze
381
+ property :ip_address,
382
+ comment: %(The IP address used when creating this Item. 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,
383
+ domain: "sioc:Item".freeze,
384
+ label: "ip address".freeze,
385
+ range: "rdfs:Literal".freeze,
386
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
387
+ type: "owl:DatatypeProperty".freeze
388
+ property :last_activity_date,
389
+ 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,
390
+ label: "last activity date".freeze,
391
+ range: "rdfs:Literal".freeze,
392
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
393
+ subPropertyOf: "dc:date".freeze,
394
+ type: "owl:DatatypeProperty".freeze
395
+ property :last_item_date,
396
+ comment: %(The date and time of the last Post \(or Item\) in a Forum \(or a Container\), in ISO 8601 format.).freeze,
397
+ domain: "sioc:Container".freeze,
398
+ label: "last item date".freeze,
399
+ range: "rdfs:Literal".freeze,
400
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
401
+ subPropertyOf: "dc:date".freeze,
402
+ type: "owl:DatatypeProperty".freeze
403
+ property :last_name,
404
+ comment: %(Last \(real\) name of this user. Synonyms include surname or family name.).freeze,
405
+ domain: "sioc:UserAccount".freeze,
406
+ label: "last name".freeze,
407
+ "owl:versionInfo" => %(This property is deprecated. Use foaf:name or foaf:surname from the FOAF vocabulary instead.).freeze,
408
+ range: "rdfs:Literal".freeze,
409
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
410
+ type: "owl:DeprecatedProperty".freeze
411
+ property :last_reply_date,
412
+ 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,
413
+ label: "last reply date".freeze,
414
+ range: "rdfs:Literal".freeze,
415
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
416
+ subPropertyOf: "dc:date".freeze,
417
+ type: "owl:DatatypeProperty".freeze
418
+ property :later_version,
419
+ comment: %(Links to a later \(newer\) revision of this Item or Post.).freeze,
420
+ domain: "sioc:Item".freeze,
421
+ label: "later version".freeze,
422
+ "owl:inverseOf" => %(sioc:earlier_version).freeze,
423
+ range: "sioc:Item".freeze,
424
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
425
+ type: "owl:TransitiveProperty".freeze
426
+ property :latest_version,
427
+ comment: %(Links to the latest revision of this Item or Post.).freeze,
428
+ domain: "sioc:Item".freeze,
429
+ label: "latest version".freeze,
430
+ range: "sioc:Item".freeze,
431
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
432
+ type: "owl:ObjectProperty".freeze
433
+ property :link,
434
+ comment: %(A URI of a document which contains this SIOC object.).freeze,
435
+ label: "link".freeze,
436
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
437
+ type: "owl:ObjectProperty".freeze
438
+ property :links_to,
439
+ comment: %(Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.).freeze,
440
+ label: "links to".freeze,
441
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
442
+ subPropertyOf: "dc:references".freeze,
443
+ type: "owl:ObjectProperty".freeze
444
+ property :member_of,
445
+ comment: %(A Usergroup that this UserAccount is a member of.).freeze,
446
+ domain: "sioc:UserAccount".freeze,
447
+ label: "member of".freeze,
448
+ "owl:inverseOf" => %(sioc:has_member).freeze,
449
+ range: "sioc:Usergroup".freeze,
450
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
451
+ type: "owl:ObjectProperty".freeze
452
+ property :moderator_of,
453
+ comment: %(A Forum that a UserAccount is a moderator of.).freeze,
454
+ domain: "sioc:UserAccount".freeze,
455
+ label: "moderator of".freeze,
456
+ "owl:inverseOf" => %(sioc:has_moderator).freeze,
457
+ range: "sioc:Forum".freeze,
458
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
459
+ type: "owl:ObjectProperty".freeze
460
+ property :modified_at,
461
+ comment: %(When this was modified, in ISO 8601 format.).freeze,
462
+ domain: "sioc:Post".freeze,
463
+ label: "modified at".freeze,
464
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:modified from the Dublin Core ontology instead.).freeze,
465
+ range: "rdfs:Literal".freeze,
466
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
467
+ type: "owl:DeprecatedProperty".freeze
468
+ property :modifier_of,
469
+ comment: %(An Item that this UserAccount has modified.).freeze,
470
+ domain: "sioc:UserAccount".freeze,
471
+ label: "modifier of".freeze,
472
+ "owl:inverseOf" => %(sioc:has_modifier).freeze,
473
+ range: "sioc:Item".freeze,
474
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
475
+ type: "owl:ObjectProperty".freeze
476
+ property :name,
477
+ comment: %(The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.).freeze,
478
+ label: "name".freeze,
479
+ range: "rdfs:Literal".freeze,
480
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
481
+ type: "owl:DatatypeProperty".freeze
482
+ property :next_by_date,
483
+ comment: %(Next Item or Post in a given Container sorted by date.).freeze,
484
+ domain: "sioc:Item".freeze,
485
+ label: "next by date".freeze,
486
+ "owl:inverseOf" => %(sioc:previous_by_date).freeze,
487
+ range: "sioc:Item".freeze,
488
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
489
+ type: "owl:ObjectProperty".freeze
490
+ property :next_version,
491
+ comment: %(Links to the next revision of this Item or Post.).freeze,
492
+ domain: "sioc:Item".freeze,
493
+ label: "next version".freeze,
494
+ "owl:inverseOf" => %(sioc:previous_version).freeze,
495
+ range: "sioc:Item".freeze,
496
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
497
+ subPropertyOf: "sioc:later_version".freeze,
498
+ type: "owl:ObjectProperty".freeze
499
+ property :note,
500
+ comment: %(A note associated with this resource, for example, if it has been edited by a UserAccount.).freeze,
501
+ label: "note".freeze,
502
+ range: "rdfs:Literal".freeze,
503
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
504
+ type: "owl:DatatypeProperty".freeze
505
+ property :num_authors,
506
+ comment: %(The number of unique authors \(UserAccounts and unregistered posters\) who have contributed to this Item, Thread, Post, etc.).freeze,
507
+ label: "num authors".freeze,
508
+ range: "xsd:nonNegativeInteger".freeze,
509
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
510
+ type: "owl:DatatypeProperty".freeze
511
+ property :num_items,
512
+ comment: %(The number of Posts \(or Items\) in a Forum \(or a Container\).).freeze,
513
+ domain: "sioc:Container".freeze,
514
+ label: "num items".freeze,
515
+ range: "xsd:nonNegativeInteger".freeze,
516
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
517
+ type: "owl:DatatypeProperty".freeze
518
+ property :num_replies,
519
+ comment: %(The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.).freeze,
520
+ label: "num replies".freeze,
521
+ range: "xsd:nonNegativeInteger".freeze,
522
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
523
+ type: "owl:DatatypeProperty".freeze
524
+ property :num_threads,
525
+ comment: %(The number of Threads \(AKA discussion topics\) in a Forum.).freeze,
526
+ domain: "sioc:Forum".freeze,
527
+ label: "num threads".freeze,
528
+ range: "xsd:nonNegativeInteger".freeze,
529
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
530
+ type: "owl:DatatypeProperty".freeze
531
+ property :num_views,
532
+ comment: %(The number of times this Item, Thread, UserAccount profile, etc. has been viewed.).freeze,
533
+ label: "num views".freeze,
534
+ range: "xsd:nonNegativeInteger".freeze,
535
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
536
+ type: "owl:DatatypeProperty".freeze
537
+ property :owner_of,
538
+ comment: %(A resource owned by a particular UserAccount, for example, a weblog or image gallery.).freeze,
539
+ domain: "sioc:UserAccount".freeze,
540
+ label: "owner of".freeze,
541
+ "owl:inverseOf" => %(sioc:has_owner).freeze,
542
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
543
+ type: "owl:ObjectProperty".freeze
544
+ property :parent_of,
545
+ comment: %(A child Container or Forum that this Container or Forum is a parent of.).freeze,
546
+ domain: "sioc:Container".freeze,
547
+ label: "parent of".freeze,
548
+ "owl:inverseOf" => %(sioc:has_parent).freeze,
549
+ range: "sioc:Container".freeze,
550
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
551
+ type: "owl:ObjectProperty".freeze
552
+ property :part_of,
553
+ comment: %(A resource that the subject is a part of.).freeze,
554
+ label: "part of".freeze,
555
+ "owl:inverseOf" => %(sioc:has_part).freeze,
556
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.).freeze,
557
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
558
+ type: "owl:DeprecatedProperty".freeze
559
+ property :previous_by_date,
560
+ comment: %(Previous Item or Post in a given Container sorted by date.).freeze,
561
+ domain: "sioc:Item".freeze,
562
+ label: "previous by date".freeze,
563
+ "owl:inverseOf" => %(sioc:next_by_date).freeze,
564
+ range: "sioc:Item".freeze,
565
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
566
+ type: "owl:ObjectProperty".freeze
567
+ property :previous_version,
568
+ comment: %(Links to the previous revision of this Item or Post.).freeze,
569
+ domain: "sioc:Item".freeze,
570
+ label: "previous version".freeze,
571
+ "owl:inverseOf" => %(sioc:next_version).freeze,
572
+ range: "sioc:Item".freeze,
573
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
574
+ subPropertyOf: "sioc:earlier_version".freeze,
575
+ type: "owl:ObjectProperty".freeze
576
+ property :reference,
577
+ comment: %(Links either created explicitly or extracted implicitly on the HTML level from the Post.).freeze,
578
+ domain: "sioc:Post".freeze,
579
+ label: "reference".freeze,
580
+ "owl:versionInfo" => %(Renamed to sioc:links_to.).freeze,
581
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
582
+ type: "owl:DeprecatedProperty".freeze
583
+ property :related_to,
584
+ comment: %(Related Posts for this Post, perhaps determined implicitly from topics or references.).freeze,
585
+ label: "related to".freeze,
586
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
587
+ type: "owl:ObjectProperty".freeze
588
+ property :reply_of,
589
+ comment: %(Links to an Item or Post which this Item or Post is a reply to.).freeze,
590
+ domain: "sioc:Item".freeze,
591
+ label: "reply of".freeze,
592
+ "owl:inverseOf" => %(sioc:has_reply).freeze,
593
+ range: "sioc:Item".freeze,
594
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
595
+ subPropertyOf: "sioc:related_to".freeze,
596
+ type: "owl:ObjectProperty".freeze
597
+ property :scope_of,
598
+ comment: %(A Role that has a scope of this resource.).freeze,
599
+ label: "scope of".freeze,
600
+ "owl:inverseOf" => %(sioc:has_scope).freeze,
601
+ range: "sioc:Role".freeze,
602
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
603
+ type: "owl:ObjectProperty".freeze
604
+ property :sibling,
605
+ 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,
606
+ domain: "sioc:Item".freeze,
607
+ label: "sibling".freeze,
608
+ range: "sioc:Item".freeze,
609
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
610
+ type: "owl:SymmetricProperty".freeze
611
+ property :space_of,
612
+ comment: %(A resource which belongs to this data Space.).freeze,
613
+ domain: "sioc:Space".freeze,
614
+ label: "space of".freeze,
615
+ "owl:inverseOf" => %(sioc:has_space).freeze,
616
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
617
+ type: "owl:ObjectProperty".freeze
618
+ property :subject,
619
+ comment: %(Keyword\(s\) describing subject of the Post.).freeze,
620
+ domain: "sioc:Post".freeze,
621
+ label: "subject".freeze,
622
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:subject from the Dublin Core ontology for text keywords and sioc:topic if the subject can be represented by a URI instead.).freeze,
623
+ range: "rdfs:Literal".freeze,
624
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
625
+ type: "owl:DeprecatedProperty".freeze
626
+ property :subscriber_of,
627
+ comment: %(A Container that a UserAccount is subscribed to.).freeze,
628
+ domain: "sioc:UserAccount".freeze,
629
+ label: "subscriber of".freeze,
630
+ "owl:inverseOf" => %(sioc:has_subscriber).freeze,
631
+ range: "sioc:Container".freeze,
632
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
633
+ "rdfs:seeAlso" => %(sioc:feed).freeze,
634
+ type: "owl:ObjectProperty".freeze
635
+ property :title,
636
+ 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,
637
+ domain: "sioc:Post".freeze,
638
+ label: "title".freeze,
639
+ "owl:versionInfo" => %(This property is deprecated. Use dcterms:title from the Dublin Core ontology instead.).freeze,
640
+ range: "rdfs:Literal".freeze,
641
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
642
+ type: "owl:DeprecatedProperty".freeze
643
+ property :topic,
644
+ comment: %(A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.).freeze,
645
+ label: "topic".freeze,
646
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
647
+ subPropertyOf: "dc:subject".freeze,
648
+ type: "owl:ObjectProperty".freeze
649
+ property :usergroup_of,
650
+ comment: %(A Space that the Usergroup has access to.).freeze,
651
+ domain: "sioc:Usergroup".freeze,
652
+ label: "usergroup of".freeze,
653
+ "owl:inverseOf" => %(sioc:has_usergroup).freeze,
654
+ range: "sioc:Space".freeze,
655
+ "rdfs:isDefinedBy" => %(sioc:).freeze,
656
+ type: "owl:ObjectProperty".freeze
657
+
658
+ # Extra definitions
659
+ term :"",
660
+ "dc:description" => %(SIOC \(Semantically-Interlinked Online Communities\) is an ontology for describing the information in online communities.
661
+ 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.).freeze,
662
+ "dc:title" => %(SIOC Core Ontology Namespace).freeze,
663
+ "owl:versionInfo" => %(Revision: 1.35).freeze,
664
+ "rdfs:seeAlso" => %(http://rdfs.org/sioc/spec).freeze,
665
+ type: ["owl:Ontology".freeze, "owl:Thing".freeze]
227
666
  end
228
667
  end