rdf-vocab 3.1.4 → 3.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +14 -28
- data/lib/rdf/vocab/acl.rb +84 -1
- data/lib/rdf/vocab/as.rb +466 -1
- data/lib/rdf/vocab/bf2.rb +1317 -1
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +496 -1
- data/lib/rdf/vocab/cc.rb +107 -1
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1303 -1
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +1 -1
- data/lib/rdf/vocab/dc11.rb +63 -1
- data/lib/rdf/vocab/dcat.rb +152 -4
- data/lib/rdf/vocab/dcmitype.rb +1 -1
- data/lib/rdf/vocab/disco.rb +228 -1
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +753 -1
- data/lib/rdf/vocab/earl.rb +135 -1
- data/lib/rdf/vocab/ebucore.rb +7335 -1974
- data/lib/rdf/vocab/edm.rb +150 -1
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +253 -203
- data/lib/rdf/vocab/fcrepo4.rb +377 -1
- data/lib/rdf/vocab/foaf.rb +305 -1
- data/lib/rdf/vocab/geo.rb +39 -1
- data/lib/rdf/vocab/geojson.rb +66 -1
- data/lib/rdf/vocab/geonames.rb +166 -1
- data/lib/rdf/vocab/gr.rb +684 -1
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +164 -1
- data/lib/rdf/vocab/hydra.rb +236 -2
- data/lib/rdf/vocab/iana.rb +230 -1
- data/lib/rdf/vocab/ical.rb +462 -1
- data/lib/rdf/vocab/identifiers.rb +462 -1
- data/lib/rdf/vocab/iiif.rb +136 -1
- data/lib/rdf/vocab/jsonld.rb +135 -1
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +1 -1
- data/lib/rdf/vocab/ma.rb +381 -1
- data/lib/rdf/vocab/mads.rb +600 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
- data/lib/rdf/vocab/mo.rb +919 -1
- data/lib/rdf/vocab/mods.rb +516 -1
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +275 -1
- data/lib/rdf/vocab/og.rb +78 -1
- data/lib/rdf/vocab/ogc.rb +34 -1
- data/lib/rdf/vocab/ore.rb +56 -1
- data/lib/rdf/vocab/org.rb +189 -1
- data/lib/rdf/vocab/pcdm.rb +47 -1
- data/lib/rdf/vocab/pplan.rb +64 -1
- data/lib/rdf/vocab/premis.rb +1266 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
- data/lib/rdf/vocab/prov.rb +619 -1
- data/lib/rdf/vocab/ptr.rb +138 -1
- data/lib/rdf/vocab/rightsstatements.rb +5 -1
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +1 -1
- data/lib/rdf/vocab/schema.rb +10032 -12
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +736 -1
- data/lib/rdf/vocab/sioc.rb +401 -1
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
- data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
- data/lib/rdf/vocab/skos.rb +119 -1
- data/lib/rdf/vocab/skosxl.rb +30 -1
- data/lib/rdf/vocab/v.rb +291 -1
- data/lib/rdf/vocab/vcard.rb +508 -1
- data/lib/rdf/vocab/vmd.rb +291 -1
- data/lib/rdf/vocab/void.rb +121 -1
- data/lib/rdf/vocab/vs.rb +19 -1
- data/lib/rdf/vocab/wdrs.rb +90 -1
- data/lib/rdf/vocab/wot.rb +78 -1
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +338 -1
- data/lib/rdf/vocab/xkos.rb +150 -1
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +15 -8
data/lib/rdf/vocab/ical.rb
CHANGED
@@ -5,9 +5,470 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/2002/12/cal/icaltzd#>
|
8
|
+
# #
|
9
|
+
# # @version $Id: icaltzd.rdf,v 1.6 2007/06/28 18:22:09 connolly Exp $
|
10
|
+
# # @version subject to change with notice to www-rdf-calendar@w3.org
|
11
|
+
# # @see http://www.w3.org/2002/12/cal/
|
12
|
+
# # @see http://esw.w3.org/topic/RdfCalendar
|
13
|
+
# # @see http://lists.w3.org/Archives/Public/www-rdf-calendar/
|
8
14
|
# class ICAL < RDF::StrictVocabulary
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :DomainOf_rrule
|
17
|
+
#
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :List_of_Float
|
20
|
+
#
|
21
|
+
# # Provide a grouping of component properties that define an alarm.
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :Valarm
|
24
|
+
#
|
25
|
+
# # @return [RDF::Vocabulary::Term]
|
26
|
+
# attr_reader :Value_DATE
|
27
|
+
#
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :Value_DURATION
|
30
|
+
#
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :Value_PERIOD
|
33
|
+
#
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :Value_RECUR
|
36
|
+
#
|
37
|
+
# # @return [RDF::Vocabulary::Term]
|
38
|
+
# attr_reader :Vcalendar
|
39
|
+
#
|
40
|
+
# # Provide a grouping of component properties that describe an event.
|
41
|
+
# # @return [RDF::Vocabulary::Term]
|
42
|
+
# attr_reader :Vevent
|
43
|
+
#
|
44
|
+
# # 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.
|
45
|
+
# # @return [RDF::Vocabulary::Term]
|
46
|
+
# attr_reader :Vfreebusy
|
47
|
+
#
|
48
|
+
# # Provide a grouping of component properties that describe a journal entry.
|
49
|
+
# # @return [RDF::Vocabulary::Term]
|
50
|
+
# attr_reader :Vjournal
|
51
|
+
#
|
52
|
+
# # Provide a grouping of component properties that defines a time zone.
|
53
|
+
# # @return [RDF::Vocabulary::Term]
|
54
|
+
# attr_reader :Vtimezone
|
55
|
+
#
|
56
|
+
# # Provide a grouping of calendar properties that describe a to-do.
|
57
|
+
# # @return [RDF::Vocabulary::Term]
|
58
|
+
# attr_reader :Vtodo
|
59
|
+
#
|
60
|
+
# # value type: TEXT
|
61
|
+
# #
|
62
|
+
# # This property defines the action to be invoked when an alarm is triggered.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :action
|
65
|
+
#
|
66
|
+
# # To specify an alternate text representation for the property value.
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :altrep
|
69
|
+
#
|
70
|
+
# # The property provides the capability to associate a document object with a calendar component.
|
71
|
+
# #
|
72
|
+
# # default value type: URI
|
73
|
+
# # @return [RDF::Vocabulary::Term]
|
74
|
+
# attr_reader :attach
|
75
|
+
#
|
76
|
+
# # value type: CAL-ADDRESS
|
77
|
+
# #
|
78
|
+
# # The property defines an "Attendee" within a calendar component.
|
79
|
+
# # @return [RDF::Vocabulary::Term]
|
80
|
+
# attr_reader :attendee
|
81
|
+
#
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :byday
|
84
|
+
#
|
85
|
+
# # @return [RDF::Vocabulary::Term]
|
86
|
+
# attr_reader :byhour
|
87
|
+
#
|
88
|
+
# # @return [RDF::Vocabulary::Term]
|
89
|
+
# attr_reader :byminute
|
90
|
+
#
|
91
|
+
# # @return [RDF::Vocabulary::Term]
|
92
|
+
# attr_reader :bymonth
|
93
|
+
#
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :bysecond
|
96
|
+
#
|
97
|
+
# # @return [RDF::Vocabulary::Term]
|
98
|
+
# attr_reader :bysetpos
|
99
|
+
#
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :byweekno
|
102
|
+
#
|
103
|
+
# # @return [RDF::Vocabulary::Term]
|
104
|
+
# attr_reader :byyearday
|
105
|
+
#
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :calAddress
|
108
|
+
#
|
109
|
+
# # value type: TEXT
|
110
|
+
# #
|
111
|
+
# # This property defines the calendar scale used for the calendar information specified in the iCalendar object.
|
112
|
+
# # @return [RDF::Vocabulary::Term]
|
113
|
+
# attr_reader :calscale
|
114
|
+
#
|
115
|
+
# # value type: TEXT
|
116
|
+
# #
|
117
|
+
# # This property defines the categories for a calendar component.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :categories
|
120
|
+
#
|
121
|
+
# # value type: TEXT
|
122
|
+
# #
|
123
|
+
# # This property defines the access classification for a calendar component.
|
124
|
+
# # @return [RDF::Vocabulary::Term]
|
125
|
+
# attr_reader :class
|
126
|
+
#
|
127
|
+
# # To specify the common name to be associated with the calendar user specified by the property.
|
128
|
+
# # @return [RDF::Vocabulary::Term]
|
129
|
+
# attr_reader :cn
|
130
|
+
#
|
131
|
+
# # value type: TEXT
|
132
|
+
# #
|
133
|
+
# # This property specifies non-processing information intended to provide a comment to the calendar user.
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :comment
|
136
|
+
#
|
137
|
+
# # This property defines the date and time that a to-do was actually completed.
|
138
|
+
# #
|
139
|
+
# # value type: DATE-TIME
|
140
|
+
# # @return [RDF::Vocabulary::Term]
|
141
|
+
# attr_reader :completed
|
142
|
+
#
|
143
|
+
# # @return [RDF::Vocabulary::Term]
|
144
|
+
# attr_reader :component
|
145
|
+
#
|
146
|
+
# # value type: TEXT
|
147
|
+
# #
|
148
|
+
# # The property is used to represent contact information or alternately a reference to contact information associated with the calendar component.
|
149
|
+
# # @return [RDF::Vocabulary::Term]
|
150
|
+
# attr_reader :contact
|
151
|
+
#
|
152
|
+
# # @return [RDF::Vocabulary::Term]
|
153
|
+
# attr_reader :count
|
154
|
+
#
|
155
|
+
# # 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.
|
156
|
+
# #
|
157
|
+
# # value type: DATE-TIME
|
158
|
+
# # @return [RDF::Vocabulary::Term]
|
159
|
+
# attr_reader :created
|
160
|
+
#
|
161
|
+
# # To specify the type of calendar user specified by the property.
|
162
|
+
# # @return [RDF::Vocabulary::Term]
|
163
|
+
# attr_reader :cutype
|
164
|
+
#
|
165
|
+
# # @return [RDF::Vocabulary::Term]
|
166
|
+
# attr_reader :daylight
|
167
|
+
#
|
168
|
+
# # To specify the calendar users that have delegated their participation to the calendar user specified by the property.
|
169
|
+
# # @return [RDF::Vocabulary::Term]
|
170
|
+
# attr_reader :delegatedFrom
|
171
|
+
#
|
172
|
+
# # To specify the calendar users to whom the calendar user specified by the property has delegated participation.
|
173
|
+
# # @return [RDF::Vocabulary::Term]
|
174
|
+
# attr_reader :delegatedTo
|
175
|
+
#
|
176
|
+
# # value type: TEXT
|
177
|
+
# #
|
178
|
+
# # This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property.
|
179
|
+
# # @return [RDF::Vocabulary::Term]
|
180
|
+
# attr_reader :description
|
181
|
+
#
|
182
|
+
# # To specify reference to a directory entry associated with the calendar user specified by the property.
|
183
|
+
# # @return [RDF::Vocabulary::Term]
|
184
|
+
# attr_reader :dir
|
185
|
+
#
|
186
|
+
# # This property specifies the date and time that a calendar component ends.
|
187
|
+
# #
|
188
|
+
# # default value type: DATE-TIME
|
189
|
+
# # @return [RDF::Vocabulary::Term]
|
190
|
+
# attr_reader :dtend
|
191
|
+
#
|
192
|
+
# # value type: DATE-TIME
|
193
|
+
# #
|
194
|
+
# # The property indicates the date/time that the instance of the iCalendar object was created.
|
195
|
+
# # @return [RDF::Vocabulary::Term]
|
196
|
+
# attr_reader :dtstamp
|
197
|
+
#
|
198
|
+
# # This property specifies when the calendar component begins.
|
199
|
+
# #
|
200
|
+
# # default value type: DATE-TIME
|
201
|
+
# # @return [RDF::Vocabulary::Term]
|
202
|
+
# attr_reader :dtstart
|
203
|
+
#
|
204
|
+
# # default value type: DATE-TIME
|
205
|
+
# #
|
206
|
+
# # This property defines the date and time that a to-do is expected to be completed.
|
207
|
+
# # @return [RDF::Vocabulary::Term]
|
208
|
+
# attr_reader :due
|
209
|
+
#
|
210
|
+
# # value type: DURATION
|
211
|
+
# #
|
212
|
+
# # The property specifies a positive duration of time.
|
213
|
+
# # @return [RDF::Vocabulary::Term]
|
214
|
+
# attr_reader :duration
|
215
|
+
#
|
216
|
+
# # To specify an alternate inline encoding for the property value.
|
217
|
+
# # @return [RDF::Vocabulary::Term]
|
218
|
+
# attr_reader :encoding
|
219
|
+
#
|
220
|
+
# # default value type: DATE-TIME
|
221
|
+
# #
|
222
|
+
# # This property defines the list of date/time exceptions for a recurring calendar component.
|
223
|
+
# # @return [RDF::Vocabulary::Term]
|
224
|
+
# attr_reader :exdate
|
225
|
+
#
|
226
|
+
# # value type: RECUR
|
227
|
+
# #
|
228
|
+
# # This property defines a rule or repeating pattern for an exception to a recurrence set.
|
229
|
+
# # @return [RDF::Vocabulary::Term]
|
230
|
+
# attr_reader :exrule
|
231
|
+
#
|
232
|
+
# # To specify the free or busy time type.
|
233
|
+
# # @return [RDF::Vocabulary::Term]
|
234
|
+
# attr_reader :fbtype
|
235
|
+
#
|
236
|
+
# # To specify the content type of a referenced object.
|
237
|
+
# # @return [RDF::Vocabulary::Term]
|
238
|
+
# attr_reader :fmttype
|
239
|
+
#
|
240
|
+
# # value type: PERIOD
|
241
|
+
# #
|
242
|
+
# # The property defines one or more free or busy time intervals.
|
243
|
+
# # @return [RDF::Vocabulary::Term]
|
244
|
+
# attr_reader :freebusy
|
245
|
+
#
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :freq
|
248
|
+
#
|
249
|
+
# # This property specifies information related to the global position for the activity specified by a calendar component.
|
250
|
+
# #
|
251
|
+
# # value type: list of FLOAT
|
252
|
+
# # @return [RDF::Vocabulary::Term]
|
253
|
+
# attr_reader :geo
|
254
|
+
#
|
255
|
+
# # @return [RDF::Vocabulary::Term]
|
256
|
+
# attr_reader :interval
|
257
|
+
#
|
258
|
+
# # To specify the language for text values in a property or property parameter.
|
259
|
+
# # @return [RDF::Vocabulary::Term]
|
260
|
+
# attr_reader :language
|
261
|
+
#
|
262
|
+
# # 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.
|
263
|
+
# #
|
264
|
+
# # value type: DATE-TIME
|
265
|
+
# # @return [RDF::Vocabulary::Term]
|
266
|
+
# attr_reader :lastModified
|
267
|
+
#
|
268
|
+
# # value type: TEXT
|
269
|
+
# #
|
270
|
+
# # The property defines the intended venue for the activity defined by a calendar component.
|
271
|
+
# # @return [RDF::Vocabulary::Term]
|
272
|
+
# attr_reader :location
|
273
|
+
#
|
274
|
+
# # To specify the group or list membership of the calendar user specified by the property.
|
275
|
+
# # @return [RDF::Vocabulary::Term]
|
276
|
+
# attr_reader :member
|
277
|
+
#
|
278
|
+
# # value type: TEXT
|
279
|
+
# #
|
280
|
+
# # This property defines the iCalendar object method associated with the calendar object.
|
281
|
+
# # @return [RDF::Vocabulary::Term]
|
282
|
+
# attr_reader :method
|
283
|
+
#
|
284
|
+
# # The property defines the organizer for a calendar component.
|
285
|
+
# #
|
286
|
+
# # value type: CAL-ADDRESS
|
287
|
+
# # @return [RDF::Vocabulary::Term]
|
288
|
+
# attr_reader :organizer
|
289
|
+
#
|
290
|
+
# # To specify the participation status for the calendar user specified by the property.
|
291
|
+
# # @return [RDF::Vocabulary::Term]
|
292
|
+
# attr_reader :partstat
|
293
|
+
#
|
294
|
+
# # 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.
|
295
|
+
# #
|
296
|
+
# # value type: INTEGER
|
297
|
+
# # @return [RDF::Vocabulary::Term]
|
298
|
+
# attr_reader :percentComplete
|
299
|
+
#
|
300
|
+
# # The property defines the relative priority for a calendar component.
|
301
|
+
# #
|
302
|
+
# # value type: INTEGER
|
303
|
+
# # @return [RDF::Vocabulary::Term]
|
304
|
+
# attr_reader :priority
|
305
|
+
#
|
306
|
+
# # value type: TEXT
|
307
|
+
# #
|
308
|
+
# # This property specifies the identifier for the product that created the iCalendar object.
|
309
|
+
# # @return [RDF::Vocabulary::Term]
|
310
|
+
# attr_reader :prodid
|
311
|
+
#
|
312
|
+
# # To specify the effective range of recurrence instances from the instance specified by the recurrence identifier specified by the property.
|
313
|
+
# # @return [RDF::Vocabulary::Term]
|
314
|
+
# attr_reader :range
|
315
|
+
#
|
316
|
+
# # default value type: DATE-TIME
|
317
|
+
# #
|
318
|
+
# # This property defines the list of date/times for a recurrence set.
|
319
|
+
# # @return [RDF::Vocabulary::Term]
|
320
|
+
# attr_reader :rdate
|
321
|
+
#
|
322
|
+
# # 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.
|
323
|
+
# #
|
324
|
+
# # default value type: DATE-TIME
|
325
|
+
# # @return [RDF::Vocabulary::Term]
|
326
|
+
# attr_reader :recurrenceId
|
327
|
+
#
|
328
|
+
# # To specify the relationship of the alarm trigger with respect to the start or end of the calendar component.
|
329
|
+
# # @return [RDF::Vocabulary::Term]
|
330
|
+
# attr_reader :related
|
331
|
+
#
|
332
|
+
# # value type: TEXT
|
333
|
+
# #
|
334
|
+
# # The property is used to represent a relationship or reference between one calendar component and another.
|
335
|
+
# # @return [RDF::Vocabulary::Term]
|
336
|
+
# attr_reader :relatedTo
|
337
|
+
#
|
338
|
+
# # To specify the type of hierarchical relationship associated with the calendar component specified by the property.
|
339
|
+
# # @return [RDF::Vocabulary::Term]
|
340
|
+
# attr_reader :reltype
|
341
|
+
#
|
342
|
+
# # This property defines the number of time the alarm should be repeated, after the initial trigger.
|
343
|
+
# #
|
344
|
+
# # value type: INTEGER
|
345
|
+
# # @return [RDF::Vocabulary::Term]
|
346
|
+
# attr_reader :repeat
|
347
|
+
#
|
348
|
+
# # value type: TEXT
|
349
|
+
# #
|
350
|
+
# # This property defines the status code returned for a scheduling request.
|
351
|
+
# # @return [RDF::Vocabulary::Term]
|
352
|
+
# attr_reader :requestStatus
|
353
|
+
#
|
354
|
+
# # value type: TEXT
|
355
|
+
# #
|
356
|
+
# # This property defines the equipment or resources anticipated for an activity specified by a calendar entity..
|
357
|
+
# # @return [RDF::Vocabulary::Term]
|
358
|
+
# attr_reader :resources
|
359
|
+
#
|
360
|
+
# # To specify the participation role for the calendar user specified by the property.
|
361
|
+
# # @return [RDF::Vocabulary::Term]
|
362
|
+
# attr_reader :role
|
363
|
+
#
|
364
|
+
# # value type: RECUR
|
365
|
+
# #
|
366
|
+
# # This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.
|
367
|
+
# # @return [RDF::Vocabulary::Term]
|
368
|
+
# attr_reader :rrule
|
369
|
+
#
|
370
|
+
# # To specify whether there is an expectation of a favor of a reply from the calendar user specified by the property value.
|
371
|
+
# # @return [RDF::Vocabulary::Term]
|
372
|
+
# attr_reader :rsvp
|
373
|
+
#
|
374
|
+
# # To specify the calendar user that is acting on behalf of the calendar user specified by the property.
|
375
|
+
# # @return [RDF::Vocabulary::Term]
|
376
|
+
# attr_reader :sentBy
|
377
|
+
#
|
378
|
+
# # value type: integer
|
379
|
+
# #
|
380
|
+
# # This property defines the revision sequence number of the calendar component within a sequence of revisions.
|
381
|
+
# # @return [RDF::Vocabulary::Term]
|
382
|
+
# attr_reader :sequence
|
383
|
+
#
|
384
|
+
# # @return [RDF::Vocabulary::Term]
|
385
|
+
# attr_reader :standard
|
386
|
+
#
|
387
|
+
# # value type: TEXT
|
388
|
+
# #
|
389
|
+
# # This property defines the overall status or confirmation for the calendar component.
|
390
|
+
# # @return [RDF::Vocabulary::Term]
|
391
|
+
# attr_reader :status
|
392
|
+
#
|
393
|
+
# # value type: TEXT
|
394
|
+
# #
|
395
|
+
# # This property defines a short summary or subject for the calendar component.
|
396
|
+
# # @return [RDF::Vocabulary::Term]
|
397
|
+
# attr_reader :summary
|
398
|
+
#
|
399
|
+
# # value type: TEXT
|
400
|
+
# #
|
401
|
+
# # This property defines whether an event is transparent or not to busy time searches.
|
402
|
+
# # @return [RDF::Vocabulary::Term]
|
403
|
+
# attr_reader :transp
|
404
|
+
#
|
405
|
+
# # This property specifies when an alarm will trigger.
|
406
|
+
# #
|
407
|
+
# # default value type: DURATION
|
408
|
+
# # @return [RDF::Vocabulary::Term]
|
409
|
+
# attr_reader :trigger
|
410
|
+
#
|
411
|
+
# # value type: TEXT
|
412
|
+
# #
|
413
|
+
# # To specify the identifier for the time zone definition for a time component in the property value.
|
414
|
+
# #
|
415
|
+
# # This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component.
|
416
|
+
# # @return [RDF::Vocabulary::Term]
|
417
|
+
# attr_reader :tzid
|
418
|
+
#
|
419
|
+
# # value type: TEXT
|
420
|
+
# #
|
421
|
+
# # This property specifies the customary designation for a time zone description.
|
422
|
+
# # @return [RDF::Vocabulary::Term]
|
423
|
+
# attr_reader :tzname
|
424
|
+
#
|
425
|
+
# # value type: UTC-OFFSET
|
426
|
+
# #
|
427
|
+
# # This property specifies the offset which is in use prior to this time zone observance.
|
428
|
+
# # @return [RDF::Vocabulary::Term]
|
429
|
+
# attr_reader :tzoffsetfrom
|
430
|
+
#
|
431
|
+
# # This property specifies the offset which is in use in this time zone observance.
|
432
|
+
# #
|
433
|
+
# # value type: UTC-OFFSET
|
434
|
+
# # @return [RDF::Vocabulary::Term]
|
435
|
+
# attr_reader :tzoffsetto
|
436
|
+
#
|
437
|
+
# # 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.
|
438
|
+
# #
|
439
|
+
# # value type: URI
|
440
|
+
# # @return [RDF::Vocabulary::Term]
|
441
|
+
# attr_reader :tzurl
|
442
|
+
#
|
443
|
+
# # value type: TEXT
|
444
|
+
# #
|
445
|
+
# # This property defines the persistent, globally unique identifier for the calendar component.
|
446
|
+
# # @return [RDF::Vocabulary::Term]
|
447
|
+
# attr_reader :uid
|
448
|
+
#
|
449
|
+
# # @return [RDF::Vocabulary::Term]
|
450
|
+
# attr_reader :until
|
451
|
+
#
|
452
|
+
# # This property defines a Uniform Resource Locator (URL) associated with the iCalendar object.
|
453
|
+
# #
|
454
|
+
# # value type: URI
|
455
|
+
# # @return [RDF::Vocabulary::Term]
|
456
|
+
# attr_reader :url
|
457
|
+
#
|
458
|
+
# # value type: TEXT
|
459
|
+
# #
|
460
|
+
# # 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.
|
461
|
+
# # @return [RDF::Vocabulary::Term]
|
462
|
+
# attr_reader :version
|
463
|
+
#
|
464
|
+
# # @return [RDF::Vocabulary::Term]
|
465
|
+
# attr_reader :wkst
|
466
|
+
#
|
467
|
+
# # @return [RDF::Vocabulary::Term]
|
468
|
+
# attr_reader :dateTime
|
469
|
+
#
|
9
470
|
# end
|
10
|
-
|
471
|
+
ICAL = Class.new(RDF::StrictVocabulary("http://www.w3.org/2002/12/cal/icaltzd#")) do
|
11
472
|
|
12
473
|
# Ontology definition
|
13
474
|
ontology :"http://www.w3.org/2002/12/cal/icaltzd#",
|