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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,9 +5,46 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://rdfs.org/sioc/services#>
8
+ # #
9
+ # # SIOC Services Ontology Module Namespace
10
+ # #
11
+ # # Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining basic information on community-related web services.
12
+ # # @see http://rdfs.org/sioc/spec/#sec-modules
8
13
  # class SiocServices < RDF::StrictVocabulary
14
+ # # A Service is web service associated with a Site or part of it.
15
+ # # @return [RDF::Vocabulary::Term]
16
+ # attr_reader :Service
17
+ #
18
+ # # A Service associated with this SIOC object.
19
+ # # @return [RDF::Vocabulary::Term]
20
+ # attr_reader :has_service
21
+ #
22
+ # # Maximum number of results results returned by a web service.
23
+ # # @return [RDF::Vocabulary::Term]
24
+ # attr_reader :max_results
25
+ #
26
+ # # Format of results returned by a web service.
27
+ # # @return [RDF::Vocabulary::Term]
28
+ # attr_reader :results_format
29
+ #
30
+ # # Links to a web service definition of this sioc:Service.
31
+ # # @return [RDF::Vocabulary::Term]
32
+ # attr_reader :service_definition
33
+ #
34
+ # # URL of a web service endpoint.
35
+ # # @return [RDF::Vocabulary::Term]
36
+ # attr_reader :service_endpoint
37
+ #
38
+ # # A SIOC object this Service is associated with.
39
+ # # @return [RDF::Vocabulary::Term]
40
+ # attr_reader :service_of
41
+ #
42
+ # # A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.
43
+ # # @return [RDF::Vocabulary::Term]
44
+ # attr_reader :service_protocol
45
+ #
9
46
  # end
10
- class SiocServices < RDF::StrictVocabulary("http://rdfs.org/sioc/services#")
47
+ SiocServices = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/services#")) do
11
48
 
12
49
  # Ontology definition
13
50
  ontology :"http://rdfs.org/sioc/services#",
@@ -19,53 +56,53 @@ module RDF::Vocab
19
56
 
20
57
  # Class definitions
21
58
  term :Service,
22
- comment: %(A Service is web service associated with a Site or part of it.).freeze,
59
+ comment: "A Service is web service associated with a Site or part of it.".freeze,
23
60
  isDefinedBy: "siocservices:".freeze,
24
61
  label: "Service".freeze,
25
62
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
26
63
 
27
64
  # Property definitions
28
65
  property :has_service,
29
- comment: %(A Service associated with this SIOC object.).freeze,
66
+ comment: "A Service associated with this SIOC object.".freeze,
30
67
  inverseOf: "siocservices:service_of".freeze,
31
68
  isDefinedBy: "siocservices:".freeze,
32
69
  label: "has service".freeze,
33
70
  range: "siocservices:Service".freeze,
34
71
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
35
72
  property :max_results,
36
- comment: %(Maximum number of results results returned by a web service.).freeze,
73
+ comment: "Maximum number of results results returned by a web service.".freeze,
37
74
  domain: "siocservices:Service".freeze,
38
75
  isDefinedBy: "siocservices:".freeze,
39
76
  label: "max results".freeze,
40
77
  range: "xsd:integer".freeze,
41
78
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
42
79
  property :results_format,
43
- comment: %(Format of results returned by a web service.).freeze,
80
+ comment: "Format of results returned by a web service.".freeze,
44
81
  domain: "siocservices:Service".freeze,
45
82
  isDefinedBy: "siocservices:".freeze,
46
83
  label: "results format".freeze,
47
84
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
48
85
  property :service_definition,
49
- comment: %(Links to a web service definition of this sioc:Service.).freeze,
86
+ comment: "Links to a web service definition of this sioc:Service.".freeze,
50
87
  domain: "siocservices:Service".freeze,
51
88
  isDefinedBy: "siocservices:".freeze,
52
89
  label: "service definition".freeze,
53
90
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
54
91
  property :service_endpoint,
55
- comment: %(URL of a web service endpoint.).freeze,
92
+ comment: "URL of a web service endpoint.".freeze,
56
93
  domain: "siocservices:Service".freeze,
57
94
  isDefinedBy: "siocservices:".freeze,
58
95
  label: "service endpoint".freeze,
59
96
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
60
97
  property :service_of,
61
- comment: %(A SIOC object this Service is associated with.).freeze,
98
+ comment: "A SIOC object this Service is associated with.".freeze,
62
99
  domain: "siocservices:Service".freeze,
63
100
  inverseOf: "siocservices:has_service".freeze,
64
101
  isDefinedBy: "siocservices:".freeze,
65
102
  label: "service of".freeze,
66
103
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
67
104
  property :service_protocol,
68
- comment: %(A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.).freeze,
105
+ comment: "A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.".freeze,
69
106
  domain: "siocservices:Service".freeze,
70
107
  isDefinedBy: "siocservices:".freeze,
71
108
  label: "service protocol".freeze,
@@ -0,0 +1,434 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using rdf vocabulary format from http://rdfs.org/sioc/types#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://rdfs.org/sioc/types#>
8
+ # #
9
+ # # SIOC Types Ontology Module Namespace
10
+ # #
11
+ # # Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.
12
+ # # @see http://rdfs.org/sioc/spec/#sec-modules
13
+ # class SiocTypes < RDF::StrictVocabulary
14
+ # # Describes a collection of personal or organisational addresses.
15
+ # # @return [RDF::Vocabulary::Term]
16
+ # attr_reader :AddressBook
17
+ #
18
+ # # Describes a set of annotations, for example, those created by a particular user or related to a particular topic.
19
+ # # @return [RDF::Vocabulary::Term]
20
+ # attr_reader :AnnotationSet
21
+ #
22
+ # # A Post that provides an answer in reply to a Question.
23
+ # # @return [RDF::Vocabulary::Term]
24
+ # attr_reader :Answer
25
+ #
26
+ # # Describes a discussion area where logical arguments can take place.
27
+ # # @return [RDF::Vocabulary::Term]
28
+ # attr_reader :ArgumentativeDiscussion
29
+ #
30
+ # # Describes a channel for distributing audio or sound files, for example, a podcast.
31
+ # # @return [RDF::Vocabulary::Term]
32
+ # attr_reader :AudioChannel
33
+ #
34
+ # # A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts.
35
+ # # @return [RDF::Vocabulary::Term]
36
+ # attr_reader :BestAnswer
37
+ #
38
+ # # Describes a post that is specifically made on a weblog.
39
+ # # @return [RDF::Vocabulary::Term]
40
+ # attr_reader :BlogPost
41
+ #
42
+ # # Describes a post that is specifically made on a message board.
43
+ # # @return [RDF::Vocabulary::Term]
44
+ # attr_reader :BoardPost
45
+ #
46
+ # # Describes a shared collection of bookmarks.
47
+ # # @return [RDF::Vocabulary::Term]
48
+ # attr_reader :BookmarkFolder
49
+ #
50
+ # # Describes a briefcase or file service.
51
+ # # @return [RDF::Vocabulary::Term]
52
+ # attr_reader :Briefcase
53
+ #
54
+ # # Category is used on the object of sioc:topic to indicate that this resource is a category on a site.
55
+ # # @return [RDF::Vocabulary::Term]
56
+ # attr_reader :Category
57
+ #
58
+ # # Describes a channel for chat or instant messages, for example, via IRC or IM.
59
+ # # @return [RDF::Vocabulary::Term]
60
+ # attr_reader :ChatChannel
61
+ #
62
+ # # Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site.
63
+ # # @return [RDF::Vocabulary::Term]
64
+ # attr_reader :Comment
65
+ #
66
+ # # Describes a calendar of events.
67
+ # # @return [RDF::Vocabulary::Term]
68
+ # attr_reader :EventCalendar
69
+ #
70
+ # # Describes a list or a collection of one's favourite things.
71
+ # # @return [RDF::Vocabulary::Term]
72
+ # attr_reader :FavouriteThings
73
+ #
74
+ # # Describes an image gallery, for example, a photo album.
75
+ # # @return [RDF::Vocabulary::Term]
76
+ # attr_reader :ImageGallery
77
+ #
78
+ # # Describes an instant message, e.g. sent via Jabber.
79
+ # # @return [RDF::Vocabulary::Term]
80
+ # attr_reader :InstantMessage
81
+ #
82
+ # # Describes an electronic mail message, e.g. a post sent to a mailing list.
83
+ # # @return [RDF::Vocabulary::Term]
84
+ # attr_reader :MailMessage
85
+ #
86
+ # # Describes an electronic mailing list.
87
+ # # @return [RDF::Vocabulary::Term]
88
+ # attr_reader :MailingList
89
+ #
90
+ # # Describes a message board, also known as an online bulletin board or discussion forum.
91
+ # # @return [RDF::Vocabulary::Term]
92
+ # attr_reader :MessageBoard
93
+ #
94
+ # # Describes a microblog, i.e. a blog consisting of short text messages.
95
+ # # @return [RDF::Vocabulary::Term]
96
+ # attr_reader :Microblog
97
+ #
98
+ # # Describes a post that is specifically made on a microblog.
99
+ # # @return [RDF::Vocabulary::Term]
100
+ # attr_reader :MicroblogPost
101
+ #
102
+ # # Describes a list of the items someone has available to offer.
103
+ # # @return [RDF::Vocabulary::Term]
104
+ # attr_reader :OfferList
105
+ #
106
+ # # Describes a list of media items that have been played or can be played.
107
+ # # @return [RDF::Vocabulary::Term]
108
+ # attr_reader :Playlist
109
+ #
110
+ # # Describes a posted item that contains a poll or survey content.
111
+ # # @return [RDF::Vocabulary::Term]
112
+ # attr_reader :Poll
113
+ #
114
+ # # Describes a project directory.
115
+ # # @return [RDF::Vocabulary::Term]
116
+ # attr_reader :ProjectDirectory
117
+ #
118
+ # # A Post that asks a Question.
119
+ # # @return [RDF::Vocabulary::Term]
120
+ # attr_reader :Question
121
+ #
122
+ # # Describes a list of books or other materials that have been read or are suggested for reading.
123
+ # # @return [RDF::Vocabulary::Term]
124
+ # attr_reader :ReadingList
125
+ #
126
+ # # Describes a collection of resumes.
127
+ # # @return [RDF::Vocabulary::Term]
128
+ # attr_reader :ResumeBank
129
+ #
130
+ # # Describes an area where reviews are posted.
131
+ # # @return [RDF::Vocabulary::Term]
132
+ # attr_reader :ReviewArea
133
+ #
134
+ # # Describes a shared set of feed subscriptions.
135
+ # # @return [RDF::Vocabulary::Term]
136
+ # attr_reader :SubscriptionList
137
+ #
138
+ # # Describes an area where survey data can be collected, e.g. from polls.
139
+ # # @return [RDF::Vocabulary::Term]
140
+ # attr_reader :SurveyCollection
141
+ #
142
+ # # Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site.
143
+ # # @return [RDF::Vocabulary::Term]
144
+ # attr_reader :Tag
145
+ #
146
+ # # Describes a channel for distributing videos (moving image) files, for example, a video podcast.
147
+ # # @return [RDF::Vocabulary::Term]
148
+ # attr_reader :VideoChannel
149
+ #
150
+ # # Describes a weblog (blog), i.e. an online journal.
151
+ # # @return [RDF::Vocabulary::Term]
152
+ # attr_reader :Weblog
153
+ #
154
+ # # Describes a wiki space.
155
+ # # @return [RDF::Vocabulary::Term]
156
+ # attr_reader :Wiki
157
+ #
158
+ # # Describes a wiki article.
159
+ # # @return [RDF::Vocabulary::Term]
160
+ # attr_reader :WikiArticle
161
+ #
162
+ # # Describes a list of the items someone wishes to get.
163
+ # # @return [RDF::Vocabulary::Term]
164
+ # attr_reader :WishList
165
+ #
166
+ # end
167
+ SiocTypes = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/types#")) do
168
+
169
+ # Ontology definition
170
+ ontology :"http://rdfs.org/sioc/types#",
171
+ "dc:description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.".freeze,
172
+ "dc:title": "SIOC Types Ontology Module Namespace".freeze,
173
+ "owl:imports": "sioc:".freeze,
174
+ "rdfs:seeAlso": "http://rdfs.org/sioc/spec/#sec-modules".freeze,
175
+ type: ["owl:Ontology".freeze, "owl:Thing".freeze]
176
+
177
+ # Class definitions
178
+ term :AddressBook,
179
+ comment: "Describes a collection of personal or organisational addresses.".freeze,
180
+ isDefinedBy: "sioctypes:".freeze,
181
+ label: "Address Book".freeze,
182
+ "rdfs:seeAlso": "foaf:Agent".freeze,
183
+ subClassOf: "sioc:Container".freeze,
184
+ type: "owl:Class".freeze
185
+ term :AnnotationSet,
186
+ comment: "Describes a set of annotations, for example, those created by a particular user or related to a particular topic.".freeze,
187
+ isDefinedBy: "sioctypes:".freeze,
188
+ label: "Annotation Set".freeze,
189
+ "rdfs:seeAlso": "http://www.w3.org/2000/10/annotation-ns#Annotation".freeze,
190
+ subClassOf: "sioc:Container".freeze,
191
+ type: "owl:Class".freeze
192
+ term :Answer,
193
+ comment: "A Post that provides an answer in reply to a Question.".freeze,
194
+ isDefinedBy: "sioctypes:".freeze,
195
+ label: "Answer".freeze,
196
+ subClassOf: "sioc:Post".freeze,
197
+ type: "owl:Class".freeze
198
+ term :ArgumentativeDiscussion,
199
+ comment: "Describes a discussion area where logical arguments can take place.".freeze,
200
+ isDefinedBy: "sioctypes:".freeze,
201
+ label: "Argumentative Discussion".freeze,
202
+ "rdfs:seeAlso": "http://purl.org/ibis#Idea".freeze,
203
+ subClassOf: "sioc:Forum".freeze,
204
+ type: "owl:Class".freeze
205
+ term :AudioChannel,
206
+ comment: "Describes a channel for distributing audio or sound files, for example, a podcast.".freeze,
207
+ isDefinedBy: "sioctypes:".freeze,
208
+ label: "Audio Channel".freeze,
209
+ "rdfs:seeAlso": "dcmitype:Sound".freeze,
210
+ subClassOf: "sioc:Container".freeze,
211
+ type: "owl:Class".freeze
212
+ term :BestAnswer,
213
+ comment: "A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts.".freeze,
214
+ isDefinedBy: "sioctypes:".freeze,
215
+ label: "Best Answer".freeze,
216
+ subClassOf: "sioc:Post".freeze,
217
+ type: "owl:Class".freeze
218
+ term :BlogPost,
219
+ comment: "Describes a post that is specifically made on a weblog.".freeze,
220
+ isDefinedBy: "sioctypes:".freeze,
221
+ label: "Blog Post".freeze,
222
+ "rdfs:seeAlso": "sioctypes:Weblog".freeze,
223
+ subClassOf: "sioc:Post".freeze,
224
+ type: "owl:Class".freeze
225
+ term :BoardPost,
226
+ comment: "Describes a post that is specifically made on a message board.".freeze,
227
+ isDefinedBy: "sioctypes:".freeze,
228
+ label: "Board Post".freeze,
229
+ "rdfs:seeAlso": "sioctypes:MessageBoard".freeze,
230
+ subClassOf: "sioc:Post".freeze,
231
+ type: "owl:Class".freeze
232
+ term :BookmarkFolder,
233
+ comment: "Describes a shared collection of bookmarks.".freeze,
234
+ isDefinedBy: "sioctypes:".freeze,
235
+ label: "Bookmark Folder".freeze,
236
+ "rdfs:seeAlso": "http://www.w3.org/2002/01/bookmark#Bookmark".freeze,
237
+ subClassOf: "sioc:Container".freeze,
238
+ type: "owl:Class".freeze
239
+ term :Briefcase,
240
+ comment: "Describes a briefcase or file service.".freeze,
241
+ isDefinedBy: "sioctypes:".freeze,
242
+ label: "Briefcase".freeze,
243
+ "rdfs:seeAlso": "foaf:Document".freeze,
244
+ subClassOf: "sioc:Container".freeze,
245
+ type: "owl:Class".freeze
246
+ term :Category,
247
+ comment: "Category is used on the object of sioc:topic to indicate that this resource is a category on a site.".freeze,
248
+ isDefinedBy: "sioctypes:".freeze,
249
+ label: "Category".freeze,
250
+ subClassOf: "http://www.w3.org/2008/05/skos#Concept".freeze,
251
+ type: "owl:Class".freeze
252
+ term :ChatChannel,
253
+ comment: "Describes a channel for chat or instant messages, for example, via IRC or IM.".freeze,
254
+ isDefinedBy: "sioctypes:".freeze,
255
+ label: "Chat Channel".freeze,
256
+ "rdfs:seeAlso": "sioctypes:InstantMessage".freeze,
257
+ subClassOf: "sioc:Forum".freeze,
258
+ type: "owl:Class".freeze
259
+ term :Comment,
260
+ comment: "Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site.".freeze,
261
+ isDefinedBy: "sioctypes:".freeze,
262
+ label: "Comment".freeze,
263
+ "rdfs:seeAlso": "sioctypes:Forum".freeze,
264
+ subClassOf: "sioc:Post".freeze,
265
+ type: "owl:Class".freeze
266
+ term :EventCalendar,
267
+ comment: "Describes a calendar of events.".freeze,
268
+ isDefinedBy: "sioctypes:".freeze,
269
+ label: "Event Calendar".freeze,
270
+ "rdfs:seeAlso": "ical:VEVENT".freeze,
271
+ subClassOf: "sioc:Container".freeze,
272
+ type: "owl:Class".freeze
273
+ term :FavouriteThings,
274
+ comment: "Describes a list or a collection of one's favourite things.".freeze,
275
+ isDefinedBy: "sioctypes:".freeze,
276
+ label: "Favourite Things".freeze,
277
+ subClassOf: "sioc:Container".freeze,
278
+ type: "owl:Class".freeze
279
+ term :ImageGallery,
280
+ comment: "Describes an image gallery, for example, a photo album.".freeze,
281
+ isDefinedBy: "sioctypes:".freeze,
282
+ label: "Image Gallery".freeze,
283
+ "rdfs:seeAlso": "http://www.w3.org/2003/12/exif/ns/IFD".freeze,
284
+ subClassOf: "sioc:Container".freeze,
285
+ type: "owl:Class".freeze
286
+ term :InstantMessage,
287
+ comment: "Describes an instant message, e.g. sent via Jabber.".freeze,
288
+ isDefinedBy: "sioctypes:".freeze,
289
+ label: "Instant Message".freeze,
290
+ "rdfs:seeAlso": "sioctypes:ChatChannel".freeze,
291
+ subClassOf: "sioc:Post".freeze,
292
+ type: "owl:Class".freeze
293
+ term :MailMessage,
294
+ comment: "Describes an electronic mail message, e.g. a post sent to a mailing list.".freeze,
295
+ isDefinedBy: "sioctypes:".freeze,
296
+ label: "Mail Message".freeze,
297
+ "rdfs:seeAlso": "sioctypes:MailingList".freeze,
298
+ subClassOf: "sioc:Post".freeze,
299
+ type: "owl:Class".freeze
300
+ term :MailingList,
301
+ comment: "Describes an electronic mailing list.".freeze,
302
+ isDefinedBy: "sioctypes:".freeze,
303
+ label: "Mailing List".freeze,
304
+ "rdfs:seeAlso": "sioctypes:MailMessage".freeze,
305
+ subClassOf: "sioc:Forum".freeze,
306
+ type: "owl:Class".freeze
307
+ term :MessageBoard,
308
+ comment: "Describes a message board, also known as an online bulletin board or discussion forum.".freeze,
309
+ isDefinedBy: "sioctypes:".freeze,
310
+ label: "Message Board".freeze,
311
+ "rdfs:seeAlso": "sioctypes:BoardPost".freeze,
312
+ subClassOf: "sioc:Forum".freeze,
313
+ type: "owl:Class".freeze
314
+ term :Microblog,
315
+ comment: "Describes a microblog, i.e. a blog consisting of short text messages.".freeze,
316
+ isDefinedBy: "sioctypes:".freeze,
317
+ label: "Microblog".freeze,
318
+ "rdfs:seeAlso": "sioctypes:MicroblogPost".freeze,
319
+ subClassOf: "sioc:Forum".freeze,
320
+ type: "owl:Class".freeze
321
+ term :MicroblogPost,
322
+ comment: "Describes a post that is specifically made on a microblog.".freeze,
323
+ isDefinedBy: "sioctypes:".freeze,
324
+ label: "Microblog Post".freeze,
325
+ "rdfs:seeAlso": "sioctypes:Microblog".freeze,
326
+ subClassOf: "sioc:Post".freeze,
327
+ type: "owl:Class".freeze
328
+ term :OfferList,
329
+ comment: "Describes a list of the items someone has available to offer.".freeze,
330
+ isDefinedBy: "sioctypes:".freeze,
331
+ label: "Offer List".freeze,
332
+ subClassOf: "sioc:Container".freeze,
333
+ type: "owl:Class".freeze
334
+ term :Playlist,
335
+ comment: "Describes a list of media items that have been played or can be played.".freeze,
336
+ isDefinedBy: "sioctypes:".freeze,
337
+ label: "Playlist".freeze,
338
+ subClassOf: "sioc:Container".freeze,
339
+ type: "owl:Class".freeze
340
+ term :Poll,
341
+ comment: "Describes a posted item that contains a poll or survey content.".freeze,
342
+ isDefinedBy: "sioctypes:".freeze,
343
+ label: "Poll".freeze,
344
+ "rdfs:seeAlso": "sioctypes:SurveyCollection".freeze,
345
+ subClassOf: "sioc:Item".freeze,
346
+ type: "owl:Class".freeze
347
+ term :ProjectDirectory,
348
+ comment: "Describes a project directory.".freeze,
349
+ isDefinedBy: "sioctypes:".freeze,
350
+ label: "Project Directory".freeze,
351
+ "rdfs:seeAlso": "doap:Project".freeze,
352
+ subClassOf: "sioc:Container".freeze,
353
+ type: "owl:Class".freeze
354
+ term :Question,
355
+ comment: "A Post that asks a Question.".freeze,
356
+ isDefinedBy: "sioctypes:".freeze,
357
+ label: "Question".freeze,
358
+ subClassOf: "sioc:Post".freeze,
359
+ type: "owl:Class".freeze
360
+ term :ReadingList,
361
+ comment: "Describes a list of books or other materials that have been read or are suggested for reading.".freeze,
362
+ isDefinedBy: "sioctypes:".freeze,
363
+ label: "Reading List".freeze,
364
+ subClassOf: "sioc:Container".freeze,
365
+ type: "owl:Class".freeze
366
+ term :ResumeBank,
367
+ comment: "Describes a collection of resumes.".freeze,
368
+ isDefinedBy: "sioctypes:".freeze,
369
+ label: "Resume Bank".freeze,
370
+ "rdfs:seeAlso": "http://captsolo.net/semweb/resume/cv.rdfs#Resume".freeze,
371
+ subClassOf: "sioc:Container".freeze,
372
+ type: "owl:Class".freeze
373
+ term :ReviewArea,
374
+ comment: "Describes an area where reviews are posted.".freeze,
375
+ isDefinedBy: "sioctypes:".freeze,
376
+ label: "Review Area".freeze,
377
+ "rdfs:seeAlso": ["http://purl.org/stuff/rev#Review".freeze, "http://www.isi.edu/webscripter/communityreview/abstract-review-o#Review".freeze],
378
+ subClassOf: "sioc:Container".freeze,
379
+ type: "owl:Class".freeze
380
+ term :SubscriptionList,
381
+ comment: "Describes a shared set of feed subscriptions.".freeze,
382
+ isDefinedBy: "sioctypes:".freeze,
383
+ label: "Subscription List".freeze,
384
+ "rdfs:seeAlso": "http://atomowl.org/ontologies/atomrdf#Feed".freeze,
385
+ subClassOf: "sioc:Container".freeze,
386
+ type: "owl:Class".freeze
387
+ term :SurveyCollection,
388
+ comment: "Describes an area where survey data can be collected, e.g. from polls.".freeze,
389
+ isDefinedBy: "sioctypes:".freeze,
390
+ label: "Survey Collection".freeze,
391
+ "rdfs:seeAlso": "sioctypes:Poll".freeze,
392
+ subClassOf: "sioc:Container".freeze,
393
+ type: "owl:Class".freeze
394
+ term :Tag,
395
+ comment: "Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site.".freeze,
396
+ isDefinedBy: "sioctypes:".freeze,
397
+ label: "Tag".freeze,
398
+ type: "owl:Class".freeze
399
+ term :VideoChannel,
400
+ comment: "Describes a channel for distributing videos (moving image) files, for example, a video podcast.".freeze,
401
+ isDefinedBy: "sioctypes:".freeze,
402
+ label: "Video Channel".freeze,
403
+ "rdfs:seeAlso": "dcmitype:MovingImage".freeze,
404
+ subClassOf: "sioc:Container".freeze,
405
+ type: "owl:Class".freeze
406
+ term :Weblog,
407
+ comment: "Describes a weblog (blog), i.e. an online journal.".freeze,
408
+ isDefinedBy: "sioctypes:".freeze,
409
+ label: "Weblog".freeze,
410
+ "rdfs:seeAlso": "sioctypes:BlogPost".freeze,
411
+ subClassOf: "sioc:Forum".freeze,
412
+ type: "owl:Class".freeze
413
+ term :Wiki,
414
+ comment: "Describes a wiki space.".freeze,
415
+ isDefinedBy: "sioctypes:".freeze,
416
+ label: "Wiki".freeze,
417
+ "rdfs:seeAlso": "sioctypes:WikiArticle".freeze,
418
+ subClassOf: "sioc:Container".freeze,
419
+ type: "owl:Class".freeze
420
+ term :WikiArticle,
421
+ comment: "Describes a wiki article.".freeze,
422
+ isDefinedBy: "sioctypes:".freeze,
423
+ label: "Wiki Article".freeze,
424
+ "rdfs:seeAlso": "sioctypes:Wiki".freeze,
425
+ subClassOf: "sioc:Item".freeze,
426
+ type: "owl:Class".freeze
427
+ term :WishList,
428
+ comment: "Describes a list of the items someone wishes to get.".freeze,
429
+ isDefinedBy: "sioctypes:".freeze,
430
+ label: "Wish List".freeze,
431
+ subClassOf: "sioc:Container".freeze,
432
+ type: "owl:Class".freeze
433
+ end
434
+ end