rdf 1.1.4 → 1.1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/cli/vocab-loader.rb +1 -1
- data/lib/rdf/query/solution.rb +1 -1
- data/lib/rdf/reader.rb +1 -0
- data/lib/rdf/util/cache.rb +21 -0
- data/lib/rdf/util/file.rb +3 -2
- data/lib/rdf/vocab.rb +73 -34
- data/lib/rdf/vocab/cert.rb +6 -6
- data/lib/rdf/vocab/dc.rb +39 -34
- data/lib/rdf/vocab/dc11.rb +7 -0
- data/lib/rdf/vocab/doap.rb +12 -12
- data/lib/rdf/vocab/exif.rb +35 -35
- data/lib/rdf/vocab/foaf.rb +83 -82
- data/lib/rdf/vocab/geo.rb +9 -2
- data/lib/rdf/vocab/gr.rb +38 -99
- data/lib/rdf/vocab/ht.rb +29 -28
- data/lib/rdf/vocab/ical.rb +96 -88
- data/lib/rdf/vocab/ma.rb +5 -7
- data/lib/rdf/vocab/mo.rb +729 -753
- data/lib/rdf/vocab/og.rb +1 -1
- data/lib/rdf/vocab/owl.rb +3 -3
- data/lib/rdf/vocab/prov.rb +77 -95
- data/lib/rdf/vocab/rdfs.rb +1 -0
- data/lib/rdf/vocab/rsa.rb +2 -2
- data/lib/rdf/vocab/schema.rb +461 -335
- data/lib/rdf/vocab/sioc.rb +23 -22
- data/lib/rdf/vocab/skos.rb +36 -36
- data/lib/rdf/vocab/skosxl.rb +7 -8
- data/lib/rdf/vocab/v.rb +382 -0
- data/lib/rdf/vocab/vcard.rb +173 -36
- data/lib/rdf/vocab/vmd.rb +382 -0
- data/lib/rdf/vocab/void.rb +16 -16
- data/lib/rdf/vocab/vs.rb +9 -9
- data/lib/rdf/vocab/wdrs.rb +11 -11
- data/lib/rdf/vocab/wot.rb +13 -12
- data/lib/rdf/vocab/xhv.rb +9 -9
- metadata +20 -4
data/lib/rdf/vocab/ht.rb
CHANGED
@@ -8,7 +8,7 @@ module RDF
|
|
8
8
|
term :ConnectRequest,
|
9
9
|
comment: %(The CONNECT request).freeze,
|
10
10
|
label: "Connect".freeze,
|
11
|
-
subClassOf: "
|
11
|
+
subClassOf: "ht:Request".freeze,
|
12
12
|
type: "rdfs:Class".freeze
|
13
13
|
term :Connection,
|
14
14
|
comment: %(An HTTP connection).freeze,
|
@@ -17,17 +17,17 @@ module RDF
|
|
17
17
|
term :DeleteRequest,
|
18
18
|
comment: %(The DELETE request).freeze,
|
19
19
|
label: "Delete".freeze,
|
20
|
-
subClassOf: "
|
20
|
+
subClassOf: "ht:Request".freeze,
|
21
21
|
type: "rdfs:Class".freeze
|
22
22
|
term :GetRequest,
|
23
23
|
comment: %(The GET request).freeze,
|
24
24
|
label: "Get".freeze,
|
25
|
-
subClassOf: "
|
25
|
+
subClassOf: "ht:Request".freeze,
|
26
26
|
type: "rdfs:Class".freeze
|
27
27
|
term :HeadRequest,
|
28
28
|
comment: %(The HEAD request).freeze,
|
29
29
|
label: "Head".freeze,
|
30
|
-
subClassOf: "
|
30
|
+
subClassOf: "ht:Request".freeze,
|
31
31
|
type: "rdfs:Class".freeze
|
32
32
|
term :HeaderElement,
|
33
33
|
comment: %(An element of a comma-separated list in a field value).freeze,
|
@@ -47,7 +47,7 @@ module RDF
|
|
47
47
|
term :OptionsRequest,
|
48
48
|
comment: %(The OPTIONS request).freeze,
|
49
49
|
label: "Options".freeze,
|
50
|
-
subClassOf: "
|
50
|
+
subClassOf: "ht:Request".freeze,
|
51
51
|
type: "rdfs:Class".freeze
|
52
52
|
term :Param,
|
53
53
|
comment: %(A parameter for a header element).freeze,
|
@@ -56,12 +56,12 @@ module RDF
|
|
56
56
|
term :PostRequest,
|
57
57
|
comment: %(The POST request).freeze,
|
58
58
|
label: "Post".freeze,
|
59
|
-
subClassOf: "
|
59
|
+
subClassOf: "ht:Request".freeze,
|
60
60
|
type: "rdfs:Class".freeze
|
61
61
|
term :PutRequest,
|
62
62
|
comment: %(The PUT request).freeze,
|
63
63
|
label: "Put".freeze,
|
64
|
-
subClassOf: "
|
64
|
+
subClassOf: "ht:Request".freeze,
|
65
65
|
type: "rdfs:Class".freeze
|
66
66
|
term :Request,
|
67
67
|
comment: %(An HTTP request).freeze,
|
@@ -82,24 +82,24 @@ module RDF
|
|
82
82
|
term :TraceRequest,
|
83
83
|
comment: %(The TRACE request).freeze,
|
84
84
|
label: "Trace".freeze,
|
85
|
-
subClassOf: "
|
85
|
+
subClassOf: "ht:Request".freeze,
|
86
86
|
type: "rdfs:Class".freeze
|
87
87
|
|
88
88
|
# Property definitions
|
89
89
|
property :abs_path,
|
90
90
|
comment: %(An absolute path used as request URI).freeze,
|
91
91
|
label: "Absolute path".freeze,
|
92
|
-
subPropertyOf: "
|
92
|
+
subPropertyOf: "ht:requestURI".freeze,
|
93
93
|
type: "rdf:Property".freeze
|
94
94
|
property :absoluteURI,
|
95
95
|
comment: %(An absolute request URI).freeze,
|
96
96
|
label: "Absolute request URI".freeze,
|
97
|
-
subPropertyOf: "
|
97
|
+
subPropertyOf: "ht:requestURI".freeze,
|
98
98
|
type: "rdf:Property".freeze
|
99
99
|
property :authority,
|
100
100
|
comment: %(An authority used as request URI).freeze,
|
101
101
|
label: "Authority".freeze,
|
102
|
-
subPropertyOf: "
|
102
|
+
subPropertyOf: "ht:requestURI".freeze,
|
103
103
|
type: "rdf:Property".freeze
|
104
104
|
property :body,
|
105
105
|
comment: %(The HTTP entity body).freeze,
|
@@ -107,75 +107,75 @@ module RDF
|
|
107
107
|
type: "rdf:Property".freeze
|
108
108
|
property :connectionAuthority,
|
109
109
|
comment: %(An HTTP Connection authority).freeze,
|
110
|
-
domain: "
|
110
|
+
domain: "ht:Connection".freeze,
|
111
111
|
label: "Connection authority".freeze,
|
112
112
|
type: "rdf:Property".freeze
|
113
113
|
property :elementName,
|
114
114
|
comment: %(Has an element name).freeze,
|
115
|
-
domain: "
|
115
|
+
domain: "ht:HeaderElement".freeze,
|
116
116
|
label: "Element name".freeze,
|
117
117
|
range: "rdfs:Literal".freeze,
|
118
118
|
type: "rdf:Property".freeze
|
119
119
|
property :elementValue,
|
120
120
|
comment: %(Has an element value).freeze,
|
121
|
-
domain: "
|
121
|
+
domain: "ht:HeaderElement".freeze,
|
122
122
|
label: "Element value".freeze,
|
123
123
|
range: "rdfs:Literal".freeze,
|
124
124
|
type: "rdf:Property".freeze
|
125
125
|
property :fieldName,
|
126
126
|
comment: %(Has a field name).freeze,
|
127
|
-
domain: "
|
127
|
+
domain: "ht:MessageHeader".freeze,
|
128
128
|
label: "Field name".freeze,
|
129
129
|
type: "rdf:Property".freeze
|
130
130
|
property :fieldValue,
|
131
131
|
comment: %(Has a field value).freeze,
|
132
|
-
domain: "
|
132
|
+
domain: "ht:MessageHeader".freeze,
|
133
133
|
label: "Field value".freeze,
|
134
134
|
type: "rdf:Property".freeze
|
135
135
|
property :header,
|
136
136
|
comment: %(Has a header).freeze,
|
137
137
|
label: "Header".freeze,
|
138
|
-
range: "
|
138
|
+
range: "ht:MessageHeader".freeze,
|
139
139
|
type: "rdf:Property".freeze
|
140
140
|
property :param,
|
141
141
|
comment: %(Has a parameter).freeze,
|
142
|
-
domain: "
|
142
|
+
domain: "ht:HeaderElement".freeze,
|
143
143
|
label: "Parameter".freeze,
|
144
|
-
range: "
|
144
|
+
range: "ht:Param".freeze,
|
145
145
|
type: "rdf:Property".freeze
|
146
146
|
property :paramName,
|
147
147
|
comment: %(Has a parameter name).freeze,
|
148
|
-
domain: "
|
148
|
+
domain: "ht:Param".freeze,
|
149
149
|
label: "Parameter name".freeze,
|
150
150
|
range: "rdfs:Literal".freeze,
|
151
151
|
type: "rdf:Property".freeze
|
152
152
|
property :paramValue,
|
153
153
|
comment: %(Has a parameter value).freeze,
|
154
|
-
domain: "
|
154
|
+
domain: "ht:Param".freeze,
|
155
155
|
label: "Parameter value".freeze,
|
156
156
|
range: "rdfs:Literal".freeze,
|
157
157
|
type: "rdf:Property".freeze
|
158
158
|
property :request,
|
159
159
|
comment: %(Has an HTTP request).freeze,
|
160
|
-
domain: "
|
160
|
+
domain: "ht:Connection".freeze,
|
161
161
|
label: "Request".freeze,
|
162
|
-
range: "
|
162
|
+
range: "ht:Request".freeze,
|
163
163
|
type: "rdf:Property".freeze
|
164
164
|
property :requestURI,
|
165
165
|
comment: %(Has an HTTP request URI).freeze,
|
166
|
-
domain: "
|
166
|
+
domain: "ht:Request".freeze,
|
167
167
|
label: "Request URI".freeze,
|
168
|
-
range: "
|
168
|
+
range: "ht:RequestURI".freeze,
|
169
169
|
type: "rdf:Property".freeze
|
170
170
|
property :response,
|
171
171
|
comment: %(Has an HTTP response).freeze,
|
172
|
-
domain: "
|
172
|
+
domain: "ht:Request".freeze,
|
173
173
|
label: "Response".freeze,
|
174
|
-
range: "
|
174
|
+
range: "ht:Response".freeze,
|
175
175
|
type: "rdf:Property".freeze
|
176
176
|
property :responseCode,
|
177
177
|
comment: %(Has an HTTP response code).freeze,
|
178
|
-
domain: "
|
178
|
+
domain: "ht:Response".freeze,
|
179
179
|
label: "Response code".freeze,
|
180
180
|
type: "rdf:Property".freeze
|
181
181
|
property :version,
|
@@ -187,6 +187,7 @@ module RDF
|
|
187
187
|
term :"",
|
188
188
|
comment: [%(A namespace for describing HTTP messages
|
189
189
|
\(http://www.w3.org/Protocols/rfc2616/rfc2616.html\)).freeze, %(This has been obsoleted by http://www.w3.org/2011/http.rdfs).freeze],
|
190
|
+
label: "".freeze,
|
190
191
|
"rdfs:seeAlso" => %(http://www.w3.org/2011/http.rdfs).freeze
|
191
192
|
term :"100",
|
192
193
|
label: "Continue".freeze,
|
data/lib/rdf/vocab/ical.rb
CHANGED
@@ -14,7 +14,6 @@ module RDF
|
|
14
14
|
term :Valarm,
|
15
15
|
comment: %(Provide a grouping of component properties that define an alarm.).freeze,
|
16
16
|
label: "Valarm".freeze,
|
17
|
-
subClassOf: "_:g2187775280".freeze,
|
18
17
|
type: "owl:Class".freeze
|
19
18
|
term :"Value_CAL-ADDRESS",
|
20
19
|
label: "Value_CAL-ADDRESS".freeze,
|
@@ -37,39 +36,35 @@ module RDF
|
|
37
36
|
term :Vevent,
|
38
37
|
comment: %(Provide a grouping of component properties that describe an event.).freeze,
|
39
38
|
label: "Event".freeze,
|
40
|
-
subClassOf: "_:g2180568020".freeze,
|
41
39
|
type: "owl:Class".freeze
|
42
40
|
term :Vfreebusy,
|
43
41
|
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
42
|
label: "Vfreebusy".freeze,
|
45
|
-
subClassOf: "_:g2186534640".freeze,
|
46
43
|
type: "owl:Class".freeze
|
47
44
|
term :Vjournal,
|
48
45
|
comment: %(Provide a grouping of component properties that describe a journal entry.).freeze,
|
49
46
|
label: "Vjournal".freeze,
|
50
|
-
subClassOf: "_:g2171434220".freeze,
|
51
47
|
type: "owl:Class".freeze
|
52
48
|
term :Vtimezone,
|
53
49
|
comment: %(Provide a grouping of component properties that defines a time zone.).freeze,
|
54
50
|
label: "Vtimezone".freeze,
|
55
|
-
subClassOf: "_:g2187054040".freeze,
|
56
51
|
type: "owl:Class".freeze
|
57
52
|
term :Vtodo,
|
58
53
|
comment: %(Provide a grouping of calendar properties that describe a to-do.).freeze,
|
59
54
|
label: "To-do".freeze,
|
60
|
-
subClassOf: "_:g2232245260".freeze,
|
61
55
|
type: "owl:Class".freeze
|
62
56
|
|
63
57
|
# Property definitions
|
64
58
|
property :"X-",
|
65
|
-
comment: %(This class of property provides a framework for defining non-standard properties.).freeze,
|
59
|
+
comment: [%(This class of property provides a framework for defining non-standard properties.).freeze, %(
|
60
|
+
value type: TEXT).freeze],
|
66
61
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
67
62
|
label: "X-".freeze,
|
68
63
|
range: "xsd:string".freeze,
|
69
64
|
type: "owl:DatatypeProperty".freeze
|
70
65
|
property :action,
|
71
|
-
comment: %(This property defines the action to be invoked when an alarm is triggered.).freeze,
|
72
|
-
|
66
|
+
comment: [%(This property defines the action to be invoked when an alarm is triggered.).freeze, %(
|
67
|
+
value type: TEXT).freeze],
|
73
68
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
74
69
|
label: "action".freeze,
|
75
70
|
range: "xsd:string".freeze,
|
@@ -79,14 +74,14 @@ module RDF
|
|
79
74
|
label: "altrep".freeze,
|
80
75
|
type: "owl:DatatypeProperty".freeze
|
81
76
|
property :attach,
|
82
|
-
comment: %(The property provides the capability to associate a document object with a calendar component.).freeze,
|
83
|
-
|
77
|
+
comment: [%(The property provides the capability to associate a document object with a calendar component.).freeze, %(
|
78
|
+
default value type: URI).freeze],
|
84
79
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
|
85
80
|
label: "attach".freeze,
|
86
81
|
type: "owl:ObjectProperty".freeze
|
87
82
|
property :attendee,
|
88
|
-
comment: %(The property defines an "Attendee" within a calendar component.).freeze,
|
89
|
-
|
83
|
+
comment: [%(The property defines an "Attendee" within a calendar component.).freeze, %(
|
84
|
+
value type: CAL-ADDRESS).freeze],
|
90
85
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(CAL-ADDRESS).freeze,
|
91
86
|
label: "attendee".freeze,
|
92
87
|
range: "ical:Value_CAL-ADDRESS".freeze,
|
@@ -119,21 +114,22 @@ module RDF
|
|
119
114
|
label: "calAddress".freeze,
|
120
115
|
type: "owl:ObjectProperty".freeze
|
121
116
|
property :calscale,
|
122
|
-
comment: %(This property defines the calendar scale used for the calendar information specified in the iCalendar object.).freeze,
|
117
|
+
comment: [%(This property defines the calendar scale used for the calendar information specified in the iCalendar object.).freeze, %(
|
118
|
+
value type: TEXT).freeze],
|
123
119
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
124
120
|
label: "calscale".freeze,
|
125
121
|
range: "xsd:string".freeze,
|
126
122
|
type: "owl:DatatypeProperty".freeze
|
127
123
|
property :categories,
|
128
|
-
comment: %(This property defines the categories for a calendar component.).freeze,
|
129
|
-
|
124
|
+
comment: [%(This property defines the categories for a calendar component.).freeze, %(
|
125
|
+
value type: TEXT).freeze],
|
130
126
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
131
127
|
label: "categories".freeze,
|
132
128
|
range: "xsd:string".freeze,
|
133
129
|
type: "owl:DatatypeProperty".freeze
|
134
130
|
property :class,
|
135
|
-
comment: %(This property defines the access classification for a calendar component.).freeze,
|
136
|
-
|
131
|
+
comment: [%(This property defines the access classification for a calendar component.).freeze, %(
|
132
|
+
value type: TEXT).freeze],
|
137
133
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
138
134
|
label: "class".freeze,
|
139
135
|
range: "xsd:string".freeze,
|
@@ -143,14 +139,15 @@ module RDF
|
|
143
139
|
label: "cn".freeze,
|
144
140
|
type: "owl:DatatypeProperty".freeze
|
145
141
|
property :comment,
|
146
|
-
comment: %(This property specifies non-processing information intended to provide a comment to the calendar user.).freeze,
|
147
|
-
|
142
|
+
comment: [%(This property specifies non-processing information intended to provide a comment to the calendar user.).freeze, %(
|
143
|
+
value type: TEXT).freeze],
|
148
144
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
149
145
|
label: "comment".freeze,
|
150
146
|
range: "xsd:string".freeze,
|
151
147
|
type: "owl:DatatypeProperty".freeze
|
152
148
|
property :completed,
|
153
|
-
comment: %(This property defines the date and time that a to-do was actually completed.).freeze,
|
149
|
+
comment: [%(This property defines the date and time that a to-do was actually completed.).freeze, %(
|
150
|
+
value type: DATE-TIME).freeze],
|
154
151
|
domain: "ical:Vtodo".freeze,
|
155
152
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
156
153
|
label: "completed".freeze,
|
@@ -160,8 +157,8 @@ module RDF
|
|
160
157
|
label: "component".freeze,
|
161
158
|
type: "owl:ObjectProperty".freeze
|
162
159
|
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
|
-
|
160
|
+
comment: [%(The property is used to represent contact information or alternately a reference to contact information associated with the calendar component.).freeze, %(
|
161
|
+
value type: TEXT).freeze],
|
165
162
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
166
163
|
label: "contact".freeze,
|
167
164
|
range: "xsd:string".freeze,
|
@@ -170,8 +167,8 @@ module RDF
|
|
170
167
|
label: "COUNT".freeze,
|
171
168
|
type: "owl:DatatypeProperty".freeze
|
172
169
|
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
|
-
|
170
|
+
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, %(
|
171
|
+
value type: DATE-TIME).freeze],
|
175
172
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
176
173
|
label: "created".freeze,
|
177
174
|
range: "ical:Value_DATE-TIME".freeze,
|
@@ -192,8 +189,8 @@ module RDF
|
|
192
189
|
label: "delegatedTo".freeze,
|
193
190
|
type: "owl:DatatypeProperty".freeze
|
194
191
|
property :description,
|
195
|
-
comment: %(This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property.).freeze,
|
196
|
-
|
192
|
+
comment: [%(This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property.).freeze, %(
|
193
|
+
value type: TEXT).freeze],
|
197
194
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
198
195
|
label: "description".freeze,
|
199
196
|
range: "xsd:string".freeze,
|
@@ -203,33 +200,34 @@ module RDF
|
|
203
200
|
label: "dir".freeze,
|
204
201
|
type: "owl:DatatypeProperty".freeze
|
205
202
|
property :dtend,
|
206
|
-
comment: %(This property specifies the date and time that a calendar component ends.).freeze,
|
207
|
-
|
203
|
+
comment: [%(This property specifies the date and time that a calendar component ends.).freeze, %(
|
204
|
+
default value type: DATE-TIME).freeze],
|
208
205
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
209
206
|
label: "end".freeze,
|
210
207
|
type: "owl:DatatypeProperty".freeze
|
211
208
|
property :dtstamp,
|
212
|
-
comment: %(The property indicates the date/time that the instance of the iCalendar object was created.).freeze,
|
213
|
-
|
209
|
+
comment: [%(The property indicates the date/time that the instance of the iCalendar object was created.).freeze, %(
|
210
|
+
value type: DATE-TIME).freeze],
|
214
211
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
215
212
|
label: "dtstamp".freeze,
|
216
213
|
range: "ical:Value_DATE-TIME".freeze,
|
217
214
|
type: "owl:DatatypeProperty".freeze
|
218
215
|
property :dtstart,
|
219
|
-
comment: %(This property specifies when the calendar component begins.).freeze,
|
220
|
-
|
216
|
+
comment: [%(This property specifies when the calendar component begins.).freeze, %(
|
217
|
+
default value type: DATE-TIME).freeze],
|
221
218
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
222
219
|
label: "start".freeze,
|
223
220
|
type: "owl:DatatypeProperty".freeze
|
224
221
|
property :due,
|
225
|
-
comment: %(This property defines the date and time that a to-do is expected to be completed.).freeze,
|
222
|
+
comment: [%(This property defines the date and time that a to-do is expected to be completed.).freeze, %(
|
223
|
+
default value type: DATE-TIME).freeze],
|
226
224
|
domain: "ical:Vtodo".freeze,
|
227
225
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
228
226
|
label: "due".freeze,
|
229
227
|
type: "owl:DatatypeProperty".freeze
|
230
228
|
property :duration,
|
231
|
-
comment: %(The property specifies a positive duration of time.).freeze,
|
232
|
-
|
229
|
+
comment: [%(The property specifies a positive duration of time.).freeze, %(
|
230
|
+
value type: DURATION).freeze],
|
233
231
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DURATION).freeze,
|
234
232
|
label: "duration".freeze,
|
235
233
|
range: "ical:Value_DURATION".freeze,
|
@@ -239,14 +237,15 @@ module RDF
|
|
239
237
|
label: "encoding".freeze,
|
240
238
|
type: "owl:DatatypeProperty".freeze
|
241
239
|
property :exdate,
|
242
|
-
comment: %(This property defines the list of date/time exceptions for a recurring calendar component.).freeze,
|
240
|
+
comment: [%(This property defines the list of date/time exceptions for a recurring calendar component.).freeze, %(
|
241
|
+
default value type: DATE-TIME).freeze],
|
243
242
|
domain: "ical:DomainOf_rrule".freeze,
|
244
243
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
245
244
|
label: "exdate".freeze,
|
246
245
|
type: "owl:DatatypeProperty".freeze
|
247
246
|
property :exrule,
|
248
|
-
comment: %(This property defines a rule or repeating pattern for an exception to a recurrence set.).freeze,
|
249
|
-
|
247
|
+
comment: [%(This property defines a rule or repeating pattern for an exception to a recurrence set.).freeze, %(
|
248
|
+
value type: RECUR).freeze],
|
250
249
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(RECUR).freeze,
|
251
250
|
label: "exrule".freeze,
|
252
251
|
range: "ical:Value_RECUR".freeze,
|
@@ -260,8 +259,8 @@ module RDF
|
|
260
259
|
label: "fmttype".freeze,
|
261
260
|
type: "owl:DatatypeProperty".freeze
|
262
261
|
property :freebusy,
|
263
|
-
comment: %(The property defines one or more free or busy time intervals.).freeze,
|
264
|
-
|
262
|
+
comment: [%(The property defines one or more free or busy time intervals.).freeze, %(
|
263
|
+
value type: PERIOD).freeze],
|
265
264
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(PERIOD).freeze,
|
266
265
|
label: "freebusy".freeze,
|
267
266
|
range: "ical:Value_PERIOD".freeze,
|
@@ -270,8 +269,8 @@ module RDF
|
|
270
269
|
label: "FREQ".freeze,
|
271
270
|
type: "owl:DatatypeProperty".freeze
|
272
271
|
property :geo,
|
273
|
-
comment: %(This property specifies information related to the global position for the activity specified by a calendar component.).freeze,
|
274
|
-
|
272
|
+
comment: [%(This property specifies information related to the global position for the activity specified by a calendar component.).freeze, %(
|
273
|
+
value type: list of FLOAT).freeze],
|
275
274
|
"http://www.w3.org/2002/12/cal/icalSpec#valueListType" => %(FLOAT).freeze,
|
276
275
|
label: "geo".freeze,
|
277
276
|
range: "ical:List_of_Float".freeze,
|
@@ -284,15 +283,15 @@ module RDF
|
|
284
283
|
label: "language".freeze,
|
285
284
|
type: "owl:DatatypeProperty".freeze
|
286
285
|
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
|
-
|
286
|
+
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, %(
|
287
|
+
value type: DATE-TIME).freeze],
|
289
288
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
290
289
|
label: "lastModified".freeze,
|
291
290
|
range: "ical:Value_DATE-TIME".freeze,
|
292
291
|
type: "owl:DatatypeProperty".freeze
|
293
292
|
property :location,
|
294
|
-
comment: %(The property defines the intended venue for the activity defined by a calendar component.).freeze,
|
295
|
-
|
293
|
+
comment: [%(The property defines the intended venue for the activity defined by a calendar component.).freeze, %(
|
294
|
+
value type: TEXT).freeze],
|
296
295
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
297
296
|
label: "location".freeze,
|
298
297
|
range: "xsd:string".freeze,
|
@@ -302,14 +301,15 @@ module RDF
|
|
302
301
|
label: "member".freeze,
|
303
302
|
type: "owl:DatatypeProperty".freeze
|
304
303
|
property :method,
|
305
|
-
comment: %(This property defines the iCalendar object method associated with the calendar object.).freeze,
|
304
|
+
comment: [%(This property defines the iCalendar object method associated with the calendar object.).freeze, %(
|
305
|
+
value type: TEXT).freeze],
|
306
306
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
307
307
|
label: "method".freeze,
|
308
308
|
range: "xsd:string".freeze,
|
309
309
|
type: "owl:DatatypeProperty".freeze
|
310
310
|
property :organizer,
|
311
|
-
comment: %(The property defines the organizer for a calendar component.).freeze,
|
312
|
-
|
311
|
+
comment: [%(The property defines the organizer for a calendar component.).freeze, %(
|
312
|
+
value type: CAL-ADDRESS).freeze],
|
313
313
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(CAL-ADDRESS).freeze,
|
314
314
|
label: "organizer".freeze,
|
315
315
|
range: "ical:Value_CAL-ADDRESS".freeze,
|
@@ -319,21 +319,23 @@ module RDF
|
|
319
319
|
label: "partstat".freeze,
|
320
320
|
type: "owl:DatatypeProperty".freeze
|
321
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,
|
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
|
+
value type: INTEGER).freeze],
|
323
324
|
domain: "ical:Vtodo".freeze,
|
324
325
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
|
325
326
|
label: "percentComplete".freeze,
|
326
327
|
range: "xsd:integer".freeze,
|
327
328
|
type: "owl:DatatypeProperty".freeze
|
328
329
|
property :priority,
|
329
|
-
comment: %(The property defines the relative priority for a calendar component.).freeze,
|
330
|
-
|
330
|
+
comment: [%(The property defines the relative priority for a calendar component.).freeze, %(
|
331
|
+
value type: INTEGER).freeze],
|
331
332
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
|
332
333
|
label: "priority".freeze,
|
333
334
|
range: "xsd:integer".freeze,
|
334
335
|
type: "owl:DatatypeProperty".freeze
|
335
336
|
property :prodid,
|
336
|
-
comment: %(This property specifies the identifier for the product that created the iCalendar object.).freeze,
|
337
|
+
comment: [%(This property specifies the identifier for the product that created the iCalendar object.).freeze, %(
|
338
|
+
value type: TEXT).freeze],
|
337
339
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
338
340
|
label: "prodid".freeze,
|
339
341
|
range: "xsd:string".freeze,
|
@@ -343,13 +345,14 @@ module RDF
|
|
343
345
|
label: "range".freeze,
|
344
346
|
type: "owl:DatatypeProperty".freeze
|
345
347
|
property :rdate,
|
346
|
-
comment: %(This property defines the list of date/times for a recurrence set.).freeze,
|
347
|
-
|
348
|
+
comment: [%(This property defines the list of date/times for a recurrence set.).freeze, %(
|
349
|
+
default value type: DATE-TIME).freeze],
|
348
350
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
349
351
|
label: "rdate".freeze,
|
350
352
|
type: "owl:DatatypeProperty".freeze
|
351
353
|
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,
|
354
|
+
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, %(
|
355
|
+
default value type: DATE-TIME).freeze],
|
353
356
|
domain: "ical:DomainOf_rrule".freeze,
|
354
357
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DATE-TIME).freeze,
|
355
358
|
label: "recurrenceId".freeze,
|
@@ -359,8 +362,8 @@ module RDF
|
|
359
362
|
label: "related".freeze,
|
360
363
|
type: "owl:DatatypeProperty".freeze
|
361
364
|
property :relatedTo,
|
362
|
-
comment: %(The property is used to represent a relationship or reference between one calendar component and another.).freeze,
|
363
|
-
|
365
|
+
comment: [%(The property is used to represent a relationship or reference between one calendar component and another.).freeze, %(
|
366
|
+
value type: TEXT).freeze],
|
364
367
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
365
368
|
label: "relatedTo".freeze,
|
366
369
|
range: "xsd:string".freeze,
|
@@ -370,22 +373,23 @@ module RDF
|
|
370
373
|
label: "reltype".freeze,
|
371
374
|
type: "owl:DatatypeProperty".freeze
|
372
375
|
property :repeat,
|
373
|
-
comment: %(This property defines the number of time the alarm should be repeated, after the initial trigger.).freeze,
|
376
|
+
comment: [%(This property defines the number of time the alarm should be repeated, after the initial trigger.).freeze, %(
|
377
|
+
value type: INTEGER).freeze],
|
374
378
|
domain: "ical:Valarm".freeze,
|
375
379
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(INTEGER).freeze,
|
376
380
|
label: "repeat".freeze,
|
377
381
|
range: "xsd:integer".freeze,
|
378
382
|
type: "owl:DatatypeProperty".freeze
|
379
383
|
property :requestStatus,
|
380
|
-
comment: %(This property defines the status code returned for a scheduling request.).freeze,
|
381
|
-
|
384
|
+
comment: [%(This property defines the status code returned for a scheduling request.).freeze, %(
|
385
|
+
value type: TEXT).freeze],
|
382
386
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
383
387
|
label: "requestStatus".freeze,
|
384
388
|
range: "xsd:string".freeze,
|
385
389
|
type: "owl:DatatypeProperty".freeze
|
386
390
|
property :resources,
|
387
|
-
comment: %(This property defines the equipment or resources anticipated for an activity specified by a calendar entity..).freeze,
|
388
|
-
|
391
|
+
comment: [%(This property defines the equipment or resources anticipated for an activity specified by a calendar entity..).freeze, %(
|
392
|
+
value type: TEXT).freeze],
|
389
393
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
390
394
|
label: "resources".freeze,
|
391
395
|
range: "xsd:string".freeze,
|
@@ -395,8 +399,8 @@ module RDF
|
|
395
399
|
label: "role".freeze,
|
396
400
|
type: "owl:DatatypeProperty".freeze
|
397
401
|
property :rrule,
|
398
|
-
comment: %(This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.).freeze,
|
399
|
-
|
402
|
+
comment: [%(This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.).freeze, %(
|
403
|
+
value type: RECUR).freeze],
|
400
404
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(RECUR).freeze,
|
401
405
|
label: "rrule".freeze,
|
402
406
|
range: "ical:Value_RECUR".freeze,
|
@@ -410,8 +414,8 @@ module RDF
|
|
410
414
|
label: "sentBy".freeze,
|
411
415
|
type: "owl:DatatypeProperty".freeze
|
412
416
|
property :sequence,
|
413
|
-
comment: %(This property defines the revision sequence number of the calendar component within a sequence of revisions.).freeze,
|
414
|
-
|
417
|
+
comment: [%(This property defines the revision sequence number of the calendar component within a sequence of revisions.).freeze, %(
|
418
|
+
value type: integer).freeze],
|
415
419
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(integer).freeze,
|
416
420
|
label: "sequence".freeze,
|
417
421
|
range: "xsd:integer".freeze,
|
@@ -420,71 +424,74 @@ module RDF
|
|
420
424
|
label: "STANDARD".freeze,
|
421
425
|
type: "owl:ObjectProperty".freeze
|
422
426
|
property :status,
|
423
|
-
comment: %(This property defines the overall status or confirmation for the calendar component.).freeze,
|
424
|
-
|
427
|
+
comment: [%(This property defines the overall status or confirmation for the calendar component.).freeze, %(
|
428
|
+
value type: TEXT).freeze],
|
425
429
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
426
430
|
label: "status".freeze,
|
427
431
|
range: "xsd:string".freeze,
|
428
432
|
type: "owl:DatatypeProperty".freeze
|
429
433
|
property :summary,
|
430
|
-
comment: %(This property defines a short summary or subject for the calendar component.).freeze,
|
431
|
-
|
434
|
+
comment: [%(This property defines a short summary or subject for the calendar component.).freeze, %(
|
435
|
+
value type: TEXT).freeze],
|
432
436
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
433
437
|
label: "summary".freeze,
|
434
438
|
range: "xsd:string".freeze,
|
435
439
|
subPropertyOf: "rdfs:label".freeze,
|
436
440
|
type: "owl:DatatypeProperty".freeze
|
437
441
|
property :transp,
|
438
|
-
comment: %(This property defines whether an event is transparent or not to busy time searches.).freeze,
|
442
|
+
comment: [%(This property defines whether an event is transparent or not to busy time searches.).freeze, %(
|
443
|
+
value type: TEXT).freeze],
|
439
444
|
domain: "ical:Vevent".freeze,
|
440
445
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
441
446
|
label: "transp".freeze,
|
442
447
|
range: "xsd:string".freeze,
|
443
448
|
type: "owl:DatatypeProperty".freeze
|
444
449
|
property :trigger,
|
445
|
-
comment: %(This property specifies when an alarm will trigger.).freeze,
|
446
|
-
|
450
|
+
comment: [%(This property specifies when an alarm will trigger.).freeze, %(
|
451
|
+
default value type: DURATION).freeze],
|
447
452
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(DURATION).freeze,
|
448
453
|
label: "trigger".freeze,
|
449
|
-
range: "_:g2228882540".freeze,
|
450
454
|
type: "owl:ObjectProperty".freeze
|
451
455
|
property :tzid,
|
452
|
-
comment: %(This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component.).freeze,
|
456
|
+
comment: [%(This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component.).freeze, %(
|
457
|
+
value type: TEXT).freeze, %(To specify the identifier for the time zone definition for a time component in the property value.).freeze],
|
453
458
|
domain: "ical:Vtimezone".freeze,
|
454
459
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
455
460
|
label: "tzid".freeze,
|
456
461
|
range: "xsd:string".freeze,
|
457
462
|
type: "owl:DatatypeProperty".freeze
|
458
463
|
property :tzname,
|
459
|
-
comment: %(This property specifies the customary designation for a time zone description.).freeze,
|
464
|
+
comment: [%(This property specifies the customary designation for a time zone description.).freeze, %(
|
465
|
+
value type: TEXT).freeze],
|
460
466
|
domain: "ical:Vtimezone".freeze,
|
461
467
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
462
468
|
label: "tzname".freeze,
|
463
469
|
range: "xsd:string".freeze,
|
464
470
|
type: "owl:DatatypeProperty".freeze
|
465
471
|
property :tzoffsetfrom,
|
466
|
-
comment: %(This property specifies the offset which is in use prior to this time zone observance.).freeze,
|
467
|
-
|
472
|
+
comment: [%(This property specifies the offset which is in use prior to this time zone observance.).freeze, %(
|
473
|
+
value type: UTC-OFFSET).freeze],
|
468
474
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(UTC-OFFSET).freeze,
|
469
475
|
label: "tzoffsetfrom".freeze,
|
470
476
|
range: "xsd:string".freeze,
|
471
477
|
type: "owl:DatatypeProperty".freeze
|
472
478
|
property :tzoffsetto,
|
473
|
-
comment: %(This property specifies the offset which is in use in this time zone observance.).freeze,
|
479
|
+
comment: [%(This property specifies the offset which is in use in this time zone observance.).freeze, %(
|
480
|
+
value type: UTC-OFFSET).freeze],
|
474
481
|
domain: "ical:Vtimezone".freeze,
|
475
482
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(UTC-OFFSET).freeze,
|
476
483
|
label: "tzoffsetto".freeze,
|
477
484
|
range: "xsd:string".freeze,
|
478
485
|
type: "owl:DatatypeProperty".freeze
|
479
486
|
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
|
-
|
487
|
+
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, %(
|
488
|
+
value type: URI).freeze],
|
482
489
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
|
483
490
|
label: "tzurl".freeze,
|
484
491
|
type: "owl:ObjectProperty".freeze
|
485
492
|
property :uid,
|
486
|
-
comment: %(This property defines the persistent, globally unique identifier for the calendar component.).freeze,
|
487
|
-
|
493
|
+
comment: [%(This property defines the persistent, globally unique identifier for the calendar component.).freeze, %(
|
494
|
+
value type: TEXT).freeze],
|
488
495
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
489
496
|
label: "uid".freeze,
|
490
497
|
range: "xsd:string".freeze,
|
@@ -493,13 +500,14 @@ module RDF
|
|
493
500
|
label: "UNTIL".freeze,
|
494
501
|
type: "owl:DatatypeProperty".freeze
|
495
502
|
property :url,
|
496
|
-
comment: %(This property defines a Uniform Resource Locator \(URL\) associated with the iCalendar object.).freeze,
|
497
|
-
|
503
|
+
comment: [%(This property defines a Uniform Resource Locator \(URL\) associated with the iCalendar object.).freeze, %(
|
504
|
+
value type: URI).freeze],
|
498
505
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(URI).freeze,
|
499
506
|
label: "see also".freeze,
|
500
507
|
type: "owl:ObjectProperty".freeze
|
501
508
|
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,
|
509
|
+
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, %(
|
510
|
+
value type: TEXT).freeze],
|
503
511
|
"http://www.w3.org/2002/12/cal/icalSpec#valueType" => %(TEXT).freeze,
|
504
512
|
label: "version".freeze,
|
505
513
|
range: "xsd:string".freeze,
|