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
@@ -0,0 +1,319 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2006/http#
3
+ require 'rdf'
4
+ module RDF
5
+ class HT < StrictVocabulary("http://www.w3.org/2006/http#")
6
+
7
+ # Class definitions
8
+ term :ConnectRequest,
9
+ comment: %(The CONNECT request).freeze,
10
+ label: "Connect".freeze,
11
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
12
+ type: "rdfs:Class".freeze
13
+ term :Connection,
14
+ comment: %(An HTTP connection).freeze,
15
+ label: "Connection".freeze,
16
+ type: "rdfs:Class".freeze
17
+ term :DeleteRequest,
18
+ comment: %(The DELETE request).freeze,
19
+ label: "Delete".freeze,
20
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
21
+ type: "rdfs:Class".freeze
22
+ term :GetRequest,
23
+ comment: %(The GET request).freeze,
24
+ label: "Get".freeze,
25
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
26
+ type: "rdfs:Class".freeze
27
+ term :HeadRequest,
28
+ comment: %(The HEAD request).freeze,
29
+ label: "Head".freeze,
30
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
31
+ type: "rdfs:Class".freeze
32
+ term :HeaderElement,
33
+ comment: %(An element of a comma-separated list in a field value).freeze,
34
+ label: "Header element".freeze,
35
+ type: "rdfs:Class".freeze
36
+ term :HeaderName,
37
+ label: "HeaderName".freeze,
38
+ type: "owl:Class".freeze
39
+ term :MessageHeader,
40
+ comment: %(A message header according to section 4.2 of HTTP 1.1).freeze,
41
+ label: "Message header".freeze,
42
+ type: "rdfs:Class".freeze
43
+ term :NewResponseCode,
44
+ comment: %(New HTTP Response Code. If you want to define new header names, subclass this stub.).freeze,
45
+ label: "New Response Code".freeze,
46
+ type: ["owl:Thing".freeze, "rdfs:Class".freeze]
47
+ term :OptionsRequest,
48
+ comment: %(The OPTIONS request).freeze,
49
+ label: "Options".freeze,
50
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
51
+ type: "rdfs:Class".freeze
52
+ term :Param,
53
+ comment: %(A parameter for a header element).freeze,
54
+ label: "Parameter".freeze,
55
+ type: "rdfs:Class".freeze
56
+ term :PostRequest,
57
+ comment: %(The POST request).freeze,
58
+ label: "Post".freeze,
59
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
60
+ type: "rdfs:Class".freeze
61
+ term :PutRequest,
62
+ comment: %(The PUT request).freeze,
63
+ label: "Put".freeze,
64
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
65
+ type: "rdfs:Class".freeze
66
+ term :Request,
67
+ comment: %(An HTTP request).freeze,
68
+ label: "Request".freeze,
69
+ type: "rdfs:Class".freeze
70
+ term :RequestURI,
71
+ comment: %(The HTTP request URI).freeze,
72
+ label: "Request URI".freeze,
73
+ type: "rdfs:Class".freeze
74
+ term :Response,
75
+ comment: %(The HTTP Response).freeze,
76
+ label: "Response".freeze,
77
+ type: "rdfs:Class".freeze
78
+ term :ResponseCode,
79
+ comment: %(The HTTP Response Code).freeze,
80
+ label: "Response code".freeze,
81
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
82
+ term :TraceRequest,
83
+ comment: %(The TRACE request).freeze,
84
+ label: "Trace".freeze,
85
+ subClassOf: "http://www.w3.org/2006/http#Request".freeze,
86
+ type: "rdfs:Class".freeze
87
+
88
+ # Property definitions
89
+ property :abs_path,
90
+ comment: %(An absolute path used as request URI).freeze,
91
+ label: "Absolute path".freeze,
92
+ subPropertyOf: "http://www.w3.org/2006/http#requestURI".freeze,
93
+ type: "rdf:Property".freeze
94
+ property :absoluteURI,
95
+ comment: %(An absolute request URI).freeze,
96
+ label: "Absolute request URI".freeze,
97
+ subPropertyOf: "http://www.w3.org/2006/http#requestURI".freeze,
98
+ type: "rdf:Property".freeze
99
+ property :authority,
100
+ comment: %(An authority used as request URI).freeze,
101
+ label: "Authority".freeze,
102
+ subPropertyOf: "http://www.w3.org/2006/http#requestURI".freeze,
103
+ type: "rdf:Property".freeze
104
+ property :body,
105
+ comment: %(The HTTP entity body).freeze,
106
+ label: "Entity body".freeze,
107
+ type: "rdf:Property".freeze
108
+ property :connectionAuthority,
109
+ comment: %(An HTTP Connection authority).freeze,
110
+ domain: "http://www.w3.org/2006/http#Connection".freeze,
111
+ label: "Connection authority".freeze,
112
+ type: "rdf:Property".freeze
113
+ property :elementName,
114
+ comment: %(Has an element name).freeze,
115
+ domain: "http://www.w3.org/2006/http#HeaderElement".freeze,
116
+ label: "Element name".freeze,
117
+ range: "rdfs:Literal".freeze,
118
+ type: "rdf:Property".freeze
119
+ property :elementValue,
120
+ comment: %(Has an element value).freeze,
121
+ domain: "http://www.w3.org/2006/http#HeaderElement".freeze,
122
+ label: "Element value".freeze,
123
+ range: "rdfs:Literal".freeze,
124
+ type: "rdf:Property".freeze
125
+ property :fieldName,
126
+ comment: %(Has a field name).freeze,
127
+ domain: "http://www.w3.org/2006/http#MessageHeader".freeze,
128
+ label: "Field name".freeze,
129
+ type: "rdf:Property".freeze
130
+ property :fieldValue,
131
+ comment: %(Has a field value).freeze,
132
+ domain: "http://www.w3.org/2006/http#MessageHeader".freeze,
133
+ label: "Field value".freeze,
134
+ type: "rdf:Property".freeze
135
+ property :header,
136
+ comment: %(Has a header).freeze,
137
+ label: "Header".freeze,
138
+ range: "http://www.w3.org/2006/http#MessageHeader".freeze,
139
+ type: "rdf:Property".freeze
140
+ property :param,
141
+ comment: %(Has a parameter).freeze,
142
+ domain: "http://www.w3.org/2006/http#HeaderElement".freeze,
143
+ label: "Parameter".freeze,
144
+ range: "http://www.w3.org/2006/http#Param".freeze,
145
+ type: "rdf:Property".freeze
146
+ property :paramName,
147
+ comment: %(Has a parameter name).freeze,
148
+ domain: "http://www.w3.org/2006/http#Param".freeze,
149
+ label: "Parameter name".freeze,
150
+ range: "rdfs:Literal".freeze,
151
+ type: "rdf:Property".freeze
152
+ property :paramValue,
153
+ comment: %(Has a parameter value).freeze,
154
+ domain: "http://www.w3.org/2006/http#Param".freeze,
155
+ label: "Parameter value".freeze,
156
+ range: "rdfs:Literal".freeze,
157
+ type: "rdf:Property".freeze
158
+ property :request,
159
+ comment: %(Has an HTTP request).freeze,
160
+ domain: "http://www.w3.org/2006/http#Connection".freeze,
161
+ label: "Request".freeze,
162
+ range: "http://www.w3.org/2006/http#Request".freeze,
163
+ type: "rdf:Property".freeze
164
+ property :requestURI,
165
+ comment: %(Has an HTTP request URI).freeze,
166
+ domain: "http://www.w3.org/2006/http#Request".freeze,
167
+ label: "Request URI".freeze,
168
+ range: "http://www.w3.org/2006/http#RequestURI".freeze,
169
+ type: "rdf:Property".freeze
170
+ property :response,
171
+ comment: %(Has an HTTP response).freeze,
172
+ domain: "http://www.w3.org/2006/http#Request".freeze,
173
+ label: "Response".freeze,
174
+ range: "http://www.w3.org/2006/http#Response".freeze,
175
+ type: "rdf:Property".freeze
176
+ property :responseCode,
177
+ comment: %(Has an HTTP response code).freeze,
178
+ domain: "http://www.w3.org/2006/http#Response".freeze,
179
+ label: "Response code".freeze,
180
+ type: "rdf:Property".freeze
181
+ property :version,
182
+ comment: %(The HTTP version).freeze,
183
+ label: "Version".freeze,
184
+ type: "rdf:Property".freeze
185
+
186
+ # Extra definitions
187
+ term :"",
188
+ comment: [%(A namespace for describing HTTP messages
189
+ \(http://www.w3.org/Protocols/rfc2616/rfc2616.html\)).freeze, %(This has been obsoleted by http://www.w3.org/2011/http.rdfs).freeze],
190
+ "rdfs:seeAlso" => %(http://www.w3.org/2011/http.rdfs).freeze
191
+ term :"100",
192
+ label: "Continue".freeze,
193
+ type: "owl:Thing".freeze
194
+ term :"101",
195
+ label: "Switching Protocols".freeze,
196
+ type: "owl:Thing".freeze
197
+ term :"200",
198
+ label: "OK".freeze,
199
+ type: "owl:Thing".freeze
200
+ term :"201",
201
+ label: "Created".freeze,
202
+ type: "owl:Thing".freeze
203
+ term :"202",
204
+ label: "Accepted".freeze,
205
+ type: "owl:Thing".freeze
206
+ term :"203",
207
+ label: "Non-Authoritative Information".freeze,
208
+ type: "owl:Thing".freeze
209
+ term :"204",
210
+ label: "No Content".freeze,
211
+ type: "owl:Thing".freeze
212
+ term :"205",
213
+ label: "Reset Content".freeze,
214
+ type: "owl:Thing".freeze
215
+ term :"206",
216
+ label: "Partial Content".freeze,
217
+ type: "owl:Thing".freeze
218
+ term :"300",
219
+ label: "Multiple Choices".freeze,
220
+ type: "owl:Thing".freeze
221
+ term :"301",
222
+ label: "Moved Permanently".freeze,
223
+ type: "owl:Thing".freeze
224
+ term :"302",
225
+ label: "Found".freeze,
226
+ type: "owl:Thing".freeze
227
+ term :"303",
228
+ label: "See Other".freeze,
229
+ type: "owl:Thing".freeze
230
+ term :"304",
231
+ label: "Not Modified".freeze,
232
+ type: "owl:Thing".freeze
233
+ term :"305",
234
+ label: "Use Proxy".freeze,
235
+ type: "owl:Thing".freeze
236
+ term :"306",
237
+ label: "(Unused)".freeze,
238
+ type: "owl:Thing".freeze
239
+ term :"307",
240
+ label: "Temporary Redirect".freeze,
241
+ type: "owl:Thing".freeze
242
+ term :"400",
243
+ label: "Bad Request".freeze,
244
+ type: "owl:Thing".freeze
245
+ term :"401",
246
+ label: "Unauthorized".freeze,
247
+ type: "owl:Thing".freeze
248
+ term :"402",
249
+ label: "Payment Required".freeze,
250
+ type: "owl:Thing".freeze
251
+ term :"403",
252
+ label: "Forbidden".freeze,
253
+ type: "owl:Thing".freeze
254
+ term :"404",
255
+ label: "Not Found".freeze,
256
+ type: "owl:Thing".freeze
257
+ term :"405",
258
+ label: "Method Not Allowed".freeze,
259
+ type: "owl:Thing".freeze
260
+ term :"406",
261
+ label: "Not Acceptable".freeze,
262
+ type: "owl:Thing".freeze
263
+ term :"407",
264
+ label: "Proxy Authentication Required".freeze,
265
+ type: "owl:Thing".freeze
266
+ term :"408",
267
+ label: "Request Timeout".freeze,
268
+ type: "owl:Thing".freeze
269
+ term :"409",
270
+ label: "Conflict".freeze,
271
+ type: "owl:Thing".freeze
272
+ term :"410",
273
+ label: "Gone".freeze,
274
+ type: "owl:Thing".freeze
275
+ term :"411",
276
+ label: "Length Required".freeze,
277
+ type: "owl:Thing".freeze
278
+ term :"412",
279
+ label: "Precondition Failed".freeze,
280
+ type: "owl:Thing".freeze
281
+ term :"413",
282
+ label: "Request Entity Too Large".freeze,
283
+ type: "owl:Thing".freeze
284
+ term :"414",
285
+ label: "Request-URI Too Long".freeze,
286
+ type: "owl:Thing".freeze
287
+ term :"415",
288
+ label: "Unsupported Media Type".freeze,
289
+ type: "owl:Thing".freeze
290
+ term :"416",
291
+ label: "Requested Range Not Satisfiable".freeze,
292
+ type: "owl:Thing".freeze
293
+ term :"417",
294
+ label: "Expectation Failed".freeze,
295
+ type: "owl:Thing".freeze
296
+ term :"500",
297
+ label: "Internal Server Error".freeze,
298
+ type: "owl:Thing".freeze
299
+ term :"501",
300
+ label: "Not Implemented".freeze,
301
+ type: "owl:Thing".freeze
302
+ term :"502",
303
+ label: "Bad Gateway".freeze,
304
+ type: "owl:Thing".freeze
305
+ term :"503",
306
+ label: "Service Unavailable".freeze,
307
+ type: "owl:Thing".freeze
308
+ term :"504",
309
+ label: "Gateway Timeout".freeze,
310
+ type: "owl:Thing".freeze
311
+ term :"505",
312
+ label: "HTTP Version Not Supported".freeze,
313
+ type: "owl:Thing".freeze
314
+ term :asterisk,
315
+ comment: %(An asterisk used as request URI).freeze,
316
+ label: "Asterisk".freeze,
317
+ type: "owl:Thing".freeze
318
+ end
319
+ end
@@ -1,361 +1,519 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # This file generated automatically using vocab-fetch from http://www.w3.org/2002/12/cal/icaltzd#
2
3
  require 'rdf'
3
4
  module RDF
4
5
  class ICAL < StrictVocabulary("http://www.w3.org/2002/12/cal/icaltzd#")
5
6
 
6
7
  # Class definitions
7
- property :Vevent, :label => 'Event', :comment =>
8
- %(Provide a grouping of component properties that describe an
9
- event.)
10
- property :Vtodo, :label => 'To-do', :comment =>
11
- %(Provide a grouping of calendar properties that describe a
12
- to-do.)
13
- property :Vcalendar, :label => 'VCALENDAR'
14
- property :DomainOf_rrule
15
- property :List_of_Float
16
- property :Valarm, :comment =>
17
- %(Provide a grouping of component properties that define an
18
- alarm.)
19
- property :"Value_CAL-ADDRESS"
20
- property :Value_DATE
21
- property :Value_DURATION
22
- property :Value_PERIOD
23
- property :Value_RECUR
24
- property :Vfreebusy, :comment =>
25
- %(Provide a grouping of component properties that describe
26
- either a request for free/busy time, describe a response to a
27
- request for free/busy time or describe a published set of busy
28
- time.)
29
- property :Vjournal, :comment =>
30
- %(Provide a grouping of component properties that describe a
31
- journal entry.)
32
- property :Vtimezone, :comment =>
33
- %(Provide a grouping of component properties that defines a time
34
- zone.)
8
+ term :DomainOf_rrule,
9
+ label: "DomainOf_rrule".freeze,
10
+ type: "owl:Class".freeze
11
+ term :List_of_Float,
12
+ label: "List_of_Float".freeze,
13
+ type: "owl:Class".freeze
14
+ term :Valarm,
15
+ comment: %(Provide a grouping of component properties that define an alarm.).freeze,
16
+ label: "Valarm".freeze,
17
+ subClassOf: "_:g2187775280".freeze,
18
+ type: "owl:Class".freeze
19
+ term :"Value_CAL-ADDRESS",
20
+ label: "Value_CAL-ADDRESS".freeze,
21
+ type: "owl:Class".freeze
22
+ term :Value_DATE,
23
+ label: "Value_DATE".freeze,
24
+ type: "owl:Class".freeze
25
+ term :Value_DURATION,
26
+ label: "Value_DURATION".freeze,
27
+ type: "owl:Class".freeze
28
+ term :Value_PERIOD,
29
+ label: "Value_PERIOD".freeze,
30
+ type: "owl:Class".freeze
31
+ term :Value_RECUR,
32
+ label: "Value_RECUR".freeze,
33
+ type: "owl:Class".freeze
34
+ term :Vcalendar,
35
+ label: "VCALENDAR".freeze,
36
+ type: "owl:Class".freeze
37
+ term :Vevent,
38
+ comment: %(Provide a grouping of component properties that describe an event.).freeze,
39
+ label: "Event".freeze,
40
+ subClassOf: "_:g2180568020".freeze,
41
+ type: "owl:Class".freeze
42
+ term :Vfreebusy,
43
+ comment: %(Provide a grouping of component properties that describe either a request for free/busy time, describe a response to a request for free/busy time or describe a published set of busy time.).freeze,
44
+ label: "Vfreebusy".freeze,
45
+ subClassOf: "_:g2186534640".freeze,
46
+ type: "owl:Class".freeze
47
+ term :Vjournal,
48
+ comment: %(Provide a grouping of component properties that describe a journal entry.).freeze,
49
+ label: "Vjournal".freeze,
50
+ subClassOf: "_:g2171434220".freeze,
51
+ type: "owl:Class".freeze
52
+ term :Vtimezone,
53
+ comment: %(Provide a grouping of component properties that defines a time zone.).freeze,
54
+ label: "Vtimezone".freeze,
55
+ subClassOf: "_:g2187054040".freeze,
56
+ type: "owl:Class".freeze
57
+ term :Vtodo,
58
+ comment: %(Provide a grouping of calendar properties that describe a to-do.).freeze,
59
+ label: "To-do".freeze,
60
+ subClassOf: "_:g2232245260".freeze,
61
+ type: "owl:Class".freeze
35
62
 
36
63
  # Property definitions
37
- property :byday, :label => 'BYDAY'
38
- property :byhour, :label => 'BYHOUR'
39
- property :byminute, :label => 'BYMINUTE'
40
- property :bymonth, :label => 'BYMONTH'
41
- property :bysecond, :label => 'BYSECOND'
42
- property :bysetpos, :label => 'BYSETPOS'
43
- property :byweekno, :label => 'BYWEEKNO'
44
- property :byyearday, :label => 'BYYEARDAY'
45
- property :count, :label => 'COUNT'
46
- property :freq, :label => 'FREQ'
47
- property :interval, :label => 'INTERVAL'
48
- property :until, :label => 'UNTIL'
49
- property :wkst, :label => 'WKST'
50
- property :dtend, :label => 'end', :comment =>
51
- %(This property specifies the date and time that a calendar
52
- component ends.)
53
- property :dtend, :label => 'end', :comment =>
54
- %(default value type: DATE-TIME)
55
- property :"X-", :comment =>
56
- %(value type: TEXT)
57
- property :"X-", :comment =>
58
- %(This class of property provides a framework for defining
59
- non-standard properties.)
60
- property :action, :comment =>
61
- %(This property defines the action to be invoked when an alarm
62
- is triggered.)
63
- property :action, :comment =>
64
- %(value type: TEXT)
65
- property :altrep, :comment =>
66
- %(To specify an alternate text representation for the property
67
- value.)
68
- property :calscale, :comment =>
69
- %(value type: TEXT)
70
- property :calscale, :comment =>
71
- %(This property defines the calendar scale used for the calendar
72
- information specified in the iCalendar object.)
73
- property :categories, :comment =>
74
- %(value type: TEXT)
75
- property :categories, :comment =>
76
- %(This property defines the categories for a calendar component.)
77
- property :class, :comment =>
78
- %(value type: TEXT)
79
- property :class, :comment =>
80
- %(This property defines the access classification for a calendar
81
- component.)
82
- property :cn, :comment =>
83
- %(To specify the common name to be associated with the calendar
84
- user specified by the property.)
85
- property :comment, :comment =>
86
- %(value type: TEXT)
87
- property :comment, :comment =>
88
- %(This property specifies non-processing information intended to
89
- provide a comment to the calendar user.)
90
- property :completed, :comment =>
91
- %(This property defines the date and time that a to-do was
92
- actually completed.)
93
- property :completed, :comment =>
94
- %(value type: DATE-TIME)
95
- property :contact, :comment =>
96
- %(value type: TEXT)
97
- property :contact, :comment =>
98
- %(The property is used to represent contact information or
99
- alternately a reference to contact information associated with
100
- the calendar component.)
101
- property :created, :comment =>
102
- %(value type: DATE-TIME)
103
- property :created, :comment =>
104
- %(This property specifies the date and time that the calendar
105
- information was created by the calendar user agent in the
106
- calendar store. Note: This is analogous to the creation date
107
- and time for a file in the file system.)
108
- property :cutype, :comment =>
109
- %(To specify the type of calendar user specified by the
110
- property.)
111
- property :delegatedFrom, :comment =>
112
- %(To specify the calendar users that have delegated their
113
- participation to the calendar user specified by the property.)
114
- property :delegatedTo, :comment =>
115
- %(To specify the calendar users to whom the calendar user
116
- specified by the property has delegated participation.)
117
- property :description, :comment =>
118
- %(value type: TEXT)
119
- property :description, :comment =>
120
- %(This property provides a more complete description of the
121
- calendar component, than that provided by the "SUMMARY"
122
- property.)
123
- property :dir, :comment =>
124
- %(To specify reference to a directory entry associated with the
125
- calendar user specified by the property.)
126
- property :dtstamp, :comment =>
127
- %(value type: DATE-TIME)
128
- property :dtstamp, :comment =>
129
- %(The property indicates the date/time that the instance of the
130
- iCalendar object was created.)
131
- property :due, :comment =>
132
- %(default value type: DATE-TIME)
133
- property :due, :comment =>
134
- %(This property defines the date and time that a to-do is
135
- expected to be completed.)
136
- property :encoding, :comment =>
137
- %(To specify an alternate inline encoding for the property
138
- value.)
139
- property :exdate, :comment =>
140
- %(default value type: DATE-TIME)
141
- property :exdate, :comment =>
142
- %(This property defines the list of date/time exceptions for a
143
- recurring calendar component.)
144
- property :fbtype, :comment =>
145
- %(To specify the free or busy time type.)
146
- property :fmttype, :comment =>
147
- %(To specify the content type of a referenced object.)
148
- property :language, :comment =>
149
- %(To specify the language for text values in a property or
150
- property parameter.)
151
- property :lastModified, :comment =>
152
- %(The property specifies the date and time that the information
153
- associated with the calendar component was last revised in the
154
- calendar store. Note: This is analogous to the modification
155
- date and time for a file in the file system.)
156
- property :lastModified, :comment =>
157
- %(value type: DATE-TIME)
158
- property :member, :comment =>
159
- %(To specify the group or list membership of the calendar user
160
- specified by the property.)
161
- property :method, :comment =>
162
- %(value type: TEXT)
163
- property :method, :comment =>
164
- %(This property defines the iCalendar object method associated
165
- with the calendar object.)
166
- property :partstat, :comment =>
167
- %(To specify the participation status for the calendar user
168
- specified by the property.)
169
- property :percentComplete, :comment =>
170
- %(This property is used by an assignee or delegatee of a to-do
171
- to convey the percent completion of a to-do to the Organizer.)
172
- property :percentComplete, :comment =>
173
- %(value type: INTEGER)
174
- property :priority, :comment =>
175
- %(value type: INTEGER)
176
- property :priority, :comment =>
177
- %(The property defines the relative priority for a calendar
178
- component.)
179
- property :prodid, :comment =>
180
- %(value type: TEXT)
181
- property :prodid, :comment =>
182
- %(This property specifies the identifier for the product that
183
- created the iCalendar object.)
184
- property :range, :comment =>
185
- %(To specify the effective range of recurrence instances from
186
- the instance specified by the recurrence identifier specified
187
- by the property.)
188
- property :rdate, :comment =>
189
- %(This property defines the list of date/times for a recurrence
190
- set.)
191
- property :rdate, :comment =>
192
- %(default value type: DATE-TIME)
193
- property :recurrenceId, :comment =>
194
- %(default value type: DATE-TIME)
195
- property :recurrenceId, :comment =>
196
- %(This property is used in conjunction with the "UID" and
197
- "SEQUENCE" property to identify a specific instance of a
198
- recurring "VEVENT", "VTODO" or "VJOURNAL" calendar component.
199
- The property value is the effective value of the "DTSTART"
200
- property of the recurrence instance.)
201
- property :related, :comment =>
202
- %(To specify the relationship of the alarm trigger with respect
203
- to the start or end of the calendar component.)
204
- property :relatedTo, :comment =>
205
- %(value type: TEXT)
206
- property :relatedTo, :comment =>
207
- %(The property is used to represent a relationship or reference
208
- between one calendar component and another.)
209
- property :reltype, :comment =>
210
- %(To specify the type of hierarchical relationship associated
211
- with the calendar component specified by the property.)
212
- property :repeat, :comment =>
213
- %(This property defines the number of time the alarm should be
214
- repeated, after the initial trigger.)
215
- property :repeat, :comment =>
216
- %(value type: INTEGER)
217
- property :requestStatus, :comment =>
218
- %(value type: TEXT)
219
- property :requestStatus, :comment =>
220
- %(This property defines the status code returned for a
221
- scheduling request.)
222
- property :resources, :comment =>
223
- %(value type: TEXT)
224
- property :resources, :comment =>
225
- %(This property defines the equipment or resources anticipated
226
- for an activity specified by a calendar entity..)
227
- property :role, :comment =>
228
- %(To specify the participation role for the calendar user
229
- specified by the property.)
230
- property :rsvp, :comment =>
231
- %(To specify whether there is an expectation of a favor of a
232
- reply from the calendar user specified by the property value.)
233
- property :sentBy, :comment =>
234
- %(To specify the calendar user that is acting on behalf of the
235
- calendar user specified by the property.)
236
- property :sequence, :comment =>
237
- %(value type: integer)
238
- property :sequence, :comment =>
239
- %(This property defines the revision sequence number of the
240
- calendar component within a sequence of revisions.)
241
- property :status, :comment =>
242
- %(This property defines the overall status or confirmation for
243
- the calendar component.)
244
- property :status, :comment =>
245
- %(value type: TEXT)
246
- property :transp, :comment =>
247
- %(This property defines whether an event is transparent or not
248
- to busy time searches.)
249
- property :transp, :comment =>
250
- %(value type: TEXT)
251
- property :tzid, :comment =>
252
- %(This property specifies the text value that uniquely
253
- identifies the "VTIMEZONE" calendar component.)
254
- property :tzid, :comment =>
255
- %(To specify the identifier for the time zone definition for a
256
- time component in the property value.)
257
- property :tzid, :comment =>
258
- %(value type: TEXT)
259
- property :tzname, :comment =>
260
- %(This property specifies the customary designation for a time
261
- zone description.)
262
- property :tzname, :comment =>
263
- %(value type: TEXT)
264
- property :tzoffsetfrom, :comment =>
265
- %(value type: UTC-OFFSET)
266
- property :tzoffsetfrom, :comment =>
267
- %(This property specifies the offset which is in use prior to
268
- this time zone observance.)
269
- property :tzoffsetto, :comment =>
270
- %(value type: UTC-OFFSET)
271
- property :tzoffsetto, :comment =>
272
- %(This property specifies the offset which is in use in this
273
- time zone observance.)
274
- property :uid, :comment =>
275
- %(value type: TEXT)
276
- property :uid, :comment =>
277
- %(This property defines the persistent, globally unique
278
- identifier for the calendar component.)
279
- property :version, :comment =>
280
- %(This property specifies the identifier corresponding to the
281
- highest version number or the minimum and maximum range of the
282
- iCalendar specification that is required in order to interpret
283
- the iCalendar object.)
284
- property :version, :comment =>
285
- %(value type: TEXT)
286
- property :location, :label => 'location', :comment =>
287
- %(value type: TEXT)
288
- property :location, :label => 'location', :comment =>
289
- %(The property defines the intended venue for the activity
290
- defined by a calendar component.)
291
- property :dtstart, :label => 'start', :comment =>
292
- %(default value type: DATE-TIME)
293
- property :dtstart, :label => 'start', :comment =>
294
- %(This property specifies when the calendar component begins.)
295
- property :summary, :label => 'summary', :comment =>
296
- %(This property defines a short summary or subject for the
297
- calendar component.)
298
- property :summary, :label => 'summary', :comment =>
299
- %(value type: TEXT)
300
- property :daylight, :label => 'DAYLIGHT'
301
- property :standard, :label => 'STANDARD'
302
- property :attendee, :label => 'attendee', :comment =>
303
- %(The property defines an "Attendee" within a calendar
304
- component.)
305
- property :attendee, :label => 'attendee', :comment =>
306
- %(value type: CAL-ADDRESS)
307
- property :attach, :comment =>
308
- %(default value type: URI)
309
- property :attach, :comment =>
310
- %(The property provides the capability to associate a document
311
- object with a calendar component.)
312
- property :calAddress
313
- property :component
314
- property :duration, :comment =>
315
- %(The property specifies a positive duration of time.)
316
- property :duration, :comment =>
317
- %(value type: DURATION)
318
- property :exrule, :comment =>
319
- %(value type: RECUR)
320
- property :exrule, :comment =>
321
- %(This property defines a rule or repeating pattern for an
322
- exception to a recurrence set.)
323
- property :freebusy, :comment =>
324
- %(The property defines one or more free or busy time intervals.)
325
- property :freebusy, :comment =>
326
- %(value type: PERIOD)
327
- property :geo, :comment =>
328
- %(value type: list of FLOAT)
329
- property :geo, :comment =>
330
- %(This property specifies information related to the global
331
- position for the activity specified by a calendar component.)
332
- property :organizer, :comment =>
333
- %(value type: CAL-ADDRESS)
334
- property :organizer, :comment =>
335
- %(The property defines the organizer for a calendar component.)
336
- property :rrule, :comment =>
337
- %(This property defines a rule or repeating pattern for
338
- recurring events, to-dos, or time zone definitions.)
339
- property :rrule, :comment =>
340
- %(value type: RECUR)
341
- property :trigger, :comment =>
342
- %(default value type: DURATION)
343
- property :trigger, :comment =>
344
- %(This property specifies when an alarm will trigger.)
345
- property :tzurl, :comment =>
346
- %(value type: URI)
347
- property :tzurl, :comment =>
348
- %(The TZURL provides a means for a VTIMEZONE component to point
349
- to a network location that can be used to retrieve an up-to-
350
- date version of itself.)
351
- property :url, :label => 'see also', :comment =>
352
- %(value type: URI)
353
- property :url, :label => 'see also', :comment =>
354
- %(This property defines a Uniform Resource Locator \(URL\)
355
- associated with the iCalendar object.)
64
+ property :"X-",
65
+ comment: %(This class of property provides a framework for defining non-standard properties.).freeze,
66
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
67
+ label: "X-".freeze,
68
+ range: "xsd:string".freeze,
69
+ type: "owl:DatatypeProperty".freeze
70
+ property :action,
71
+ comment: %(This property defines the action to be invoked when an alarm is triggered.).freeze,
72
+ domain: "_:DomainOf_action".freeze,
73
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
74
+ label: "action".freeze,
75
+ range: "xsd:string".freeze,
76
+ type: "owl:DatatypeProperty".freeze
77
+ property :altrep,
78
+ comment: %(To specify an alternate text representation for the property value.).freeze,
79
+ label: "altrep".freeze,
80
+ type: "owl:DatatypeProperty".freeze
81
+ property :attach,
82
+ comment: %(The property provides the capability to associate a document object with a calendar component.).freeze,
83
+ domain: "_:DomainOf_attach".freeze,
84
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
85
+ label: "attach".freeze,
86
+ type: "owl:ObjectProperty".freeze
87
+ property :attendee,
88
+ comment: %(The property defines an "Attendee" within a calendar component.).freeze,
89
+ domain: "_:DomainOf_attendee".freeze,
90
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(CAL-ADDRESS).freeze,
91
+ label: "attendee".freeze,
92
+ range: "ical:Value_CAL-ADDRESS".freeze,
93
+ type: "owl:ObjectProperty".freeze
94
+ property :byday,
95
+ label: "BYDAY".freeze,
96
+ type: "owl:DatatypeProperty".freeze
97
+ property :byhour,
98
+ label: "BYHOUR".freeze,
99
+ type: "owl:DatatypeProperty".freeze
100
+ property :byminute,
101
+ label: "BYMINUTE".freeze,
102
+ type: "owl:DatatypeProperty".freeze
103
+ property :bymonth,
104
+ label: "BYMONTH".freeze,
105
+ type: "owl:DatatypeProperty".freeze
106
+ property :bysecond,
107
+ label: "BYSECOND".freeze,
108
+ type: "owl:DatatypeProperty".freeze
109
+ property :bysetpos,
110
+ label: "BYSETPOS".freeze,
111
+ type: "owl:DatatypeProperty".freeze
112
+ property :byweekno,
113
+ label: "BYWEEKNO".freeze,
114
+ type: "owl:DatatypeProperty".freeze
115
+ property :byyearday,
116
+ label: "BYYEARDAY".freeze,
117
+ type: "owl:DatatypeProperty".freeze
118
+ property :calAddress,
119
+ label: "calAddress".freeze,
120
+ type: "owl:ObjectProperty".freeze
121
+ property :calscale,
122
+ comment: %(This property defines the calendar scale used for the calendar information specified in the iCalendar object.).freeze,
123
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
124
+ label: "calscale".freeze,
125
+ range: "xsd:string".freeze,
126
+ type: "owl:DatatypeProperty".freeze
127
+ property :categories,
128
+ comment: %(This property defines the categories for a calendar component.).freeze,
129
+ domain: "_:DomainOf_categories".freeze,
130
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
131
+ label: "categories".freeze,
132
+ range: "xsd:string".freeze,
133
+ type: "owl:DatatypeProperty".freeze
134
+ property :class,
135
+ comment: %(This property defines the access classification for a calendar component.).freeze,
136
+ domain: "_:DomainOf_class".freeze,
137
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
138
+ label: "class".freeze,
139
+ range: "xsd:string".freeze,
140
+ type: "owl:DatatypeProperty".freeze
141
+ property :cn,
142
+ comment: %(To specify the common name to be associated with the calendar user specified by the property.).freeze,
143
+ label: "cn".freeze,
144
+ type: "owl:DatatypeProperty".freeze
145
+ property :comment,
146
+ comment: %(This property specifies non-processing information intended to provide a comment to the calendar user.).freeze,
147
+ domain: "_:DomainOf_comment".freeze,
148
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
149
+ label: "comment".freeze,
150
+ range: "xsd:string".freeze,
151
+ type: "owl:DatatypeProperty".freeze
152
+ property :completed,
153
+ comment: %(This property defines the date and time that a to-do was actually completed.).freeze,
154
+ domain: "ical:Vtodo".freeze,
155
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
156
+ label: "completed".freeze,
157
+ range: "ical:Value_DATE-TIME".freeze,
158
+ type: "owl:DatatypeProperty".freeze
159
+ property :component,
160
+ label: "component".freeze,
161
+ type: "owl:ObjectProperty".freeze
162
+ property :contact,
163
+ comment: %(The property is used to represent contact information or alternately a reference to contact information associated with the calendar component.).freeze,
164
+ domain: "_:DomainOf_contact".freeze,
165
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
166
+ label: "contact".freeze,
167
+ range: "xsd:string".freeze,
168
+ type: "owl:DatatypeProperty".freeze
169
+ property :count,
170
+ label: "COUNT".freeze,
171
+ type: "owl:DatatypeProperty".freeze
172
+ property :created,
173
+ comment: %(This property specifies the date and time that the calendar information was created by the calendar user agent in the calendar store. Note: This is analogous to the creation date and time for a file in the file system.).freeze,
174
+ domain: "_:DomainOf_created".freeze,
175
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
176
+ label: "created".freeze,
177
+ range: "ical:Value_DATE-TIME".freeze,
178
+ type: "owl:DatatypeProperty".freeze
179
+ property :cutype,
180
+ comment: %(To specify the type of calendar user specified by the property.).freeze,
181
+ label: "cutype".freeze,
182
+ type: "owl:DatatypeProperty".freeze
183
+ property :daylight,
184
+ label: "DAYLIGHT".freeze,
185
+ type: "owl:ObjectProperty".freeze
186
+ property :delegatedFrom,
187
+ comment: %(To specify the calendar users that have delegated their participation to the calendar user specified by the property.).freeze,
188
+ label: "delegatedFrom".freeze,
189
+ type: "owl:DatatypeProperty".freeze
190
+ property :delegatedTo,
191
+ comment: %(To specify the calendar users to whom the calendar user specified by the property has delegated participation.).freeze,
192
+ label: "delegatedTo".freeze,
193
+ type: "owl:DatatypeProperty".freeze
194
+ property :description,
195
+ comment: %(This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property.).freeze,
196
+ domain: "_:DomainOf_description".freeze,
197
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
198
+ label: "description".freeze,
199
+ range: "xsd:string".freeze,
200
+ type: "owl:DatatypeProperty".freeze
201
+ property :dir,
202
+ comment: %(To specify reference to a directory entry associated with the calendar user specified by the property.).freeze,
203
+ label: "dir".freeze,
204
+ type: "owl:DatatypeProperty".freeze
205
+ property :dtend,
206
+ comment: %(This property specifies the date and time that a calendar component ends.).freeze,
207
+ domain: "_:DomainOf_dtend".freeze,
208
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
209
+ label: "end".freeze,
210
+ type: "owl:DatatypeProperty".freeze
211
+ property :dtstamp,
212
+ comment: %(The property indicates the date/time that the instance of the iCalendar object was created.).freeze,
213
+ domain: "_:DomainOf_dtstamp".freeze,
214
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
215
+ label: "dtstamp".freeze,
216
+ range: "ical:Value_DATE-TIME".freeze,
217
+ type: "owl:DatatypeProperty".freeze
218
+ property :dtstart,
219
+ comment: %(This property specifies when the calendar component begins.).freeze,
220
+ domain: "_:DomainOf_dtstart".freeze,
221
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
222
+ label: "start".freeze,
223
+ type: "owl:DatatypeProperty".freeze
224
+ property :due,
225
+ comment: %(This property defines the date and time that a to-do is expected to be completed.).freeze,
226
+ domain: "ical:Vtodo".freeze,
227
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
228
+ label: "due".freeze,
229
+ type: "owl:DatatypeProperty".freeze
230
+ property :duration,
231
+ comment: %(The property specifies a positive duration of time.).freeze,
232
+ domain: "_:DomainOf_duration".freeze,
233
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DURATION).freeze,
234
+ label: "duration".freeze,
235
+ range: "ical:Value_DURATION".freeze,
236
+ type: "owl:ObjectProperty".freeze
237
+ property :encoding,
238
+ comment: %(To specify an alternate inline encoding for the property value.).freeze,
239
+ label: "encoding".freeze,
240
+ type: "owl:DatatypeProperty".freeze
241
+ property :exdate,
242
+ comment: %(This property defines the list of date/time exceptions for a recurring calendar component.).freeze,
243
+ domain: "ical:DomainOf_rrule".freeze,
244
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
245
+ label: "exdate".freeze,
246
+ type: "owl:DatatypeProperty".freeze
247
+ property :exrule,
248
+ comment: %(This property defines a rule or repeating pattern for an exception to a recurrence set.).freeze,
249
+ domain: "_:DomainOf_exrule".freeze,
250
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(RECUR).freeze,
251
+ label: "exrule".freeze,
252
+ range: "ical:Value_RECUR".freeze,
253
+ type: "owl:ObjectProperty".freeze
254
+ property :fbtype,
255
+ comment: %(To specify the free or busy time type.).freeze,
256
+ label: "fbtype".freeze,
257
+ type: "owl:DatatypeProperty".freeze
258
+ property :fmttype,
259
+ comment: %(To specify the content type of a referenced object.).freeze,
260
+ label: "fmttype".freeze,
261
+ type: "owl:DatatypeProperty".freeze
262
+ property :freebusy,
263
+ comment: %(The property defines one or more free or busy time intervals.).freeze,
264
+ domain: "_:DomainOf_freebusy".freeze,
265
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(PERIOD).freeze,
266
+ label: "freebusy".freeze,
267
+ range: "ical:Value_PERIOD".freeze,
268
+ type: "owl:ObjectProperty".freeze
269
+ property :freq,
270
+ label: "FREQ".freeze,
271
+ type: "owl:DatatypeProperty".freeze
272
+ property :geo,
273
+ comment: %(This property specifies information related to the global position for the activity specified by a calendar component.).freeze,
274
+ domain: "_:DomainOf_geo".freeze,
275
+ "http://www.w3.org/2002/12/cal/icalSpec#valueListType" => %(FLOAT).freeze,
276
+ label: "geo".freeze,
277
+ range: "ical:List_of_Float".freeze,
278
+ type: "owl:ObjectProperty".freeze
279
+ property :interval,
280
+ label: "INTERVAL".freeze,
281
+ type: "owl:DatatypeProperty".freeze
282
+ property :language,
283
+ comment: %(To specify the language for text values in a property or property parameter.).freeze,
284
+ label: "language".freeze,
285
+ type: "owl:DatatypeProperty".freeze
286
+ property :lastModified,
287
+ comment: %(The property specifies the date and time that the information associated with the calendar component was last revised in the calendar store. Note: This is analogous to the modification date and time for a file in the file system.).freeze,
288
+ domain: "_:DomainOf_lastModified".freeze,
289
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
290
+ label: "lastModified".freeze,
291
+ range: "ical:Value_DATE-TIME".freeze,
292
+ type: "owl:DatatypeProperty".freeze
293
+ property :location,
294
+ comment: %(The property defines the intended venue for the activity defined by a calendar component.).freeze,
295
+ domain: "_:DomainOf_location".freeze,
296
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
297
+ label: "location".freeze,
298
+ range: "xsd:string".freeze,
299
+ type: "owl:DatatypeProperty".freeze
300
+ property :member,
301
+ comment: %(To specify the group or list membership of the calendar user specified by the property.).freeze,
302
+ label: "member".freeze,
303
+ type: "owl:DatatypeProperty".freeze
304
+ property :method,
305
+ comment: %(This property defines the iCalendar object method associated with the calendar object.).freeze,
306
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
307
+ label: "method".freeze,
308
+ range: "xsd:string".freeze,
309
+ type: "owl:DatatypeProperty".freeze
310
+ property :organizer,
311
+ comment: %(The property defines the organizer for a calendar component.).freeze,
312
+ domain: "_:DomainOf_organizer".freeze,
313
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(CAL-ADDRESS).freeze,
314
+ label: "organizer".freeze,
315
+ range: "ical:Value_CAL-ADDRESS".freeze,
316
+ type: "owl:ObjectProperty".freeze
317
+ property :partstat,
318
+ comment: %(To specify the participation status for the calendar user specified by the property.).freeze,
319
+ label: "partstat".freeze,
320
+ type: "owl:DatatypeProperty".freeze
321
+ property :percentComplete,
322
+ comment: %(This property is used by an assignee or delegatee of a to-do to convey the percent completion of a to-do to the Organizer.).freeze,
323
+ domain: "ical:Vtodo".freeze,
324
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
325
+ label: "percentComplete".freeze,
326
+ range: "xsd:integer".freeze,
327
+ type: "owl:DatatypeProperty".freeze
328
+ property :priority,
329
+ comment: %(The property defines the relative priority for a calendar component.).freeze,
330
+ domain: "_:DomainOf_priority".freeze,
331
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
332
+ label: "priority".freeze,
333
+ range: "xsd:integer".freeze,
334
+ type: "owl:DatatypeProperty".freeze
335
+ property :prodid,
336
+ comment: %(This property specifies the identifier for the product that created the iCalendar object.).freeze,
337
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
338
+ label: "prodid".freeze,
339
+ range: "xsd:string".freeze,
340
+ type: "owl:DatatypeProperty".freeze
341
+ property :range,
342
+ comment: %(To specify the effective range of recurrence instances from the instance specified by the recurrence identifier specified by the property.).freeze,
343
+ label: "range".freeze,
344
+ type: "owl:DatatypeProperty".freeze
345
+ property :rdate,
346
+ comment: %(This property defines the list of date/times for a recurrence set.).freeze,
347
+ domain: "_:DomainOf_rdate".freeze,
348
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
349
+ label: "rdate".freeze,
350
+ type: "owl:DatatypeProperty".freeze
351
+ property :recurrenceId,
352
+ comment: %(This property is used in conjunction with the "UID" and "SEQUENCE" property to identify a specific instance of a recurring "VEVENT", "VTODO" or "VJOURNAL" calendar component. The property value is the effective value of the "DTSTART" property of the recurrence instance.).freeze,
353
+ domain: "ical:DomainOf_rrule".freeze,
354
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
355
+ label: "recurrenceId".freeze,
356
+ type: "owl:DatatypeProperty".freeze
357
+ property :related,
358
+ comment: %(To specify the relationship of the alarm trigger with respect to the start or end of the calendar component.).freeze,
359
+ label: "related".freeze,
360
+ type: "owl:DatatypeProperty".freeze
361
+ property :relatedTo,
362
+ comment: %(The property is used to represent a relationship or reference between one calendar component and another.).freeze,
363
+ domain: "_:DomainOf_relatedTo".freeze,
364
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
365
+ label: "relatedTo".freeze,
366
+ range: "xsd:string".freeze,
367
+ type: "owl:DatatypeProperty".freeze
368
+ property :reltype,
369
+ comment: %(To specify the type of hierarchical relationship associated with the calendar component specified by the property.).freeze,
370
+ label: "reltype".freeze,
371
+ type: "owl:DatatypeProperty".freeze
372
+ property :repeat,
373
+ comment: %(This property defines the number of time the alarm should be repeated, after the initial trigger.).freeze,
374
+ domain: "ical:Valarm".freeze,
375
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
376
+ label: "repeat".freeze,
377
+ range: "xsd:integer".freeze,
378
+ type: "owl:DatatypeProperty".freeze
379
+ property :requestStatus,
380
+ comment: %(This property defines the status code returned for a scheduling request.).freeze,
381
+ domain: "_:DomainOf_requestStatus".freeze,
382
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
383
+ label: "requestStatus".freeze,
384
+ range: "xsd:string".freeze,
385
+ type: "owl:DatatypeProperty".freeze
386
+ property :resources,
387
+ comment: %(This property defines the equipment or resources anticipated for an activity specified by a calendar entity..).freeze,
388
+ domain: "_:DomainOf_resources".freeze,
389
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
390
+ label: "resources".freeze,
391
+ range: "xsd:string".freeze,
392
+ type: "owl:DatatypeProperty".freeze
393
+ property :role,
394
+ comment: %(To specify the participation role for the calendar user specified by the property.).freeze,
395
+ label: "role".freeze,
396
+ type: "owl:DatatypeProperty".freeze
397
+ property :rrule,
398
+ comment: %(This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.).freeze,
399
+ domain: "_:DomainOf_rrule".freeze,
400
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(RECUR).freeze,
401
+ label: "rrule".freeze,
402
+ range: "ical:Value_RECUR".freeze,
403
+ type: "owl:ObjectProperty".freeze
404
+ property :rsvp,
405
+ comment: %(To specify whether there is an expectation of a favor of a reply from the calendar user specified by the property value.).freeze,
406
+ label: "rsvp".freeze,
407
+ type: "owl:DatatypeProperty".freeze
408
+ property :sentBy,
409
+ comment: %(To specify the calendar user that is acting on behalf of the calendar user specified by the property.).freeze,
410
+ label: "sentBy".freeze,
411
+ type: "owl:DatatypeProperty".freeze
412
+ property :sequence,
413
+ comment: %(This property defines the revision sequence number of the calendar component within a sequence of revisions.).freeze,
414
+ domain: "_:DomainOf_sequence".freeze,
415
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(integer).freeze,
416
+ label: "sequence".freeze,
417
+ range: "xsd:integer".freeze,
418
+ type: "owl:DatatypeProperty".freeze
419
+ property :standard,
420
+ label: "STANDARD".freeze,
421
+ type: "owl:ObjectProperty".freeze
422
+ property :status,
423
+ comment: %(This property defines the overall status or confirmation for the calendar component.).freeze,
424
+ domain: "_:DomainOf_status".freeze,
425
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
426
+ label: "status".freeze,
427
+ range: "xsd:string".freeze,
428
+ type: "owl:DatatypeProperty".freeze
429
+ property :summary,
430
+ comment: %(This property defines a short summary or subject for the calendar component.).freeze,
431
+ domain: "_:DomainOf_summary".freeze,
432
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
433
+ label: "summary".freeze,
434
+ range: "xsd:string".freeze,
435
+ subPropertyOf: "rdfs:label".freeze,
436
+ type: "owl:DatatypeProperty".freeze
437
+ property :transp,
438
+ comment: %(This property defines whether an event is transparent or not to busy time searches.).freeze,
439
+ domain: "ical:Vevent".freeze,
440
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
441
+ label: "transp".freeze,
442
+ range: "xsd:string".freeze,
443
+ type: "owl:DatatypeProperty".freeze
444
+ property :trigger,
445
+ comment: %(This property specifies when an alarm will trigger.).freeze,
446
+ domain: "_:DomainOf_trigger".freeze,
447
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DURATION).freeze,
448
+ label: "trigger".freeze,
449
+ range: "_:g2228882540".freeze,
450
+ type: "owl:ObjectProperty".freeze
451
+ property :tzid,
452
+ comment: %(This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component.).freeze,
453
+ domain: "ical:Vtimezone".freeze,
454
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
455
+ label: "tzid".freeze,
456
+ range: "xsd:string".freeze,
457
+ type: "owl:DatatypeProperty".freeze
458
+ property :tzname,
459
+ comment: %(This property specifies the customary designation for a time zone description.).freeze,
460
+ domain: "ical:Vtimezone".freeze,
461
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
462
+ label: "tzname".freeze,
463
+ range: "xsd:string".freeze,
464
+ type: "owl:DatatypeProperty".freeze
465
+ property :tzoffsetfrom,
466
+ comment: %(This property specifies the offset which is in use prior to this time zone observance.).freeze,
467
+ domain: "_:DomainOf_tzoffsetfrom".freeze,
468
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(UTC-OFFSET).freeze,
469
+ label: "tzoffsetfrom".freeze,
470
+ range: "xsd:string".freeze,
471
+ type: "owl:DatatypeProperty".freeze
472
+ property :tzoffsetto,
473
+ comment: %(This property specifies the offset which is in use in this time zone observance.).freeze,
474
+ domain: "ical:Vtimezone".freeze,
475
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(UTC-OFFSET).freeze,
476
+ label: "tzoffsetto".freeze,
477
+ range: "xsd:string".freeze,
478
+ type: "owl:DatatypeProperty".freeze
479
+ property :tzurl,
480
+ comment: %(The TZURL provides a means for a VTIMEZONE component to point to a network location that can be used to retrieve an up-to- date version of itself.).freeze,
481
+ domain: "_:DomainOf_tzurl".freeze,
482
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
483
+ label: "tzurl".freeze,
484
+ type: "owl:ObjectProperty".freeze
485
+ property :uid,
486
+ comment: %(This property defines the persistent, globally unique identifier for the calendar component.).freeze,
487
+ domain: "_:DomainOf_uid".freeze,
488
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
489
+ label: "uid".freeze,
490
+ range: "xsd:string".freeze,
491
+ type: "owl:DatatypeProperty".freeze
492
+ property :until,
493
+ label: "UNTIL".freeze,
494
+ type: "owl:DatatypeProperty".freeze
495
+ property :url,
496
+ comment: %(This property defines a Uniform Resource Locator \(URL\) associated with the iCalendar object.).freeze,
497
+ domain: "_:DomainOf_url".freeze,
498
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
499
+ label: "see also".freeze,
500
+ type: "owl:ObjectProperty".freeze
501
+ property :version,
502
+ comment: %(This property specifies the identifier corresponding to the highest version number or the minimum and maximum range of the iCalendar specification that is required in order to interpret the iCalendar object.).freeze,
503
+ "http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
504
+ label: "version".freeze,
505
+ range: "xsd:string".freeze,
506
+ type: "owl:DatatypeProperty".freeze
507
+ property :wkst,
508
+ label: "WKST".freeze,
509
+ type: "owl:DatatypeProperty".freeze
356
510
 
357
511
  # Datatype definitions
358
- property :"Value_DATE-TIME"
359
- property :dateTime
512
+ term :"Value_DATE-TIME",
513
+ label: "Value_DATE-TIME".freeze,
514
+ type: "rdfs:Datatype".freeze
515
+ term :dateTime,
516
+ label: "dateTime".freeze,
517
+ type: "rdfs:Datatype".freeze
360
518
  end
361
519
  end