rdf 1.1.0p4 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +6 -14
  2. data/README +33 -33
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +60 -12
  5. data/lib/rdf/cli.rb +7 -1
  6. data/lib/rdf/cli/vocab-loader.rb +240 -0
  7. data/lib/rdf/format.rb +2 -2
  8. data/lib/rdf/mixin/enumerable.rb +12 -4
  9. data/lib/rdf/mixin/queryable.rb +13 -13
  10. data/lib/rdf/model/graph.rb +5 -4
  11. data/lib/rdf/model/list.rb +15 -4
  12. data/lib/rdf/model/literal.rb +2 -1
  13. data/lib/rdf/model/statement.rb +10 -1
  14. data/lib/rdf/model/term.rb +8 -0
  15. data/lib/rdf/model/uri.rb +107 -2
  16. data/lib/rdf/model/value.rb +8 -0
  17. data/lib/rdf/ntriples/reader.rb +5 -4
  18. data/lib/rdf/query.rb +47 -12
  19. data/lib/rdf/query/solutions.rb +29 -29
  20. data/lib/rdf/reader.rb +13 -3
  21. data/lib/rdf/repository.rb +1 -0
  22. data/lib/rdf/util/file.rb +86 -6
  23. data/lib/rdf/vocab.rb +158 -58
  24. data/lib/rdf/vocab/cc.rb +28 -11
  25. data/lib/rdf/vocab/cert.rb +127 -9
  26. data/lib/rdf/vocab/dc.rb +242 -60
  27. data/lib/rdf/vocab/dc11.rb +42 -20
  28. data/lib/rdf/vocab/doap.rb +121 -42
  29. data/lib/rdf/vocab/exif.rb +540 -165
  30. data/lib/rdf/vocab/foaf.rb +353 -66
  31. data/lib/rdf/vocab/geo.rb +40 -10
  32. data/lib/rdf/vocab/gr.rb +1094 -0
  33. data/lib/rdf/vocab/http.rb +81 -23
  34. data/lib/rdf/vocab/ical.rb +361 -0
  35. data/lib/rdf/vocab/ma.rb +281 -69
  36. data/lib/rdf/vocab/og.rb +98 -0
  37. data/lib/rdf/vocab/owl.rb +226 -56
  38. data/lib/rdf/vocab/prov.rb +489 -0
  39. data/lib/rdf/vocab/rdfs.rb +38 -14
  40. data/lib/rdf/vocab/rsa.rb +25 -9
  41. data/lib/rdf/vocab/rss.rb +29 -11
  42. data/lib/rdf/vocab/schema.rb +3729 -647
  43. data/lib/rdf/vocab/sioc.rb +224 -89
  44. data/lib/rdf/vocab/skos.rb +141 -33
  45. data/lib/rdf/vocab/skosxl.rb +43 -0
  46. data/lib/rdf/vocab/v.rb +154 -0
  47. data/lib/rdf/vocab/vcard.rb +337 -0
  48. data/lib/rdf/vocab/void.rb +142 -0
  49. data/lib/rdf/vocab/wdrs.rb +129 -0
  50. data/lib/rdf/vocab/wot.rb +52 -18
  51. data/lib/rdf/vocab/xhtml.rb +3 -6
  52. data/lib/rdf/vocab/xhv.rb +239 -0
  53. data/lib/rdf/writer.rb +3 -3
  54. metadata +81 -14
@@ -0,0 +1,43 @@
1
+ # This file generated automatically using vocab-fetch from http://www.w3.org/TR/skos-reference/skos-xl.rdf
2
+ require 'rdf'
3
+ module RDF
4
+ class SKOSXL < StrictVocabulary("http://www.w3.org/2008/05/skos-xl#")
5
+
6
+ # Class definitions
7
+ property :Label, :label => 'Label'
8
+
9
+ # Property definitions
10
+ property :altLabel, :label => 'alternative label', :comment =>
11
+ %(If C skosxl:altLabel L and L skosxl:literalForm V, then X
12
+ skos:altLabel V.)
13
+ property :hiddenLabel, :label => 'hidden label', :comment =>
14
+ %(If C skosxl:hiddenLabel L and L skosxl:literalForm V, then C
15
+ skos:hiddenLabel V.)
16
+ property :labelRelation, :label => 'label relation'
17
+ property :literalForm, :label => 'literal form', :comment =>
18
+ %(If two instances of the class skosxl:Label have the same
19
+ literal form, they are not necessarily the same resource.)
20
+ property :literalForm, :label => 'literal form', :comment =>
21
+ %(The range of skosxl:literalForm is the class of RDF plain
22
+ literals.)
23
+ property :prefLabel, :label => 'preferred label', :comment =>
24
+ %(If C skosxl:prefLabel L and L skosxl:literalForm V, then X
25
+ skos:prefLabel V.)
26
+ property :literalForm, :label => 'literal form', :comment =>
27
+ %(If two instances of the class skosxl:Label have the same
28
+ literal form, they are not necessarily the same resource.)
29
+ property :literalForm, :label => 'literal form', :comment =>
30
+ %(The range of skosxl:literalForm is the class of RDF plain
31
+ literals.)
32
+ property :altLabel, :label => 'alternative label', :comment =>
33
+ %(If C skosxl:altLabel L and L skosxl:literalForm V, then X
34
+ skos:altLabel V.)
35
+ property :hiddenLabel, :label => 'hidden label', :comment =>
36
+ %(If C skosxl:hiddenLabel L and L skosxl:literalForm V, then C
37
+ skos:hiddenLabel V.)
38
+ property :labelRelation, :label => 'label relation'
39
+ property :prefLabel, :label => 'preferred label', :comment =>
40
+ %(If C skosxl:prefLabel L and L skosxl:literalForm V, then X
41
+ skos:prefLabel V.)
42
+ end
43
+ end
@@ -0,0 +1,154 @@
1
+ # This file generated automatically using vocab-fetch from http://rdf.data-vocabulary.org/
2
+ require 'rdf'
3
+ module RDF
4
+ class V < StrictVocabulary("http://rdf.data-vocabulary.org/")
5
+
6
+ # Class definitions
7
+ property :"#Address", :comment =>
8
+ %(Postal address for a Person or Organization.)
9
+ property :"#Breadcrumb", :comment =>
10
+ %(Represents a single Breadcrumb in a Breadcrumb trail.)
11
+ property :"#Breadcrumb", :comment =>
12
+ %(Represents a single Breadcrumb in a Breadcrumb trail.)
13
+ property :"#Offer", :comment =>
14
+ %(Represents an offer to sell a product.)
15
+ property :"#Offer", :comment =>
16
+ %(Represents an offer to sell a product.)
17
+ property :"#OfferAggregate", :comment =>
18
+ %(Represents a collection of offers to sell a product.)
19
+ property :"#OfferAggregate", :comment =>
20
+ %(Represents a collection of offers to sell a product.)
21
+ property :"#Organization", :comment =>
22
+ %(An Organization is a business, agency, school, etc.)
23
+ property :"#Organization", :comment =>
24
+ %(An Organization is a business, agency, school, etc.)
25
+ property :"#Person", :comment =>
26
+ %(Represents a Person, living/dead/fictional.)
27
+ property :"#Person", :comment =>
28
+ %(Represents a Person, living/dead/fictional.)
29
+ property :"#Product", :comment =>
30
+ %(Represents a product or service in a Review or
31
+ Review-aggregate.)
32
+ property :"#Product", :comment =>
33
+ %(Represents a product or service in a Review or
34
+ Review-aggregate.)
35
+ property :"#Rating", :comment =>
36
+ %(Represents a rating in a Review or Review-aggregate.)
37
+ property :"#Rating", :comment =>
38
+ %(Represents a rating in a Review or Review-aggregate.)
39
+ property :"#Recipe", :comment =>
40
+ %(A single instance of a Recipe.)
41
+ property :"#Recipe", :comment =>
42
+ %(A single instance of a Recipe.)
43
+ property :"#Review", :comment =>
44
+ %(A single instance of a Review.)
45
+ property :"#Review", :comment =>
46
+ %(A single instance of a Review.)
47
+ property :"#Review-aggregate", :comment =>
48
+ %(Represents data from a collection of reviews. Can be used
49
+ whether or not there is instance-level Review data on the
50
+ page.)
51
+ property :"#ingredient", :comment =>
52
+ %(Represents ingredients used in a recipe.)
53
+ property :"#instructions", :comment =>
54
+ %(Represents the steps to make a dish.)
55
+ property :"#nutrition", :comment =>
56
+ %(Represents the nutrition information about a recipe.)
57
+ property :"#timeRange", :comment =>
58
+ %(Represents the length of time it takes to prepare a recipe.)
59
+ property :"#timeRange", :comment =>
60
+ %(Represents the length of time it takes to prepare a recipe.)
61
+
62
+ # Property definitions
63
+ property :"#acquaintance"
64
+ property :"#address"
65
+ property :"#affiliation", :comment =>
66
+ %(An affiliation can be specified by a string literal or an
67
+ Organization instance.)
68
+ property :"#amount"
69
+ property :"#author", :comment =>
70
+ %(An author of the recipe can be specified by a string literal
71
+ or a Person instance.)
72
+ property :"#availability"
73
+ property :"#average", :comment =>
74
+ %(The average of an aggregate value.)
75
+ property :"#best", :comment =>
76
+ %(The best value of a rating scale \(default 5\).)
77
+ property :"#brand"
78
+ property :"#calories"
79
+ property :"#carbohydrates"
80
+ property :"#category"
81
+ property :"#child"
82
+ property :"#cholesterol"
83
+ property :"#colleague"
84
+ property :"#condition"
85
+ property :"#contact"
86
+ property :"#cookTime"
87
+ property :"#count", :comment =>
88
+ %(The total number of items used in an aggregate \(e.g., number
89
+ of reviews\).)
90
+ property :"#country-name"
91
+ property :"#currency"
92
+ property :"#description"
93
+ property :"#dtreviewed", :comment =>
94
+ %(The date of the review.)
95
+ property :"#duration"
96
+ property :"#fat"
97
+ property :"#fiber"
98
+ property :"#friend"
99
+ property :"#highprice"
100
+ property :"#identifier"
101
+ property :"#image"
102
+ property :"#instruction"
103
+ property :"#itemoffered"
104
+ property :"#itemreviewed"
105
+ property :"#locality"
106
+ property :"#lowprice"
107
+ property :"#max", :comment =>
108
+ %(The maximum value of an aggregated Rating.)
109
+ property :"#min", :comment =>
110
+ %(The minimum value of an aggregated Rating.)
111
+ property :"#name"
112
+ property :"#nickname"
113
+ property :"#offercount"
114
+ property :"#offerdetails"
115
+ property :"#offerurl"
116
+ property :"#photo"
117
+ property :"#postal-code"
118
+ property :"#prepTime"
119
+ property :"#price"
120
+ property :"#pricerange", :comment =>
121
+ %(The price range of products and services offered by a
122
+ restaurant, business or other organization.)
123
+ property :"#pricevaliduntil"
124
+ property :"#protein"
125
+ property :"#published"
126
+ property :"#quantity"
127
+ property :"#rating", :comment =>
128
+ %(A rating can be specified by a string literal or a Rating
129
+ instance.)
130
+ property :"#recipeType"
131
+ property :"#region"
132
+ property :"#reviewer", :comment =>
133
+ %(A reviewer can be specified by a string literal or a Person
134
+ instance.)
135
+ property :"#role"
136
+ property :"#saturatedFat"
137
+ property :"#seller"
138
+ property :"#servingSize"
139
+ property :"#street-address"
140
+ property :"#sugar"
141
+ property :"#summary"
142
+ property :"#tag"
143
+ property :"#tel"
144
+ property :"#title"
145
+ property :"#totalTime"
146
+ property :"#unsaturatedFat"
147
+ property :"#url"
148
+ property :"#value", :comment =>
149
+ %(The value of a single Rating.)
150
+ property :"#worst", :comment =>
151
+ %(The poorest value of a rating scale \(default 1\).)
152
+ property :"#yield"
153
+ end
154
+ end
@@ -0,0 +1,337 @@
1
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2006/vcard/ns#
2
+ require 'rdf'
3
+ module RDF
4
+ class VCARD < StrictVocabulary("http://www.w3.org/2006/vcard/ns#")
5
+
6
+ # Class definitions
7
+ property :Acquaintance, :label => 'Acquaintance'
8
+ property :Address, :label => 'Address', :comment =>
9
+ %(To specify the components of the delivery address for the
10
+ object)
11
+ property :Agent, :label => 'Agent'
12
+ property :BBS, :label => 'BBS', :comment =>
13
+ %(This class is deprecated)
14
+ property :Car, :label => 'Car', :comment =>
15
+ %(This class is deprecated)
16
+ property :Cell, :label => 'Cell', :comment =>
17
+ %(Also called mobile telephone)
18
+ property :Child, :label => 'Child'
19
+ property :Colleague, :label => 'Colleague'
20
+ property :Contact, :label => 'Contact'
21
+ property :Coresident, :label => 'Coresident'
22
+ property :Coworker, :label => 'Coworker'
23
+ property :Crush, :label => 'Crush'
24
+ property :Date, :label => 'Date'
25
+ property :Dom, :label => 'Dom', :comment =>
26
+ %(This class is deprecated)
27
+ property :Email, :label => 'Email', :comment =>
28
+ %(To specify the electronic mail address for communication with
29
+ the object the vCard represents. Use the hasEmail object
30
+ property.)
31
+ property :Emergency, :label => 'Emergency'
32
+ property :Fax, :label => 'Fax'
33
+ property :Female, :label => 'Female'
34
+ property :Friend, :label => 'Friend'
35
+ property :Gender, :label => 'Gender', :comment =>
36
+ %(Used for gender codes. The URI of the gender code must be used
37
+ as the value for Gender.)
38
+ property :Group, :label => 'Group', :comment =>
39
+ %(Object representing a group of persons or entities. A group
40
+ object will usually contain hasMember properties to specify
41
+ the members of the group.)
42
+ property :Home, :label => 'Home', :comment =>
43
+ %(This implies that the property is related to an individual's
44
+ personal life)
45
+ property :ISDN, :label => 'ISDN', :comment =>
46
+ %(This class is deprecated)
47
+ property :Individual, :label => 'Individual', :comment =>
48
+ %(An object representing a single person or entity)
49
+ property :Internet, :label => 'Internet', :comment =>
50
+ %(This class is deprecated)
51
+ property :Intl, :label => 'Intl', :comment =>
52
+ %(This class is deprecated)
53
+ property :Kin, :label => 'Kin'
54
+ property :Kind, :label => 'Kind', :comment =>
55
+ %(The parent class for all objects)
56
+ property :Label, :label => 'Label', :comment =>
57
+ %(This class is deprecated)
58
+ property :Location, :label => 'Location', :comment =>
59
+ %(An object representing a named geographical place)
60
+ property :Male, :label => 'Male'
61
+ property :Me, :label => 'Me'
62
+ property :Met, :label => 'Met'
63
+ property :Modem, :label => 'Modem', :comment =>
64
+ %(This class is deprecated)
65
+ property :Msg, :label => 'Msg', :comment =>
66
+ %(This class is deprecated)
67
+ property :Muse, :label => 'Muse'
68
+ property :Name, :label => 'Name', :comment =>
69
+ %(To specify the components of the name of the object)
70
+ property :Neighbor, :label => 'Neighbor'
71
+ property :None, :label => 'None'
72
+ property :Organization, :label => 'Organization', :comment =>
73
+ %(An object representing an organization. An organization is a
74
+ single entity, and might represent a business or government, a
75
+ department or division within a business or government, a
76
+ club, an association, or the like.)
77
+ property :Other, :label => 'Other'
78
+ property :PCS, :label => 'PCS', :comment =>
79
+ %(This class is deprecated)
80
+ property :Pager, :label => 'Pager'
81
+ property :Parcel, :label => 'Parcel', :comment =>
82
+ %(This class is deprecated)
83
+ property :Parent, :label => 'Parent'
84
+ property :TelephoneType, :label => 'Phone', :comment =>
85
+ %(Used for telephone type codes. The URI of the telephone type
86
+ code must be used as the value for the Telephone Type.)
87
+ property :Postal, :label => 'Postal', :comment =>
88
+ %(This class is deprecated)
89
+ property :Pref, :label => 'Pref', :comment =>
90
+ %(This class is deprecated)
91
+ property :RelatedType, :label => 'Relation Type', :comment =>
92
+ %(Used for relation type codes. The URI of the relation type
93
+ code must be used as the value for the Relation Type.)
94
+ property :Sibling, :label => 'Sibling'
95
+ property :Spouse, :label => 'Spouse'
96
+ property :Sweetheart, :label => 'Sweetheart'
97
+ property :Tel, :label => 'Tel', :comment =>
98
+ %(This class is deprecated. Use the hasTelephone object
99
+ property.)
100
+ property :Text, :label => 'Text', :comment =>
101
+ %(Also called sms telephone)
102
+ property :TextPhone, :label => 'Text phone'
103
+ property :Type, :label => 'Type', :comment =>
104
+ %(Used for type codes. The URI of the type code must be used as
105
+ the value for Type.)
106
+ property :Unknown, :label => 'Unknown'
107
+ property :VCard, :label => 'VCard', :comment =>
108
+ %(The vCard class is deprecated and equivalent to the new Kind
109
+ class, which is the parent for the four explicit types of
110
+ vCards \(Individual, Organization, Location, Group\))
111
+ property :Video, :label => 'Video'
112
+ property :Voice, :label => 'Voice'
113
+ property :Work, :label => 'Work', :comment =>
114
+ %(This implies that the property is related to an individual's
115
+ work place)
116
+ property :X400, :label => 'X400', :comment =>
117
+ %(This class is deprecated)
118
+
119
+ # Property definitions
120
+ property :"additional-name", :label => 'additional name', :comment =>
121
+ %(The additional name associated with the object)
122
+ property :anniversary, :label => 'anniversary', :comment =>
123
+ %(The date of marriage, or equivalent, of the object)
124
+ property :bday, :label => 'birth date', :comment =>
125
+ %(To specify the birth date of the object)
126
+ property :category, :label => 'category', :comment =>
127
+ %(The category information about the object, also known as tags)
128
+ property :class, :label => 'class', :comment =>
129
+ %(This data property has been deprecated)
130
+ property :"country-name", :label => 'country name', :comment =>
131
+ %(The country name associated with the address of the object)
132
+ property :"extended-address", :label => 'extended address', :comment =>
133
+ %(This data property has been deprecated)
134
+ property :"family-name", :label => 'family name', :comment =>
135
+ %(The family name associated with the object)
136
+ property :fn, :label => 'formatted name', :comment =>
137
+ %(The formatted text corresponding to the name of the object)
138
+ property :"given-name", :label => 'given name', :comment =>
139
+ %(The given name associated with the object)
140
+ property :"honorific-prefix", :label => 'honorific prefix', :comment =>
141
+ %(The honorific prefix of the name associated with the object)
142
+ property :"honorific-suffix", :label => 'honorific suffix', :comment =>
143
+ %(The honorific suffix of the name associated with the object)
144
+ property :label, :label => 'label', :comment =>
145
+ %(This data property has been deprecated)
146
+ property :language, :label => 'language', :comment =>
147
+ %(To specify the language that may be used for contacting the
148
+ object. May also be used as a property parameter.)
149
+ property :latitude, :label => 'latitude', :comment =>
150
+ %(This data property has been deprecated)
151
+ property :locality, :label => 'locality', :comment =>
152
+ %(The locality \(e.g. city or town\) associated with the address
153
+ of the object)
154
+ property :longitude, :label => 'longitude', :comment =>
155
+ %(This data property has been deprecated)
156
+ property :mailer, :label => 'mailer', :comment =>
157
+ %(This data property has been deprecated)
158
+ property :nickname, :label => 'nickname', :comment =>
159
+ %(The nick name associated with the object)
160
+ property :note, :label => 'note', :comment =>
161
+ %(A note associated with the object)
162
+ property :"organization-name", :label => 'organization name', :comment =>
163
+ %(To specify the organizational name associated with the object)
164
+ property :"organization-unit", :label => 'organizational unit name', :comment =>
165
+ %(To specify the organizational unit name associated with the
166
+ object)
167
+ property :"post-office-box", :label => 'post office box', :comment =>
168
+ %(This data property has been deprecated)
169
+ property :"postal-code", :label => 'postal code', :comment =>
170
+ %(The postal code associated with the address of the object)
171
+ property :prodid, :label => 'product id', :comment =>
172
+ %(To specify the identifier for the product that created the
173
+ object)
174
+ property :region, :label => 'region', :comment =>
175
+ %(The region \(e.g. state or province\) associated with the
176
+ address of the object)
177
+ property :rev, :label => 'revision', :comment =>
178
+ %(To specify revision information about the object)
179
+ property :role, :label => 'role', :comment =>
180
+ %(To specify the function or part played in a particular
181
+ situation by the object)
182
+ property :"sort-string", :label => 'sort as', :comment =>
183
+ %(To specify the string to be used for
184
+ national-language-specific sorting. Used as a property
185
+ parameter only.)
186
+ property :"street-address", :label => 'street address', :comment =>
187
+ %(The street address associated with the address of the object)
188
+ property :tz, :label => 'time zone', :comment =>
189
+ %(To indicate time zone information that is specific to the
190
+ object. May also be used as a property parameter.)
191
+ property :title, :label => 'title', :comment =>
192
+ %(To specify the position or job of the object)
193
+ property :value, :label => 'value', :comment =>
194
+ %(Used to indicate the literal value of a data property that
195
+ requires property parameters)
196
+ property :adr, :label => 'address', :comment =>
197
+ %(This object property has been deprecated)
198
+ property :agent, :label => 'agent', :comment =>
199
+ %(This object property has been deprecated)
200
+ property :email, :label => 'email', :comment =>
201
+ %(This object property has been deprecated)
202
+ property :geo, :label => 'geo', :comment =>
203
+ %(This object property has been deprecated)
204
+ property :hasAdditionalName, :label => 'has additional name', :comment =>
205
+ %(Used to support property parameters for the additional name
206
+ data property)
207
+ property :hasAddress, :label => 'has address', :comment =>
208
+ %(To specify the components of the delivery address for the
209
+ object)
210
+ property :hasCalendarBusy, :label => 'has calendar busy', :comment =>
211
+ %(To specify the busy time associated with the object. \(Was
212
+ called FBURL in RFC6350\))
213
+ property :hasCalendarLink, :label => 'has calendar link', :comment =>
214
+ %(To specify the calendar associated with the object. \(Was
215
+ called CALURI in RFC6350\))
216
+ property :hasCalendarRequest, :label => 'has calendar request', :comment =>
217
+ %(To specify the calendar user address to which a scheduling
218
+ request be sent for the object. \(Was called CALADRURI in
219
+ RFC6350\))
220
+ property :hasCategory, :label => 'has category', :comment =>
221
+ %(Used to support property parameters for the category data
222
+ property)
223
+ property :hasCountryName, :label => 'has country name', :comment =>
224
+ %(Used to support property parameters for the country name data
225
+ property)
226
+ property :hasEmail, :label => 'has email', :comment =>
227
+ %(To specify the electronic mail address for communication with
228
+ the object)
229
+ property :hasFamilyName, :label => 'has family name', :comment =>
230
+ %(Used to support property parameters for the family name data
231
+ property)
232
+ property :hasFN, :label => 'has formatted name', :comment =>
233
+ %(Used to support property parameters for the formatted name
234
+ data property)
235
+ property :hasGender, :label => 'has gender', :comment =>
236
+ %(To specify the sex or gender identity of the object. URIs are
237
+ recommended to enable interoperable sex and gender codes to be
238
+ used.)
239
+ property :hasGeo, :label => 'has geo', :comment =>
240
+ %(To specify information related to the global positioning of
241
+ the object. May also be used as a property parameter.)
242
+ property :hasGivenName, :label => 'has given name', :comment =>
243
+ %(Used to support property parameters for the given name data
244
+ property)
245
+ property :hasHonorificPrefix, :label => 'has honorific prefix', :comment =>
246
+ %(Used to support property parameters for the honorific prefix
247
+ data property)
248
+ property :hasHonorificSuffix, :label => 'has honorific suffix', :comment =>
249
+ %(Used to support property parameters for the honorific suffix
250
+ data property)
251
+ property :hasKey, :label => 'has key', :comment =>
252
+ %(To specify a public key or authentication certificate
253
+ associated with the object)
254
+ property :hasLanguage, :label => 'has language', :comment =>
255
+ %(Used to support property parameters for the language data
256
+ property)
257
+ property :hasLocality, :label => 'has locality', :comment =>
258
+ %(Used to support property parameters for the locality data
259
+ property)
260
+ property :hasLogo, :label => 'has logo', :comment =>
261
+ %(To specify a graphic image of a logo associated with the
262
+ object)
263
+ property :hasMember, :label => 'has member', :comment =>
264
+ %(To include a member in the group this object represents.
265
+ \(This property can only be used by Group individuals\))
266
+ property :hasInstantMessage, :label => 'has messaging', :comment =>
267
+ %(To specify the instant messaging and presence protocol
268
+ communications with the object. \(Was called IMPP in RFC6350\))
269
+ property :hasName, :label => 'has name', :comment =>
270
+ %(To specify the components of the name of the object)
271
+ property :hasNickname, :label => 'has nickname', :comment =>
272
+ %(Used to support property parameters for the nickname data
273
+ property)
274
+ property :hasNote, :label => 'has note', :comment =>
275
+ %(Used to support property parameters for the note data property)
276
+ property :hasOrganizationName, :label => 'has organization name', :comment =>
277
+ %(Used to support property parameters for the organization name
278
+ data property)
279
+ property :hasOrganizationUnit, :label => 'has organization unit name', :comment =>
280
+ %(Used to support property parameters for the organization unit
281
+ name data property)
282
+ property :hasPhoto, :label => 'has photo', :comment =>
283
+ %(To specify an image or photograph information that annotates
284
+ some aspect of the object)
285
+ property :hasPostalCode, :label => 'has postal code', :comment =>
286
+ %(Used to support property parameters for the postal code data
287
+ property)
288
+ property :hasRegion, :label => 'has region', :comment =>
289
+ %(Used to support property parameters for the region data
290
+ property)
291
+ property :hasRelated, :label => 'has related', :comment =>
292
+ %(To specify a relationship between another entity and the
293
+ entity represented by this object)
294
+ property :hasRole, :label => 'has role', :comment =>
295
+ %(Used to support property parameters for the role data property)
296
+ property :hasSound, :label => 'has sound', :comment =>
297
+ %(To specify a digital sound content information that annotates
298
+ some aspect of the object)
299
+ property :hasSource, :label => 'has source', :comment =>
300
+ %(To identify the source of directory information of the object)
301
+ property :hasStreetAddress, :label => 'has street address', :comment =>
302
+ %(Used to support property parameters for the street address
303
+ data property)
304
+ property :hasTelephone, :label => 'has telephone', :comment =>
305
+ %(To specify the telephone number for telephony communication
306
+ with the object)
307
+ property :hasTitle, :label => 'has title', :comment =>
308
+ %(Used to support property parameters for the title data
309
+ property)
310
+ property :hasUID, :label => 'has uid', :comment =>
311
+ %(To specify a value that represents a globally unique
312
+ identifier corresponding to the object)
313
+ property :hasURL, :label => 'has url', :comment =>
314
+ %(To specify a uniform resource locator associated with the
315
+ object)
316
+ property :hasValue, :label => 'has value', :comment =>
317
+ %(Used to indicate the resource value of an object property that
318
+ requires property parameters)
319
+ property :key, :label => 'key', :comment =>
320
+ %(This object property has been deprecated)
321
+ property :logo, :label => 'logo', :comment =>
322
+ %(This object property has been deprecated)
323
+ property :n, :label => 'name', :comment =>
324
+ %(This object property has been deprecated)
325
+ property :org, :label => 'organization', :comment =>
326
+ %(This object property has been deprecated. Use the
327
+ organization-name data property.)
328
+ property :photo, :label => 'photo', :comment =>
329
+ %(This object property has been deprecated)
330
+ property :sound, :label => 'sound', :comment =>
331
+ %(This object property has been deprecated)
332
+ property :tel, :label => 'telephone', :comment =>
333
+ %(This object property has been deprecated)
334
+ property :url, :label => 'url', :comment =>
335
+ %(This object property has been deprecated)
336
+ end
337
+ end