ucb_ldap 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,101 @@
1
+
2
+ module UCB
3
+ module LDAP
4
+ # = UCB::LDAP::StudentTerm
5
+ #
6
+ # This class models a student's term entries in the UCB LDAP directory.
7
+ #
8
+ # terms = StudentTerm.find_by_uid("1234") #=> [#<UCB::LDAP::StudentTerm: ...>, ...]
9
+ #
10
+ # StudentTerms are usually loaded through a Person instance:
11
+ #
12
+ # p = Person.find_by_uid("1234") #=> #<UCB::LDAP::Person: ...>
13
+ # terms = p.student_terms #=> [#<UCB::LDAP::StudentTerm: ...>, ...]
14
+ #
15
+ # == Note on Binds
16
+ #
17
+ # You must have a privileged bind and pass your credentials to UCB::LDAP.authenticate()
18
+ # before performing your StudentTerm search.
19
+ #
20
+ class StudentTerm < Entry
21
+ @entity_name = 'personStudentTerm'
22
+
23
+ def change_datetime
24
+ UCB::LDAP.local_datetime_parse(berkeleyEduStuChangeDate)
25
+ end
26
+
27
+ def college_code
28
+ berkeleyEduStuCollegeCode
29
+ end
30
+
31
+ def college_name
32
+ berkeleyEduStuCollegeName
33
+ end
34
+
35
+ def level_code
36
+ berkeleyEduStuEduLevelCode
37
+ end
38
+
39
+ def level_name
40
+ berkeleyEduStuEduLevelName
41
+ end
42
+
43
+ def role_code
44
+ berkeleyEduStuEduRoleCode
45
+ end
46
+
47
+ def role_name
48
+ berkeleyEduStuEduRoleName
49
+ end
50
+
51
+ def major_code
52
+ berkeleyEduStuMajorCode
53
+ end
54
+
55
+ def major_name
56
+ berkeleyEduStuMajorName
57
+ end
58
+
59
+ def registration_status_code
60
+ berkeleyEduStuRegStatCode
61
+ end
62
+
63
+ def registration_status_name
64
+ berkeleyEduStuRegStatName
65
+ end
66
+
67
+ def term_code
68
+ berkeleyEduStuTermCode
69
+ end
70
+
71
+ def term_name
72
+ berkeleyEduStuTermName
73
+ end
74
+
75
+ def term_status
76
+ berkeleyEduStuTermStatus
77
+ end
78
+
79
+ def term_year
80
+ berkeleyEduStuTermYear
81
+ end
82
+
83
+ def under_graduate_code
84
+ berkeleyEduStuUGCode
85
+ end
86
+
87
+ class << self
88
+ # Returns an Array of JobAppointment for <tt>uid</tt>, sorted by
89
+ # record_number().
90
+ # Returns an empty Array ([]) if nothing is found.
91
+ #
92
+ def find_by_uid(uid)
93
+ base = "uid=#{uid},ou=people,dc=berkeley,dc=edu"
94
+ filter = Net::LDAP::Filter.eq("objectclass", 'berkeleyEduPersonTerm')
95
+ search(:base => base, :filter => filter)
96
+ end
97
+
98
+ end
99
+ end
100
+ end
101
+ end
@@ -0,0 +1,201 @@
1
+
2
+ module UCB
3
+ module LDAP
4
+ class SimpleEntry
5
+
6
+ # Returns new instance of UCB::LDAP::Entry. The argument
7
+ # net_ldap_entry is an instance of Net::LDAP::Entry.
8
+ #
9
+ # You should not need to create any UCB::LDAP::Entry instances;
10
+ # they are created by calls to UCB::LDAP.search and friends.
11
+ def initialize(dn) #:nodoc:
12
+
13
+ #
14
+ #auth = {:username=>"cn=greedybuddha", :method=>:simple, :password=>"wig0gin"}
15
+ #ldap = Net::LDAP.new(:host => '0.0.0.0', :port => 1389, :auth => auth)
16
+ #dn = "cn=Steven Hansen,ou=people,dc=berkeley,dc=edu"
17
+ #
18
+ #attr = {
19
+ # :objectclass => [
20
+ # "inetorgperson",
21
+ # ],
22
+ # :cn => "Steven Hansen",
23
+ # :uid => '61065',
24
+ # :sn => "Hansen",
25
+ #}
26
+ #
27
+
28
+
29
+
30
+ # Don't store Net::LDAP entry in object since it uses the block
31
+ # initialization method of Hash which can't be marshalled ... this
32
+ # means it can't be stored in a Rails session.
33
+ @attributes = {}
34
+ net_ldap_entry.each do |attr, value|
35
+ @attributes[canonical(attr)] = value.map{|v| v.dup}
36
+ end
37
+ end
38
+
39
+ # <tt>Hash</tt> of attributes returned from underlying NET::LDAP::Entry
40
+ # instance. Hash keys are #canonical attribute names, hash values are attribute
41
+ # values <em>as returned from LDAP</em>, i.e. arrays.
42
+ #
43
+ # You should most likely be referencing attributes as if they were
44
+ # instance methods rather than directly through this method. See top of
45
+ # this document.
46
+ def attributes
47
+ @attributes
48
+ end
49
+
50
+ # Returns the value of the <em>Distinguished Name</em> attribute.
51
+ def dn
52
+ attributes[canonical(:dn)]
53
+ end
54
+
55
+ def canonical(string_or_symbol) #:nodoc:
56
+ self.class.canonical(string_or_symbol)
57
+ end
58
+
59
+ def net_ldap
60
+ self.class.net_ldap
61
+ end
62
+
63
+ private unless $TESTING
64
+
65
+ # Used to get/set attribute values.
66
+ #
67
+ # If we can't make an attribute name out of method, let
68
+ # regular method_missing() handle it.
69
+ def method_missing(method, *args) #:nodoc:
70
+ setter_method?(method) ? value_setter(method, *args) : value_getter(method)
71
+ rescue BadAttributeNameException
72
+ return super
73
+ end
74
+
75
+ # Returns +true+ if _method_ is a "setter", i.e., ends in "=".
76
+ def setter_method?(method)
77
+ method.to_s[-1, 1] == "="
78
+ end
79
+
80
+ # Called by method_missing() to get an attribute value.
81
+ def value_getter(method)
82
+ schema_attribute = self.class.schema_attribute(method)
83
+ raw_value = attributes[canonical(schema_attribute.name)]
84
+ schema_attribute.get_value(raw_value)
85
+ end
86
+
87
+ # Called by method_missing() to set an attribute value.
88
+ def value_setter(method, *args)
89
+ schema_attribute = self.class.schema_attribute(method.to_s.chop)
90
+ attr_key = canonical(schema_attribute.name)
91
+ assigned_attributes[attr_key] = schema_attribute.ldap_value(args[0])
92
+ end
93
+
94
+ def assigned_attributes
95
+ @assigned_attributes ||= {}
96
+ end
97
+
98
+ # Class methods
99
+ class << self
100
+
101
+ public
102
+
103
+ # Creates and returns new entry. Returns +false+ if unsuccessful.
104
+ # Sets :objectclass key of <em>args[:attributes]</em> to
105
+ # object_classes read from schema.
106
+ #
107
+ # dn = "uid=999999,ou=people,dc=example,dc=com"
108
+ # attr = {
109
+ # :uid => "999999",
110
+ # :mail => "gsmith@example.com"
111
+ # }
112
+ #
113
+ # EntrySubClass.create(:dn => dn, :attributes => attr) #=> #<UCB::LDAP::EntrySubClass ..>
114
+ #
115
+ # Caller is responsible for setting :dn and :attributes correctly,
116
+ # as well as any other validation.
117
+ #
118
+ def create(args)
119
+ args[:attributes][:objectclass] = object_classes
120
+ net_ldap.add(args) or return false
121
+
122
+ # Why is the object being refetched from LDAP here?
123
+ find_by_dn(args[:dn])
124
+ end
125
+
126
+ # Same as #create(), but raises DirectoryNotUpdated on failure.
127
+ def create!(args)
128
+ create(args) || raise(DirectoryNotUpdatedException)
129
+ end
130
+
131
+ # Returns +Array+ of object classes making up this type of LDAP entity.
132
+ def object_classes
133
+ @object_classes ||= UCB::LDAP::Schema.schema_hash[entity_name]["objectClasses"]
134
+ end
135
+
136
+ def unique_object_class
137
+ @unique_object_class ||= UCB::LDAP::Schema.schema_hash[entity_name]["uniqueObjectClass"]
138
+ end
139
+
140
+ # Returns an +Array+ of Schema::Attribute for the entity.
141
+ def schema_attributes_array
142
+ @schema_attributes_array || set_schema_attributes
143
+ @schema_attributes_array
144
+ end
145
+
146
+ # Returns as +Hash+ whose keys are the canonical attribute names
147
+ # and whose values are the corresponding Schema::Attributes.
148
+ def schema_attributes_hash
149
+ @schema_attributes_hash || set_schema_attributes
150
+ @schema_attributes_hash
151
+ end
152
+
153
+ def schema_attribute(attribute_name)
154
+ schema_attributes_hash[canonical(attribute_name)] ||
155
+ raise(BadAttributeNameException, "'#{attribute_name}' is not a recognized attribute name")
156
+ end
157
+
158
+
159
+ # Returns the canonical representation of a symbol or string so
160
+ # we can look up attributes in a number of ways.
161
+ def canonical(string_or_symbol)
162
+ string_or_symbol.to_s.downcase.to_sym
163
+ end
164
+
165
+ # Returns underlying Net::LDAP instance.
166
+ def net_ldap #:nodoc:
167
+ UCB::LDAP.net_ldap
168
+ end
169
+
170
+ private unless $TESTING
171
+
172
+
173
+ # Want an array of Schema::Attributes as well as a hash
174
+ # of all possible variations on a name pointing to correct array element.
175
+ def set_schema_attributes
176
+ @schema_attributes_array = []
177
+ @schema_attributes_hash = {}
178
+ UCB::LDAP::Schema.schema_hash[entity_name]["attributes"].each do |k, v|
179
+ sa = UCB::LDAP::Schema::Attribute.new(v.merge("name" => k))
180
+ @schema_attributes_array << sa
181
+ [sa.name, sa.aliases].flatten.each do |name|
182
+ @schema_attributes_hash[canonical(name)] = sa
183
+ end
184
+ end
185
+ rescue
186
+ raise "Error loading schema attributes for entity_name '#{entity_name}'"
187
+ end
188
+
189
+ # Can be overridden in #search by passing in a <tt>:base</tt> parm.
190
+ def tree_base
191
+ @tree_base
192
+ end
193
+
194
+ def tree_base=(tree_base)
195
+ @tree_base = tree_base
196
+ end
197
+
198
+ end # end of class methods
199
+ end
200
+ end
201
+ end
@@ -0,0 +1,2954 @@
1
+ #
2
+ # Schema File For: ldap.berkeley.edu
3
+ # Last Generated: Thu Jun 12 08:45:30 2008
4
+ #
5
+ # This file contains information about the following part of the tree:
6
+ # namespaceName
7
+ # namespaceService
8
+ # org
9
+ # person
10
+ # personAddress
11
+ # personAffiliateAffiliation
12
+ # personJobAppointment
13
+ # personService
14
+ # personStudentTerm
15
+ # unibears
16
+ # securityQuestion
17
+ # honorific
18
+ # generationalTitle
19
+ # salutation
20
+ #
21
+ # Please address questions or problems to calnet-admin@lists.berkeley.edu
22
+ #
23
+ ---
24
+ generationalTitle:
25
+ attributes:
26
+ cn:
27
+ aliases:
28
+ - commonName
29
+ description: 'Standard LDAP attribute type'
30
+ multi: true
31
+ objectClass: berkeleyEduCalNetGenerational
32
+ required: true
33
+ syntax: string
34
+ description:
35
+ description: 'Standard LDAP attribute type'
36
+ multi: true
37
+ objectClass: berkeleyEduCalNetGenerational
38
+ required: false
39
+ syntax: string
40
+ objectClass:
41
+ description: 'Standard LDAP attribute type'
42
+ multi: true
43
+ objectClass: top
44
+ required: true
45
+ syntax: string
46
+ objectClasses:
47
+ - top
48
+ - berkeleyEduCalNetGenerational
49
+ uniqueObjectClass: berkeleyEduCalNetGenerational
50
+ honorific:
51
+ attributes:
52
+ cn:
53
+ aliases:
54
+ - commonName
55
+ description: 'Standard LDAP attribute type'
56
+ multi: true
57
+ objectClass: berkeleyEduCalNetHonorific
58
+ required: true
59
+ syntax: string
60
+ description:
61
+ description: 'Standard LDAP attribute type'
62
+ multi: true
63
+ objectClass: berkeleyEduCalNetHonorific
64
+ required: false
65
+ syntax: string
66
+ objectClass:
67
+ description: 'Standard LDAP attribute type'
68
+ multi: true
69
+ objectClass: top
70
+ required: true
71
+ syntax: string
72
+ objectClasses:
73
+ - top
74
+ - berkeleyEduCalNetHonorific
75
+ uniqueObjectClass: berkeleyEduCalNetHonorific
76
+ namespaceName:
77
+ attributes:
78
+ berkeleyEduServices:
79
+ description: Services
80
+ multi: true
81
+ objectClass: berkeleyEduNamespaceName
82
+ required: false
83
+ syntax: string
84
+ cn:
85
+ aliases:
86
+ - commonName
87
+ description: 'Standard LDAP attribute type'
88
+ multi: true
89
+ objectClass: berkeleyEduNamespaceName
90
+ required: true
91
+ syntax: string
92
+ description:
93
+ description: 'Standard LDAP attribute type'
94
+ multi: true
95
+ objectClass: berkeleyEduNamespaceName
96
+ required: false
97
+ syntax: string
98
+ objectClass:
99
+ description: 'Standard LDAP attribute type'
100
+ multi: true
101
+ objectClass: top
102
+ required: true
103
+ syntax: string
104
+ uid:
105
+ aliases:
106
+ - userid
107
+ description: 'Standard LDAP attribute type'
108
+ multi: true
109
+ objectClass: berkeleyEduNamespaceName
110
+ required: true
111
+ syntax: string
112
+ objectClasses:
113
+ - top
114
+ - berkeleyEduNamespaceName
115
+ uniqueObjectClass: berkeleyEduNamespaceName
116
+ namespaceService:
117
+ attributes:
118
+ cn:
119
+ aliases:
120
+ - commonName
121
+ description: 'Standard LDAP attribute type'
122
+ multi: true
123
+ objectClass: berkeleyEduNamespaceServiceType
124
+ required: true
125
+ syntax: string
126
+ description:
127
+ description: 'Standard LDAP attribute type'
128
+ multi: true
129
+ objectClass: berkeleyEduNamespaceServiceType
130
+ required: false
131
+ syntax: string
132
+ objectClass:
133
+ description: 'Standard LDAP attribute type'
134
+ multi: true
135
+ objectClass: top
136
+ required: true
137
+ syntax: string
138
+ objectClasses:
139
+ - top
140
+ - berkeleyEduNamespaceServiceType
141
+ uniqueObjectClass: berkeleyEduNamespaceServiceType
142
+ org:
143
+ attributes:
144
+ berkeleyEduOrgUnitHierarchyString:
145
+ aliases:
146
+ - ucborgunithierarchystring
147
+ description: 'Org-Unit Hierarchy-String'
148
+ multi: false
149
+ objectClass: berkeleyEduOrgUnit
150
+ required: false
151
+ syntax: string
152
+ berkeleyEduOrgUnitParent:
153
+ aliases:
154
+ - ucborgunitparent
155
+ description: 'Org-Unit Parent'
156
+ multi: true
157
+ objectClass: berkeleyEduOrgUnit
158
+ required: false
159
+ syntax: string
160
+ berkeleyEduOrgUnitProcessUnitFlag:
161
+ aliases:
162
+ - ucborgunitprocessunitflag
163
+ description: 'Org-Unit Process Unit Flag'
164
+ multi: false
165
+ objectClass: berkeleyEduOrgUnit
166
+ required: false
167
+ syntax: boolean
168
+ businessCategory:
169
+ description: 'Standard LDAP attribute type'
170
+ multi: true
171
+ objectClass: organizationalunit
172
+ required: false
173
+ syntax: string
174
+ description:
175
+ description: 'Standard LDAP attribute type'
176
+ multi: true
177
+ objectClass: organizationalunit
178
+ required: false
179
+ syntax: string
180
+ destinationIndicator:
181
+ description: 'Standard LDAP attribute type'
182
+ multi: true
183
+ objectClass: organizationalunit
184
+ required: false
185
+ syntax: string
186
+ facsimileTelephoneNumber:
187
+ aliases:
188
+ - fax
189
+ description: 'Standard LDAP attribute type'
190
+ multi: true
191
+ objectClass: organizationalunit
192
+ required: false
193
+ syntax: string
194
+ internationaliSDNNumber:
195
+ description: 'Standard LDAP attribute type'
196
+ multi: true
197
+ objectClass: organizationalunit
198
+ required: false
199
+ syntax: string
200
+ l:
201
+ aliases:
202
+ - locality
203
+ - localityname
204
+ description: 'Standard LDAP attribute type'
205
+ multi: true
206
+ objectClass: organizationalunit
207
+ required: false
208
+ syntax: string
209
+ objectClass:
210
+ description: 'Standard LDAP attribute type'
211
+ multi: true
212
+ objectClass: top
213
+ required: true
214
+ syntax: string
215
+ ou:
216
+ aliases:
217
+ - organizationalUnitName
218
+ description: 'Standard LDAP attribute type'
219
+ multi: true
220
+ objectClass: organizationalunit
221
+ required: true
222
+ syntax: string
223
+ physicalDeliveryOfficeName:
224
+ description: 'Standard LDAP attribute type'
225
+ multi: true
226
+ objectClass: organizationalunit
227
+ required: false
228
+ syntax: string
229
+ postOfficeBox:
230
+ description: 'Standard LDAP attribute type'
231
+ multi: true
232
+ objectClass: organizationalunit
233
+ required: false
234
+ syntax: string
235
+ postalAddress:
236
+ description: 'Standard LDAP attribute type'
237
+ multi: true
238
+ objectClass: organizationalunit
239
+ required: false
240
+ syntax: string
241
+ postalCode:
242
+ description: 'Standard LDAP attribute type'
243
+ multi: true
244
+ objectClass: organizationalunit
245
+ required: false
246
+ syntax: string
247
+ preferredDeliveryMethod:
248
+ description: 'Standard LDAP attribute type'
249
+ multi: false
250
+ objectClass: organizationalunit
251
+ required: false
252
+ syntax: string
253
+ registeredAddress:
254
+ description: 'Standard LDAP attribute type'
255
+ multi: true
256
+ objectClass: organizationalunit
257
+ required: false
258
+ syntax: string
259
+ searchGuide:
260
+ description: 'Standard LDAP attribute type'
261
+ multi: true
262
+ objectClass: organizationalunit
263
+ required: false
264
+ syntax: string
265
+ seeAlso:
266
+ description: 'Standard LDAP attribute type'
267
+ multi: true
268
+ objectClass: organizationalunit
269
+ required: false
270
+ syntax: string
271
+ st:
272
+ aliases:
273
+ - stateOrProvinceName
274
+ description: 'Standard LDAP attribute type'
275
+ multi: true
276
+ objectClass: organizationalunit
277
+ required: false
278
+ syntax: string
279
+ street:
280
+ aliases:
281
+ - streetaddress
282
+ description: 'Standard LDAP attribute type'
283
+ multi: true
284
+ objectClass: organizationalunit
285
+ required: false
286
+ syntax: string
287
+ telephoneNumber:
288
+ description: 'Standard LDAP attribute type'
289
+ multi: true
290
+ objectClass: organizationalunit
291
+ required: false
292
+ syntax: string
293
+ teletexTerminalIdentifier:
294
+ description: 'Standard LDAP attribute type'
295
+ multi: true
296
+ objectClass: organizationalunit
297
+ required: false
298
+ syntax: string
299
+ telexNumber:
300
+ description: 'Standard LDAP attribute type'
301
+ multi: true
302
+ objectClass: organizationalunit
303
+ required: false
304
+ syntax: string
305
+ userPassword:
306
+ description: 'Standard LDAP attribute type'
307
+ multi: true
308
+ objectClass: organizationalunit
309
+ required: false
310
+ syntax: string
311
+ x121Address:
312
+ description: 'Standard LDAP attribute type'
313
+ multi: true
314
+ objectClass: organizationalunit
315
+ required: false
316
+ syntax: string
317
+ objectClasses:
318
+ - top
319
+ - organizationalunit
320
+ - berkeleyEduOrgUnit
321
+ uniqueObjectClass: berkeleyEduOrgUnit
322
+ person:
323
+ attributes:
324
+ UCTrustAssurance:
325
+ description: 'UC UCTrust Assurance'
326
+ multi: true
327
+ objectClass: ucEduPerson
328
+ required: false
329
+ syntax: string
330
+ UCnetID:
331
+ aliases:
332
+ - ucbnetid
333
+ description: 'UC UCTrust Net ID'
334
+ multi: false
335
+ objectClass: ucEduPerson
336
+ required: false
337
+ syntax: integer
338
+ audio:
339
+ description: 'Standard LDAP attribute type'
340
+ multi: true
341
+ objectClass: inetorgperson
342
+ required: false
343
+ syntax: binary
344
+ berkeleyEduAcaSenFlag:
345
+ aliases:
346
+ - ucbacasenflag
347
+ description: 'Academic Senate Flag'
348
+ multi: false
349
+ objectClass: berkeleyEduPerson
350
+ required: false
351
+ syntax: boolean
352
+ berkeleyEduAffApptBeginDate:
353
+ description: 'Affiliate Appointment Begin Date'
354
+ multi: false
355
+ objectClass: berkeleyEduPerson
356
+ required: false
357
+ syntax: string
358
+ berkeleyEduAffApptEndDate:
359
+ description: 'Affiliate Appointment End Date'
360
+ multi: false
361
+ objectClass: berkeleyEduPerson
362
+ required: false
363
+ syntax: string
364
+ berkeleyEduAffBirthMonthDay:
365
+ description: 'Affiliate Birth Month-Day'
366
+ multi: false
367
+ objectClass: berkeleyEduPerson
368
+ required: false
369
+ syntax: string
370
+ berkeleyEduAffCreateDate:
371
+ description: 'Affiliate Create Date'
372
+ multi: false
373
+ objectClass: berkeleyEduPerson
374
+ required: false
375
+ syntax: timestamp
376
+ berkeleyEduAffExpDate:
377
+ aliases:
378
+ - ucbaffexpdate
379
+ description: 'Affiliate Expiration Date'
380
+ multi: false
381
+ objectClass: berkeleyEduPerson
382
+ required: false
383
+ syntax: timestamp
384
+ berkeleyEduAffFeePaidDate:
385
+ description: 'Affiliate Fee Paid Date'
386
+ multi: false
387
+ objectClass: berkeleyEduPerson
388
+ required: false
389
+ syntax: string
390
+ berkeleyEduAffID:
391
+ aliases:
392
+ - ucbaffid
393
+ description: 'Affiliate ID'
394
+ multi: true
395
+ objectClass: berkeleyEduPerson
396
+ required: false
397
+ syntax: string
398
+ berkeleyEduAffModDate:
399
+ aliases:
400
+ - ucbaffmoddate
401
+ description: 'Affiliate Modification Date'
402
+ multi: false
403
+ objectClass: berkeleyEduPerson
404
+ required: false
405
+ syntax: timestamp
406
+ berkeleyEduAffName:
407
+ aliases:
408
+ - ucbaffname
409
+ description: 'Affiliate Name'
410
+ multi: true
411
+ objectClass: berkeleyEduPerson
412
+ required: false
413
+ syntax: string
414
+ berkeleyEduAffTerminationDate:
415
+ description: 'Affiliate Appointment Termination Date'
416
+ multi: false
417
+ objectClass: berkeleyEduPerson
418
+ required: false
419
+ syntax: string
420
+ berkeleyEduAffTypes:
421
+ description: 'Affiliate Types'
422
+ multi: true
423
+ objectClass: berkeleyEduPerson
424
+ required: false
425
+ syntax: string
426
+ berkeleyEduAffWorkStudyFlag:
427
+ description: 'Affiliate Work Study Flag'
428
+ multi: false
429
+ objectClass: berkeleyEduPerson
430
+ required: false
431
+ syntax: string
432
+ berkeleyEduAffiliations:
433
+ aliases:
434
+ - ucbaffiliations
435
+ description: 'Berkeley Campus General Affiliations'
436
+ multi: true
437
+ objectClass: berkeleyEduPerson
438
+ required: false
439
+ syntax: string
440
+ berkeleyEduAffiliationsDetailed:
441
+ aliases:
442
+ - ucbaffiliationsdetailed
443
+ description: 'Berkeley Campus Detailed Affiliation'
444
+ multi: true
445
+ objectClass: berkeleyEduPerson
446
+ required: false
447
+ syntax: string
448
+ berkeleyEduAppStandardCalMailDeptAccountTicket:
449
+ description: 'CalMail Account Ticket'
450
+ multi: true
451
+ objectClass: berkeleyEduPerson
452
+ required: false
453
+ syntax: string
454
+ berkeleyEduAppStandardCalMailDisallowedBy:
455
+ description: 'CalMail Disallowed By'
456
+ multi: false
457
+ objectClass: berkeleyEduPerson
458
+ required: false
459
+ syntax: string
460
+ berkeleyEduAppStandardCalMailDisallowedDate:
461
+ description: 'CalMail Disallowed Date'
462
+ multi: false
463
+ objectClass: berkeleyEduPerson
464
+ required: false
465
+ syntax: string
466
+ berkeleyEduAppStandardCalMailDisallowedFlag:
467
+ description: 'CalMail Disallowed Flag'
468
+ multi: false
469
+ objectClass: berkeleyEduPerson
470
+ required: false
471
+ syntax: string
472
+ berkeleyEduAppStandardCalPhotoIDBarcode:
473
+ aliases:
474
+ - ucbappstandardcalphotoidbarcode
475
+ description: 'Cal Photo ID - Barcode'
476
+ multi: false
477
+ objectClass: berkeleyEduPerson
478
+ required: false
479
+ syntax: string
480
+ berkeleyEduAppStandardCalPhotoIDLostCardDigit:
481
+ aliases:
482
+ - ucbappstandardcalphotoidlostcarddigit
483
+ description: 'Cal Photo ID - Lost Card Digit'
484
+ multi: false
485
+ objectClass: berkeleyEduPerson
486
+ required: false
487
+ syntax: integer
488
+ berkeleyEduAppStandardCalPhotoIDMagStripe:
489
+ aliases:
490
+ - ucbappstandardcalphotoidmagstripe
491
+ description: 'Cal Photo ID - Mag Stripe'
492
+ multi: false
493
+ objectClass: berkeleyEduPerson
494
+ required: false
495
+ syntax: string
496
+ berkeleyEduAppStandardCommuniteAddlMbox:
497
+ description: 'Communite Additional Mbox'
498
+ multi: true
499
+ objectClass: berkeleyEduPerson
500
+ required: false
501
+ syntax: string
502
+ berkeleyEduAppStandardCommuniteAdminFlag:
503
+ description: 'Communite Admin Flag'
504
+ multi: false
505
+ objectClass: berkeleyEduPerson
506
+ required: false
507
+ syntax: string
508
+ berkeleyEduAppStandardCommuniteEmailAddress:
509
+ description: 'Communite Email Address'
510
+ multi: false
511
+ objectClass: berkeleyEduPerson
512
+ required: false
513
+ syntax: string
514
+ berkeleyEduAppStandardCommuniteEmailHost:
515
+ description: 'Communite Email Host'
516
+ multi: false
517
+ objectClass: berkeleyEduPerson
518
+ required: false
519
+ syntax: string
520
+ berkeleyEduAppStandardCommuniteEmailPassword:
521
+ description: 'Communite Email Password'
522
+ multi: false
523
+ objectClass: berkeleyEduPerson
524
+ required: false
525
+ syntax: string
526
+ berkeleyEduAppStandardCommuniteEmailUserName:
527
+ description: 'Communite Email User Name'
528
+ multi: false
529
+ objectClass: berkeleyEduPerson
530
+ required: false
531
+ syntax: string
532
+ berkeleyEduAppStandardDeputyOptOutFlag:
533
+ aliases:
534
+ - ucbappstandarddeputyoptoutflag
535
+ description: 'Deputy Opt-Out Flag'
536
+ multi: false
537
+ objectClass: berkeleyEduPerson
538
+ required: false
539
+ syntax: string
540
+ berkeleyEduAppStandardQuestPerms:
541
+ aliases:
542
+ - ucbappstandardquestperms
543
+ description: 'Quest Permissions'
544
+ multi: true
545
+ objectClass: berkeleyEduPerson
546
+ required: false
547
+ syntax: string
548
+ berkeleyEduAppStandardWebDiskID:
549
+ aliases:
550
+ - ucbappstandardwebdiskid
551
+ description: 'Web Disk ID'
552
+ multi: false
553
+ objectClass: berkeleyEduPerson
554
+ required: false
555
+ syntax: string
556
+ berkeleyEduAppStandardWmfGid:
557
+ aliases:
558
+ - ucbappstandardwmfgid
559
+ description: 'WMF GID'
560
+ multi: false
561
+ objectClass: berkeleyEduPerson
562
+ required: false
563
+ syntax: string
564
+ berkeleyEduAppStandardWmfHomeDir:
565
+ aliases:
566
+ - ucbappstandardwmfhomedir
567
+ description: 'WMF Home Directory'
568
+ multi: false
569
+ objectClass: berkeleyEduPerson
570
+ required: false
571
+ syntax: string
572
+ berkeleyEduBirthDay:
573
+ aliases:
574
+ - ucbbday
575
+ description: 'Birth Day'
576
+ multi: false
577
+ objectClass: berkeleyEduPerson
578
+ required: false
579
+ syntax: integer
580
+ berkeleyEduBirthMonth:
581
+ aliases:
582
+ - ucbbmonth
583
+ description: 'Birth Month'
584
+ multi: false
585
+ objectClass: berkeleyEduPerson
586
+ required: false
587
+ syntax: integer
588
+ berkeleyEduBirthYear:
589
+ description: 'Birth Year'
590
+ multi: false
591
+ objectClass: berkeleyEduPerson
592
+ required: false
593
+ syntax: integer
594
+ berkeleyEduCalNetIDUpdatedDate:
595
+ description: 'CalNet ID Change Date'
596
+ multi: false
597
+ objectClass: berkeleyEduPerson
598
+ required: false
599
+ syntax: timestamp
600
+ berkeleyEduCalNetIDUpdatedFlag:
601
+ aliases:
602
+ - ucbcalnetidupdatedflag
603
+ description: 'CalNet ID Updated Flag'
604
+ multi: false
605
+ objectClass: berkeleyEduPerson
606
+ required: false
607
+ syntax: boolean
608
+ berkeleyEduCalNetKey:
609
+ description: 'CalNet Second Level Auth Key'
610
+ multi: false
611
+ objectClass: berkeleyEduPerson
612
+ required: false
613
+ syntax: string
614
+ berkeleyEduCalNetKeySalt:
615
+ description: 'CalNet Second Level Auth Key Salt'
616
+ multi: false
617
+ objectClass: berkeleyEduPerson
618
+ required: false
619
+ syntax: string
620
+ berkeleyEduCalNetUIDConsolidationDate:
621
+ description: 'UID Consolidation Date'
622
+ multi: false
623
+ objectClass: berkeleyEduPerson
624
+ required: false
625
+ syntax: timestamp
626
+ berkeleyEduCalNetUIDOld:
627
+ description: 'Previous UIDs'
628
+ multi: true
629
+ objectClass: berkeleyEduPerson
630
+ required: false
631
+ syntax: string
632
+ berkeleyEduConfidentialFlag:
633
+ aliases:
634
+ - ucbconfidentialflag
635
+ description: 'Confidential Flag'
636
+ multi: false
637
+ objectClass: berkeleyEduPerson
638
+ required: false
639
+ syntax: boolean
640
+ berkeleyEduCrisisEnabledDate:
641
+ description: 'Emergency Contact Info - Enabled Date'
642
+ multi: false
643
+ objectClass: berkeleyEduPerson
644
+ required: false
645
+ syntax: timestamp
646
+ berkeleyEduCrisisEnabledFlag:
647
+ description: 'Emergency Contact Info - Enabled Flag'
648
+ multi: false
649
+ objectClass: berkeleyEduPerson
650
+ required: false
651
+ syntax: boolean
652
+ berkeleyEduCrisisFax:
653
+ description: 'Emergency Contact Info - Fax'
654
+ multi: true
655
+ objectClass: berkeleyEduPerson
656
+ required: false
657
+ syntax: string
658
+ berkeleyEduCrisisFaxPriority:
659
+ description: 'Emergency Contact Info - Fax Priority'
660
+ multi: false
661
+ objectClass: berkeleyEduPerson
662
+ required: false
663
+ syntax: integer
664
+ berkeleyEduCrisisHomeEmail:
665
+ description: 'Emergency Contact Info - Home Email'
666
+ multi: true
667
+ objectClass: berkeleyEduPerson
668
+ required: false
669
+ syntax: string
670
+ berkeleyEduCrisisHomeEmailPriority:
671
+ description: 'Emergency Contact Info - Home Email Priority'
672
+ multi: false
673
+ objectClass: berkeleyEduPerson
674
+ required: false
675
+ syntax: integer
676
+ berkeleyEduCrisisHomePhone:
677
+ description: 'Emergency Contact Info - Home Phone'
678
+ multi: true
679
+ objectClass: berkeleyEduPerson
680
+ required: false
681
+ syntax: string
682
+ berkeleyEduCrisisHomePhonePriority:
683
+ description: 'Emergency Contact Info - Home Phone Priority'
684
+ multi: false
685
+ objectClass: berkeleyEduPerson
686
+ required: false
687
+ syntax: integer
688
+ berkeleyEduCrisisMobilePhone:
689
+ description: 'Emergency Contact Info - Mobile Phone'
690
+ multi: true
691
+ objectClass: berkeleyEduPerson
692
+ required: false
693
+ syntax: string
694
+ berkeleyEduCrisisMobilePhonePriority:
695
+ description: 'Emergency Contact Info - Mobile Phone Priority'
696
+ multi: false
697
+ objectClass: berkeleyEduPerson
698
+ required: false
699
+ syntax: integer
700
+ berkeleyEduCrisisNumericPager:
701
+ description: 'Emergency Contact Info - Numeric Pager'
702
+ multi: true
703
+ objectClass: berkeleyEduPerson
704
+ required: false
705
+ syntax: string
706
+ berkeleyEduCrisisNumericPagerCarrier:
707
+ description: 'Emergency Contact Info - Numeric Pager Carrier'
708
+ multi: true
709
+ objectClass: berkeleyEduPerson
710
+ required: false
711
+ syntax: string
712
+ berkeleyEduCrisisNumericPagerPin:
713
+ description: 'Emergency Contact Info - Numeric Pager Pin'
714
+ multi: true
715
+ objectClass: berkeleyEduPerson
716
+ required: false
717
+ syntax: string
718
+ berkeleyEduCrisisNumericPagerPriority:
719
+ description: 'Emergency Contact Info - Numeric Pager Priority'
720
+ multi: false
721
+ objectClass: berkeleyEduPerson
722
+ required: false
723
+ syntax: integer
724
+ berkeleyEduCrisisOneWayPager:
725
+ description: 'Emergency Contact Info - One-Way Pager'
726
+ multi: true
727
+ objectClass: berkeleyEduPerson
728
+ required: false
729
+ syntax: string
730
+ berkeleyEduCrisisOneWayPagerCarrier:
731
+ description: 'Emergency Contact Info - One-Way Pager Carrier'
732
+ multi: true
733
+ objectClass: berkeleyEduPerson
734
+ required: false
735
+ syntax: string
736
+ berkeleyEduCrisisOneWayPagerPin:
737
+ description: 'Emergency Contact Info - One-Way Pager Pin'
738
+ multi: true
739
+ objectClass: berkeleyEduPerson
740
+ required: false
741
+ syntax: string
742
+ berkeleyEduCrisisOneWayPagerPriority:
743
+ description: 'Emergency Contact Info - One-Way Pager Priority'
744
+ multi: false
745
+ objectClass: berkeleyEduPerson
746
+ required: false
747
+ syntax: integer
748
+ berkeleyEduCrisisSms:
749
+ description: 'Emergency Contact Info - Sms'
750
+ multi: true
751
+ objectClass: berkeleyEduPerson
752
+ required: false
753
+ syntax: string
754
+ berkeleyEduCrisisSmsPriority:
755
+ description: 'Emergency Contact Info - Sms Priority'
756
+ multi: false
757
+ objectClass: berkeleyEduPerson
758
+ required: false
759
+ syntax: integer
760
+ berkeleyEduCrisisTermsAcceptedDate:
761
+ description: 'Emergency Contact Info - Terms Accepted Date'
762
+ multi: false
763
+ objectClass: berkeleyEduPerson
764
+ required: false
765
+ syntax: timestamp
766
+ berkeleyEduCrisisTermsAcceptedFlag:
767
+ description: 'Emergency Contact Info - Terms Accepted Flag'
768
+ multi: false
769
+ objectClass: berkeleyEduPerson
770
+ required: false
771
+ syntax: boolean
772
+ berkeleyEduCrisisTtyPhone:
773
+ description: 'Emergency Contact Info - Tty Phone'
774
+ multi: true
775
+ objectClass: berkeleyEduPerson
776
+ required: false
777
+ syntax: string
778
+ berkeleyEduCrisisTtyPhonePriority:
779
+ description: 'Emergency Contact Info - Tty Phone Priority'
780
+ multi: false
781
+ objectClass: berkeleyEduPerson
782
+ required: false
783
+ syntax: integer
784
+ berkeleyEduCrisisTwoWayPager:
785
+ description: 'Emergency Contact Info - Two-Way Pager'
786
+ multi: true
787
+ objectClass: berkeleyEduPerson
788
+ required: false
789
+ syntax: string
790
+ berkeleyEduCrisisTwoWayPagerCarrier:
791
+ description: 'Emergency Contact Info - Two-Way Pager Carrier'
792
+ multi: true
793
+ objectClass: berkeleyEduPerson
794
+ required: false
795
+ syntax: string
796
+ berkeleyEduCrisisTwoWayPagerPin:
797
+ description: 'Emergency Contact Info - Two-Way Pager Pin'
798
+ multi: true
799
+ objectClass: berkeleyEduPerson
800
+ required: false
801
+ syntax: string
802
+ berkeleyEduCrisisTwoWayPagerPriority:
803
+ description: 'Emergency Contact Info - Two-Way Pager Priority'
804
+ multi: false
805
+ objectClass: berkeleyEduPerson
806
+ required: false
807
+ syntax: integer
808
+ berkeleyEduCrisisUpdatedDate:
809
+ description: 'Emergency Contact Info - Updated Date'
810
+ multi: false
811
+ objectClass: berkeleyEduPerson
812
+ required: false
813
+ syntax: timestamp
814
+ berkeleyEduCrisisWorkEmail:
815
+ description: 'Emergency Contact Info - Work Email'
816
+ multi: true
817
+ objectClass: berkeleyEduPerson
818
+ required: false
819
+ syntax: string
820
+ berkeleyEduCrisisWorkEmailPriority:
821
+ description: 'Emergency Contact Info - Work Email Priority'
822
+ multi: false
823
+ objectClass: berkeleyEduPerson
824
+ required: false
825
+ syntax: integer
826
+ berkeleyEduCrisisWorkPhone:
827
+ description: 'Emergency Contact Info - Work Phone'
828
+ multi: true
829
+ objectClass: berkeleyEduPerson
830
+ required: false
831
+ syntax: string
832
+ berkeleyEduCrisisWorkPhonePriority:
833
+ description: 'Emergency Contact Info - Work Phone Priority'
834
+ multi: false
835
+ objectClass: berkeleyEduPerson
836
+ required: false
837
+ syntax: integer
838
+ berkeleyEduDeptUnitHierarchyString:
839
+ description: 'Department Unit Code Hierarchy String'
840
+ multi: true
841
+ objectClass: berkeleyEduPerson
842
+ required: false
843
+ syntax: string
844
+ berkeleyEduDeputyAuthorizedBy:
845
+ aliases:
846
+ - ucbdeputyauthorizedby
847
+ description: 'CalNet Deputy Authorized By'
848
+ multi: false
849
+ objectClass: berkeleyEduDeputy
850
+ required: false
851
+ syntax: string
852
+ berkeleyEduDeputyClassDate:
853
+ aliases:
854
+ - ucbdeputyclassdate
855
+ description: 'CalNet Deputy Class Date'
856
+ multi: false
857
+ objectClass: berkeleyEduDeputy
858
+ required: false
859
+ syntax: string
860
+ berkeleyEduDeputyComments:
861
+ aliases:
862
+ - ucbdeputycomments
863
+ description: 'CalNet Deputy Comments'
864
+ multi: true
865
+ objectClass: berkeleyEduDeputy
866
+ required: false
867
+ syntax: string
868
+ berkeleyEduDeputyDisabledDate:
869
+ aliases:
870
+ - ucbdeputydisableddate
871
+ description: 'CalNet Deputy Disabled Date'
872
+ multi: false
873
+ objectClass: berkeleyEduDeputy
874
+ required: false
875
+ syntax: string
876
+ berkeleyEduDeputyDisabledFlag:
877
+ aliases:
878
+ - ucbdeputydisabledflag
879
+ description: 'CalNet Deputy Disabled Flag'
880
+ multi: false
881
+ objectClass: berkeleyEduDeputy
882
+ required: false
883
+ syntax: string
884
+ berkeleyEduDeputyIPsAllowed:
885
+ aliases:
886
+ - ucbdeputyipsallowed
887
+ description: 'CalNet Deputy IP Address Allowed'
888
+ multi: true
889
+ objectClass: berkeleyEduDeputy
890
+ required: false
891
+ syntax: string
892
+ berkeleyEduDeputyPrincipal:
893
+ aliases:
894
+ - ucbdeputyprincipal
895
+ description: 'CalNet Deputy Principal'
896
+ multi: false
897
+ objectClass: berkeleyEduDeputy
898
+ required: false
899
+ syntax: string
900
+ berkeleyEduDeputyPrincipalProcUnit:
901
+ aliases:
902
+ - ucbdeputyprincipalprocunit
903
+ description: 'CalNet Deputy Principal Process Unit'
904
+ multi: true
905
+ objectClass: berkeleyEduDeputy
906
+ required: false
907
+ syntax: string
908
+ berkeleyEduDeputyProcUnits:
909
+ aliases:
910
+ - ucbdeputyprocunits
911
+ description: 'CalNet Deputy Process Units'
912
+ multi: true
913
+ objectClass: berkeleyEduDeputy
914
+ required: false
915
+ syntax: string
916
+ berkeleyEduDeputyType:
917
+ aliases:
918
+ - ucbdeputytype
919
+ description: 'CalNet Deputy Type'
920
+ multi: false
921
+ objectClass: berkeleyEduDeputy
922
+ required: false
923
+ syntax: string
924
+ berkeleyEduEmailRelFlag:
925
+ aliases:
926
+ - ucbemailrelflag
927
+ description: 'Email Release Flag'
928
+ multi: false
929
+ objectClass: berkeleyEduPerson
930
+ required: false
931
+ syntax: boolean
932
+ berkeleyEduEmpApptBeginDate:
933
+ description: 'Employee Appointment Begin Date'
934
+ multi: false
935
+ objectClass: berkeleyEduPerson
936
+ required: false
937
+ syntax: string
938
+ berkeleyEduEmpApptEndDate:
939
+ description: 'Employee Appointment End Date'
940
+ multi: false
941
+ objectClass: berkeleyEduPerson
942
+ required: false
943
+ syntax: string
944
+ berkeleyEduEmpApptType:
945
+ description: 'Employee Appointment Type'
946
+ multi: false
947
+ objectClass: berkeleyEduPerson
948
+ required: false
949
+ syntax: string
950
+ berkeleyEduEmpBirthMonthDay:
951
+ description: 'Employee Birth Month-Day'
952
+ multi: false
953
+ objectClass: berkeleyEduPerson
954
+ required: false
955
+ syntax: string
956
+ berkeleyEduEmpCTOCode:
957
+ description: 'Employee Compensatory Time Off Code'
958
+ multi: false
959
+ objectClass: berkeleyEduPerson
960
+ required: false
961
+ syntax: string
962
+ berkeleyEduEmpCreateDate:
963
+ description: 'Employee Create Date'
964
+ multi: false
965
+ objectClass: berkeleyEduPerson
966
+ required: false
967
+ syntax: timestamp
968
+ berkeleyEduEmpDeptUnitTitleCode:
969
+ description: 'Employee Deptartment Unite Title Code'
970
+ multi: true
971
+ objectClass: berkeleyEduPerson
972
+ required: false
973
+ syntax: string
974
+ berkeleyEduEmpExpDate:
975
+ aliases:
976
+ - ucbempexpdate
977
+ description: 'Employee Expiration Date'
978
+ multi: false
979
+ objectClass: berkeleyEduPerson
980
+ required: false
981
+ syntax: timestamp
982
+ berkeleyEduEmpModDate:
983
+ aliases:
984
+ - ucbempmoddate
985
+ description: 'Employee Modification Date'
986
+ multi: false
987
+ objectClass: berkeleyEduPerson
988
+ required: false
989
+ syntax: timestamp
990
+ berkeleyEduEmpName:
991
+ aliases:
992
+ - ucbempname
993
+ description: 'Employee Name'
994
+ multi: false
995
+ objectClass: berkeleyEduPerson
996
+ required: false
997
+ syntax: string
998
+ berkeleyEduEmpRelationsCode:
999
+ description: 'Employee Relations Code'
1000
+ multi: false
1001
+ objectClass: berkeleyEduPerson
1002
+ required: false
1003
+ syntax: string
1004
+ berkeleyEduEmpTerminationDate:
1005
+ description: 'Employee Appointment Termination Date'
1006
+ multi: false
1007
+ objectClass: berkeleyEduPerson
1008
+ required: false
1009
+ syntax: string
1010
+ berkeleyEduEmpTitleCode:
1011
+ aliases:
1012
+ - ucbemptitlecode
1013
+ description: 'Employee Title Code'
1014
+ multi: true
1015
+ objectClass: berkeleyEduPerson
1016
+ required: false
1017
+ syntax: string
1018
+ berkeleyEduEmpWorkStudyFlag:
1019
+ description: 'Employee Work Study Flag'
1020
+ multi: false
1021
+ objectClass: berkeleyEduPerson
1022
+ required: false
1023
+ syntax: boolean
1024
+ berkeleyEduExcludeFlag:
1025
+ description: 'Exclude Flag'
1026
+ multi: false
1027
+ objectClass: berkeleyEduPerson
1028
+ required: false
1029
+ syntax: boolean
1030
+ berkeleyEduExpDate:
1031
+ description: 'Expiration Date'
1032
+ multi: false
1033
+ objectClass: berkeleyEduPerson
1034
+ required: false
1035
+ syntax: timestamp
1036
+ berkeleyEduFacultyFlag:
1037
+ aliases:
1038
+ - ucbfacflag
1039
+ description: 'Faculty Flag'
1040
+ multi: false
1041
+ objectClass: berkeleyEduPerson
1042
+ required: false
1043
+ syntax: boolean
1044
+ berkeleyEduFirstName:
1045
+ description: 'First Name'
1046
+ multi: false
1047
+ objectClass: berkeleyEduPerson
1048
+ required: false
1049
+ syntax: string
1050
+ berkeleyEduIMProtocol:
1051
+ description: 'Instant Messaging Protocal'
1052
+ multi: false
1053
+ objectClass: berkeleyEduPerson
1054
+ required: false
1055
+ syntax: string
1056
+ berkeleyEduIMScreenName:
1057
+ description: 'Instant Messaging Screen Name'
1058
+ multi: false
1059
+ objectClass: berkeleyEduPerson
1060
+ required: false
1061
+ syntax: string
1062
+ berkeleyEduKerberosInstance:
1063
+ aliases:
1064
+ - ucbkerberosinstance
1065
+ description: 'Kerberos Instance'
1066
+ multi: false
1067
+ objectClass: berkeleyEduPerson
1068
+ required: false
1069
+ syntax: string
1070
+ berkeleyEduKerberosPrimary:
1071
+ aliases:
1072
+ - ucbkerberosprimary
1073
+ description: 'Kerberos Primary'
1074
+ multi: false
1075
+ objectClass: berkeleyEduPerson
1076
+ required: false
1077
+ syntax: string
1078
+ berkeleyEduKerberosPrincipalString:
1079
+ aliases:
1080
+ - ucbkerberosprincipalstring
1081
+ - berkeleyEduCalNetID
1082
+ description: 'Kerberos Principal-String'
1083
+ multi: true
1084
+ objectClass: berkeleyEduPerson
1085
+ required: false
1086
+ syntax: string
1087
+ berkeleyEduKerberosPrincipalStringOld:
1088
+ aliases:
1089
+ - ucbkerberosprincipalstringold
1090
+ description: 'Kerberos Old Principal-String'
1091
+ multi: true
1092
+ objectClass: berkeleyEduPerson
1093
+ required: false
1094
+ syntax: string
1095
+ berkeleyEduKerberosRealm:
1096
+ aliases:
1097
+ - ucbkerberosrealm
1098
+ description: 'Kerberos Realm'
1099
+ multi: false
1100
+ objectClass: berkeleyEduPerson
1101
+ required: false
1102
+ syntax: string
1103
+ berkeleyEduKerberosStatusCode:
1104
+ aliases:
1105
+ - ucbkerberosstatuscode
1106
+ description: 'Kerberos Status Code'
1107
+ multi: false
1108
+ objectClass: berkeleyEduPerson
1109
+ required: false
1110
+ syntax: string
1111
+ berkeleyEduLastName:
1112
+ description: 'Last Name'
1113
+ multi: false
1114
+ objectClass: berkeleyEduPerson
1115
+ required: false
1116
+ syntax: string
1117
+ berkeleyEduMaidenName:
1118
+ description: 'Maiden Name'
1119
+ multi: false
1120
+ objectClass: berkeleyEduPerson
1121
+ required: false
1122
+ syntax: string
1123
+ berkeleyEduMiddleName:
1124
+ aliases:
1125
+ - ucbmiddlename
1126
+ description: 'Middle Name'
1127
+ multi: false
1128
+ objectClass: berkeleyEduPerson
1129
+ required: false
1130
+ syntax: string
1131
+ berkeleyEduModDate:
1132
+ description: 'Modification Date'
1133
+ multi: false
1134
+ objectClass: berkeleyEduPerson
1135
+ required: false
1136
+ syntax: timestamp
1137
+ berkeleyEduNameGenerational:
1138
+ description: 'Name Generational'
1139
+ multi: false
1140
+ objectClass: berkeleyEduPerson
1141
+ required: false
1142
+ syntax: string
1143
+ berkeleyEduNameHonorifics:
1144
+ description: 'Name Honorifics'
1145
+ multi: true
1146
+ objectClass: berkeleyEduPerson
1147
+ required: false
1148
+ syntax: string
1149
+ berkeleyEduNameSalutation:
1150
+ description: 'Name Salutation'
1151
+ multi: false
1152
+ objectClass: berkeleyEduPerson
1153
+ required: false
1154
+ syntax: string
1155
+ berkeleyEduOfficialEmail:
1156
+ aliases:
1157
+ - ucbemail
1158
+ description: 'Email Addresses'
1159
+ multi: true
1160
+ objectClass: berkeleyEduPerson
1161
+ required: false
1162
+ syntax: string
1163
+ berkeleyEduOnlineUpdateAllowedFlag:
1164
+ aliases:
1165
+ - ucbadrwebupdate
1166
+ description: 'Online Update Allowed Flag'
1167
+ multi: false
1168
+ objectClass: berkeleyEduPerson
1169
+ required: false
1170
+ syntax: boolean
1171
+ berkeleyEduPPSivrStatusFlag:
1172
+ aliases:
1173
+ - ucbppsivrstatusflag
1174
+ description: 'PPSIVR Status Flag'
1175
+ multi: false
1176
+ objectClass: berkeleyEduPerson
1177
+ required: false
1178
+ syntax: boolean
1179
+ berkeleyEduPhoneBookOnlyFlag:
1180
+ aliases:
1181
+ - ucbadrpbonly
1182
+ description: 'Phone Book Only Flag'
1183
+ multi: false
1184
+ objectClass: berkeleyEduPerson
1185
+ required: false
1186
+ syntax: boolean
1187
+ berkeleyEduPhotoIDVerifiedDate:
1188
+ description: 'UC Trust Face-to-Face Photo Verification'
1189
+ multi: false
1190
+ objectClass: berkeleyEduPerson
1191
+ required: false
1192
+ syntax: timestamp
1193
+ berkeleyEduPrimaryDeptUnit:
1194
+ aliases:
1195
+ - ucbemphomedept
1196
+ description: 'Primary Department Unit Code'
1197
+ multi: false
1198
+ objectClass: berkeleyEduPerson
1199
+ required: false
1200
+ syntax: string
1201
+ berkeleyEduPrimaryDeptUnitHierarchyString:
1202
+ description: 'Primary Department Unit Code Hierarchy String'
1203
+ multi: false
1204
+ objectClass: berkeleyEduPerson
1205
+ required: false
1206
+ syntax: string
1207
+ berkeleyEduSSN:
1208
+ description: 'Social Security Number'
1209
+ multi: false
1210
+ objectClass: berkeleyEduPerson
1211
+ required: false
1212
+ syntax: string
1213
+ berkeleyEduStuApprovedWithdrawEndDate:
1214
+ description: 'Student Approved Withdraw End Date'
1215
+ multi: false
1216
+ objectClass: berkeleyEduPerson
1217
+ required: false
1218
+ syntax: string
1219
+ berkeleyEduStuBirthDate:
1220
+ description: 'Student Birth Date'
1221
+ multi: false
1222
+ objectClass: berkeleyEduPerson
1223
+ required: false
1224
+ syntax: string
1225
+ berkeleyEduStuCollegeCode:
1226
+ aliases:
1227
+ - ucbstucollegecode
1228
+ description: 'Student College Code'
1229
+ multi: false
1230
+ objectClass: berkeleyEduPerson
1231
+ required: false
1232
+ syntax: string
1233
+ berkeleyEduStuCollegeName:
1234
+ aliases:
1235
+ - ucbstucollegename
1236
+ description: 'Student College Name'
1237
+ multi: false
1238
+ objectClass: berkeleyEduPerson
1239
+ required: false
1240
+ syntax: string
1241
+ berkeleyEduStuCreateDate:
1242
+ description: 'Student Create Date'
1243
+ multi: false
1244
+ objectClass: berkeleyEduPerson
1245
+ required: false
1246
+ syntax: timestamp
1247
+ berkeleyEduStuEduLevelCode:
1248
+ aliases:
1249
+ - ucbstuedulevelcode
1250
+ description: 'Student Education Level Code'
1251
+ multi: false
1252
+ objectClass: berkeleyEduPerson
1253
+ required: false
1254
+ syntax: string
1255
+ berkeleyEduStuEduLevelName:
1256
+ aliases:
1257
+ - ucbstuedulevelname
1258
+ description: 'Student Education Level Name'
1259
+ multi: false
1260
+ objectClass: berkeleyEduPerson
1261
+ required: false
1262
+ syntax: string
1263
+ berkeleyEduStuEduRoleCode:
1264
+ aliases:
1265
+ - ucbsturole
1266
+ description: 'Student Education Role Code'
1267
+ multi: false
1268
+ objectClass: berkeleyEduPerson
1269
+ required: false
1270
+ syntax: string
1271
+ berkeleyEduStuEduRoleName:
1272
+ description: 'Student Education Role Name'
1273
+ multi: false
1274
+ objectClass: berkeleyEduPerson
1275
+ required: false
1276
+ syntax: string
1277
+ berkeleyEduStuExpDate:
1278
+ aliases:
1279
+ - ucbstuexpdate
1280
+ description: 'Student Expiration Date'
1281
+ multi: false
1282
+ objectClass: berkeleyEduPerson
1283
+ required: false
1284
+ syntax: timestamp
1285
+ berkeleyEduStuID:
1286
+ aliases:
1287
+ - ucbstuid
1288
+ description: 'Student ID'
1289
+ multi: false
1290
+ objectClass: berkeleyEduPerson
1291
+ required: false
1292
+ syntax: integer
1293
+ berkeleyEduStuMajorCode:
1294
+ aliases:
1295
+ - ucbstumajorcode
1296
+ description: 'Student Major Code'
1297
+ multi: false
1298
+ objectClass: berkeleyEduPerson
1299
+ required: false
1300
+ syntax: string
1301
+ berkeleyEduStuMajorName:
1302
+ aliases:
1303
+ - ucbstumajorname
1304
+ description: 'Student Major Name'
1305
+ multi: false
1306
+ objectClass: berkeleyEduPerson
1307
+ required: false
1308
+ syntax: string
1309
+ berkeleyEduStuModDate:
1310
+ aliases:
1311
+ - ucbstumoddate
1312
+ description: 'Student Modification Date'
1313
+ multi: false
1314
+ objectClass: berkeleyEduPerson
1315
+ required: false
1316
+ syntax: timestamp
1317
+ berkeleyEduStuName:
1318
+ aliases:
1319
+ - ucbstuname
1320
+ description: 'Student Name'
1321
+ multi: false
1322
+ objectClass: berkeleyEduPerson
1323
+ required: false
1324
+ syntax: string
1325
+ berkeleyEduStuRegStatCode:
1326
+ aliases:
1327
+ - ucbsturegstatcode
1328
+ description: 'Student Registration Status Code'
1329
+ multi: false
1330
+ objectClass: berkeleyEduPerson
1331
+ required: false
1332
+ syntax: string
1333
+ berkeleyEduStuRegStatName:
1334
+ aliases:
1335
+ - ucbsturegstatname
1336
+ description: 'Student Registration Status Name'
1337
+ multi: false
1338
+ objectClass: berkeleyEduPerson
1339
+ required: false
1340
+ syntax: string
1341
+ berkeleyEduStuTermCode:
1342
+ aliases:
1343
+ - ucbstutermcode
1344
+ description: 'Student Term Code'
1345
+ multi: false
1346
+ objectClass: berkeleyEduPerson
1347
+ required: false
1348
+ syntax: string
1349
+ berkeleyEduStuTermName:
1350
+ aliases:
1351
+ - ucbstutermname
1352
+ description: 'Student Term Name'
1353
+ multi: false
1354
+ objectClass: berkeleyEduPerson
1355
+ required: false
1356
+ syntax: string
1357
+ berkeleyEduStuTermStatus:
1358
+ aliases:
1359
+ - ucbstutermstatus
1360
+ description: 'Student Term Status'
1361
+ multi: false
1362
+ objectClass: berkeleyEduPerson
1363
+ required: false
1364
+ syntax: string
1365
+ berkeleyEduStuTermYear:
1366
+ aliases:
1367
+ - ucbstutermyear
1368
+ description: 'Student Term Year'
1369
+ multi: false
1370
+ objectClass: berkeleyEduPerson
1371
+ required: false
1372
+ syntax: integer
1373
+ berkeleyEduStuUGCode:
1374
+ aliases:
1375
+ - ucbstuugflag
1376
+ description: 'Student Under-Graduate Code'
1377
+ multi: false
1378
+ objectClass: berkeleyEduPerson
1379
+ required: false
1380
+ syntax: string
1381
+ berkeleyEduTestIDFlag:
1382
+ aliases:
1383
+ - ucbtestidflag
1384
+ description: 'Test ID Entry Flag'
1385
+ multi: false
1386
+ objectClass: berkeleyEduPerson
1387
+ required: false
1388
+ syntax: boolean
1389
+ berkeleyEduUasEligFlag:
1390
+ aliases:
1391
+ - ucbvalidflag
1392
+ description: 'UAS Eligibility Flag'
1393
+ multi: false
1394
+ objectClass: berkeleyEduPerson
1395
+ required: false
1396
+ syntax: boolean
1397
+ berkeleyEduUnitCalNetDeptName:
1398
+ description: 'CalNet Unit Department Name'
1399
+ multi: false
1400
+ objectClass: berkeleyEduPerson
1401
+ required: false
1402
+ syntax: string
1403
+ berkeleyEduUnitHRDeptName:
1404
+ description: 'HR Unit Department Name'
1405
+ multi: false
1406
+ objectClass: berkeleyEduPerson
1407
+ required: false
1408
+ syntax: string
1409
+ businessCategory:
1410
+ description: 'Standard LDAP attribute type'
1411
+ multi: true
1412
+ objectClass: inetorgperson
1413
+ required: false
1414
+ syntax: string
1415
+ c:
1416
+ aliases:
1417
+ - countryName
1418
+ description: 'Standard LDAP attribute type'
1419
+ multi: false
1420
+ objectClass: berkeleyEduPerson
1421
+ required: false
1422
+ syntax: string
1423
+ carLicense:
1424
+ description: 'inetOrgPerson attribute type'
1425
+ multi: true
1426
+ objectClass: inetorgperson
1427
+ required: false
1428
+ syntax: string
1429
+ cn:
1430
+ aliases:
1431
+ - commonName
1432
+ description: 'Standard LDAP attribute type'
1433
+ multi: true
1434
+ objectClass: person
1435
+ required: true
1436
+ syntax: string
1437
+ departmentNumber:
1438
+ description: 'inetOrgPerson attribute type'
1439
+ multi: true
1440
+ objectClass: inetorgperson
1441
+ required: false
1442
+ syntax: string
1443
+ description:
1444
+ description: 'Standard LDAP attribute type'
1445
+ multi: true
1446
+ objectClass: person
1447
+ required: false
1448
+ syntax: string
1449
+ destinationIndicator:
1450
+ description: 'Standard LDAP attribute type'
1451
+ multi: true
1452
+ objectClass: organizationalperson
1453
+ required: false
1454
+ syntax: string
1455
+ displayName:
1456
+ description: 'inetOrgPerson attribute type'
1457
+ multi: false
1458
+ objectClass: inetorgperson
1459
+ required: false
1460
+ syntax: string
1461
+ eduPersonAffiliation:
1462
+ description: 'eduPerson - Affiliation'
1463
+ multi: true
1464
+ objectClass: eduPerson
1465
+ required: false
1466
+ syntax: string
1467
+ eduPersonEntitlement:
1468
+ description: 'eduPerson - Entitlement'
1469
+ multi: true
1470
+ objectClass: eduPerson
1471
+ required: false
1472
+ syntax: string
1473
+ eduPersonNickname:
1474
+ description: 'eduPerson - Nickname'
1475
+ multi: true
1476
+ objectClass: eduPerson
1477
+ required: false
1478
+ syntax: string
1479
+ eduPersonOrgDN:
1480
+ description: 'eduPerson - Org DN'
1481
+ multi: false
1482
+ objectClass: eduPerson
1483
+ required: false
1484
+ syntax: string
1485
+ eduPersonOrgUnitDN:
1486
+ description: 'eduPerson - Org Unit DN'
1487
+ multi: true
1488
+ objectClass: eduPerson
1489
+ required: false
1490
+ syntax: string
1491
+ eduPersonPrimaryAffiliation:
1492
+ description: 'eduPerson - Primary Affiliation'
1493
+ multi: false
1494
+ objectClass: eduPerson
1495
+ required: false
1496
+ syntax: string
1497
+ eduPersonPrimaryOrgUnitDN:
1498
+ description: 'eduPerson - Primary Org Unit DN'
1499
+ multi: false
1500
+ objectClass: eduPerson
1501
+ required: false
1502
+ syntax: string
1503
+ eduPersonPrincipalName:
1504
+ description: 'eduPerson - Principal Name'
1505
+ multi: false
1506
+ objectClass: eduPerson
1507
+ required: false
1508
+ syntax: string
1509
+ eduPersonScopedAffiliation:
1510
+ description: 'eduPerson - Scoped Affiliation'
1511
+ multi: true
1512
+ objectClass: eduPerson
1513
+ required: false
1514
+ syntax: string
1515
+ eduPersonTargetedID:
1516
+ description: 'eduPerson - Targeted ID'
1517
+ multi: true
1518
+ objectClass: eduPerson
1519
+ required: false
1520
+ syntax: string
1521
+ employeeNumber:
1522
+ description: 'inetOrgPerson attribute type'
1523
+ multi: false
1524
+ objectClass: inetorgperson
1525
+ required: false
1526
+ syntax: string
1527
+ employeeType:
1528
+ description: 'inetOrgPerson attribute type'
1529
+ multi: true
1530
+ objectClass: inetorgperson
1531
+ required: false
1532
+ syntax: string
1533
+ facsimileTelephoneNumber:
1534
+ aliases:
1535
+ - fax
1536
+ description: 'Standard LDAP attribute type'
1537
+ multi: true
1538
+ objectClass: organizationalperson
1539
+ required: false
1540
+ syntax: string
1541
+ givenName:
1542
+ description: 'Standard LDAP attribute type'
1543
+ multi: true
1544
+ objectClass: inetorgperson
1545
+ required: false
1546
+ syntax: string
1547
+ homePhone:
1548
+ description: 'Standard LDAP attribute type'
1549
+ multi: true
1550
+ objectClass: inetorgperson
1551
+ required: false
1552
+ syntax: string
1553
+ homePostalAddress:
1554
+ description: 'Standard LDAP attribute type'
1555
+ multi: true
1556
+ objectClass: inetorgperson
1557
+ required: false
1558
+ syntax: string
1559
+ initials:
1560
+ description: 'Standard LDAP attribute type'
1561
+ multi: true
1562
+ objectClass: inetorgperson
1563
+ required: false
1564
+ syntax: string
1565
+ internationaliSDNNumber:
1566
+ description: 'Standard LDAP attribute type'
1567
+ multi: true
1568
+ objectClass: organizationalperson
1569
+ required: false
1570
+ syntax: string
1571
+ jpegPhoto:
1572
+ description: 'inetOrgPerson attribute type'
1573
+ multi: true
1574
+ objectClass: inetorgperson
1575
+ required: false
1576
+ syntax: binary
1577
+ l:
1578
+ aliases:
1579
+ - locality
1580
+ - localityname
1581
+ description: 'Standard LDAP attribute type'
1582
+ multi: true
1583
+ objectClass: organizationalperson
1584
+ required: false
1585
+ syntax: string
1586
+ labeledUri:
1587
+ aliases:
1588
+ - labeledurl
1589
+ description: 'Uniform Resource Identifier with optional label'
1590
+ multi: true
1591
+ objectClass: inetorgperson
1592
+ required: false
1593
+ syntax: string
1594
+ mail:
1595
+ aliases:
1596
+ - rfc822mailbox
1597
+ description: 'Standard LDAP attribute type'
1598
+ multi: true
1599
+ objectClass: inetorgperson
1600
+ required: false
1601
+ syntax: string
1602
+ manager:
1603
+ description: 'Standard LDAP attribute type'
1604
+ multi: true
1605
+ objectClass: inetorgperson
1606
+ required: false
1607
+ syntax: string
1608
+ mobile:
1609
+ aliases:
1610
+ - mobileTelephoneNumber
1611
+ description: 'Standard LDAP attribute type'
1612
+ multi: true
1613
+ objectClass: inetorgperson
1614
+ required: false
1615
+ syntax: string
1616
+ o:
1617
+ aliases:
1618
+ - organizationname
1619
+ description: 'Standard LDAP attribute type'
1620
+ multi: true
1621
+ objectClass: inetorgperson
1622
+ required: false
1623
+ syntax: string
1624
+ objectClass:
1625
+ description: 'Standard LDAP attribute type'
1626
+ multi: true
1627
+ objectClass: top
1628
+ required: true
1629
+ syntax: string
1630
+ ou:
1631
+ aliases:
1632
+ - organizationalUnitName
1633
+ description: 'Standard LDAP attribute type'
1634
+ multi: true
1635
+ objectClass: organizationalperson
1636
+ required: false
1637
+ syntax: string
1638
+ pager:
1639
+ aliases:
1640
+ - pagerTelephoneNumber
1641
+ description: 'Standard LDAP attribute type'
1642
+ multi: true
1643
+ objectClass: inetorgperson
1644
+ required: false
1645
+ syntax: string
1646
+ photo:
1647
+ description: 'Standard LDAP attribute type'
1648
+ multi: true
1649
+ objectClass: inetorgperson
1650
+ required: false
1651
+ syntax: binary
1652
+ physicalDeliveryOfficeName:
1653
+ description: 'Standard LDAP attribute type'
1654
+ multi: true
1655
+ objectClass: organizationalperson
1656
+ required: false
1657
+ syntax: string
1658
+ postOfficeBox:
1659
+ description: 'Standard LDAP attribute type'
1660
+ multi: true
1661
+ objectClass: organizationalperson
1662
+ required: false
1663
+ syntax: string
1664
+ postalAddress:
1665
+ description: 'Standard LDAP attribute type'
1666
+ multi: true
1667
+ objectClass: organizationalperson
1668
+ required: false
1669
+ syntax: string
1670
+ postalCode:
1671
+ description: 'Standard LDAP attribute type'
1672
+ multi: true
1673
+ objectClass: organizationalperson
1674
+ required: false
1675
+ syntax: string
1676
+ preferredDeliveryMethod:
1677
+ description: 'Standard LDAP attribute type'
1678
+ multi: false
1679
+ objectClass: organizationalperson
1680
+ required: false
1681
+ syntax: string
1682
+ preferredLanguage:
1683
+ description: 'inetOrgPerson attribute type'
1684
+ multi: false
1685
+ objectClass: inetorgperson
1686
+ required: false
1687
+ syntax: string
1688
+ registeredAddress:
1689
+ description: 'Standard LDAP attribute type'
1690
+ multi: true
1691
+ objectClass: organizationalperson
1692
+ required: false
1693
+ syntax: string
1694
+ roomNumber:
1695
+ description: 'Standard LDAP attribute type'
1696
+ multi: true
1697
+ objectClass: inetorgperson
1698
+ required: false
1699
+ syntax: string
1700
+ secretary:
1701
+ description: 'Standard LDAP attribute type'
1702
+ multi: true
1703
+ objectClass: inetorgperson
1704
+ required: false
1705
+ syntax: string
1706
+ seeAlso:
1707
+ description: 'Standard LDAP attribute type'
1708
+ multi: true
1709
+ objectClass: person
1710
+ required: false
1711
+ syntax: string
1712
+ sn:
1713
+ aliases:
1714
+ - surName
1715
+ description: 'Standard LDAP attribute type'
1716
+ multi: true
1717
+ objectClass: person
1718
+ required: true
1719
+ syntax: string
1720
+ st:
1721
+ aliases:
1722
+ - stateOrProvinceName
1723
+ description: 'Standard LDAP attribute type'
1724
+ multi: true
1725
+ objectClass: organizationalperson
1726
+ required: false
1727
+ syntax: string
1728
+ street:
1729
+ aliases:
1730
+ - streetaddress
1731
+ description: 'Standard LDAP attribute type'
1732
+ multi: true
1733
+ objectClass: organizationalperson
1734
+ required: false
1735
+ syntax: string
1736
+ telephoneNumber:
1737
+ description: 'Standard LDAP attribute type'
1738
+ multi: true
1739
+ objectClass: person
1740
+ required: false
1741
+ syntax: string
1742
+ teletexTerminalIdentifier:
1743
+ description: 'Standard LDAP attribute type'
1744
+ multi: true
1745
+ objectClass: organizationalperson
1746
+ required: false
1747
+ syntax: string
1748
+ telexNumber:
1749
+ description: 'Standard LDAP attribute type'
1750
+ multi: true
1751
+ objectClass: organizationalperson
1752
+ required: false
1753
+ syntax: string
1754
+ title:
1755
+ description: 'Standard LDAP attribute type'
1756
+ multi: true
1757
+ objectClass: organizationalperson
1758
+ required: false
1759
+ syntax: string
1760
+ uid:
1761
+ aliases:
1762
+ - userid
1763
+ description: 'Standard LDAP attribute type'
1764
+ multi: true
1765
+ objectClass: berkeleyEduPerson
1766
+ required: true
1767
+ syntax: string
1768
+ userCertificate:
1769
+ description: 'Standard LDAP attribute type'
1770
+ multi: true
1771
+ objectClass: inetorgperson
1772
+ required: false
1773
+ syntax: binary
1774
+ userPKCS12:
1775
+ description: 'inetOrgPerson attribute type'
1776
+ multi: true
1777
+ objectClass: inetorgperson
1778
+ required: false
1779
+ syntax: binary
1780
+ userPassword:
1781
+ description: 'Standard LDAP attribute type'
1782
+ multi: true
1783
+ objectClass: person
1784
+ required: false
1785
+ syntax: string
1786
+ userSMIMECertificate:
1787
+ description: 'inetOrgPerson attribute type'
1788
+ multi: true
1789
+ objectClass: inetorgperson
1790
+ required: false
1791
+ syntax: binary
1792
+ x121Address:
1793
+ description: 'Standard LDAP attribute type'
1794
+ multi: true
1795
+ objectClass: organizationalperson
1796
+ required: false
1797
+ syntax: string
1798
+ x500UniqueIdentifier:
1799
+ description: 'Standard LDAP attribute type'
1800
+ multi: true
1801
+ objectClass: inetorgperson
1802
+ required: false
1803
+ syntax: binary
1804
+ objectClasses:
1805
+ - top
1806
+ - person
1807
+ - organizationalperson
1808
+ - inetorgperson
1809
+ - berkeleyEduPerson
1810
+ - eduPerson
1811
+ - ucEduPerson
1812
+ - berkeleyEduDeputy
1813
+ uniqueObjectClass: berkeleyEduPerson
1814
+ personAddress:
1815
+ attributes:
1816
+ berkeleyEduAssistant:
1817
+ description: Assistant
1818
+ multi: true
1819
+ objectClass: berkeleyEduPersonAddress
1820
+ required: false
1821
+ syntax: string
1822
+ berkeleyEduEmailRelFlag:
1823
+ aliases:
1824
+ - ucbemailrelflag
1825
+ description: 'Email Release Flag'
1826
+ multi: false
1827
+ objectClass: berkeleyEduPersonAddress
1828
+ required: false
1829
+ syntax: boolean
1830
+ berkeleyEduPersonAddressBuildingCode:
1831
+ description: 'Address - Building Code'
1832
+ multi: false
1833
+ objectClass: berkeleyEduPersonAddress
1834
+ required: false
1835
+ syntax: string
1836
+ berkeleyEduPersonAddressCountryCode:
1837
+ description: 'Address - Country Code'
1838
+ multi: false
1839
+ objectClass: berkeleyEduPersonAddress
1840
+ required: false
1841
+ syntax: string
1842
+ berkeleyEduPersonAddressDeptDN:
1843
+ description: 'Address - DN'
1844
+ multi: false
1845
+ objectClass: berkeleyEduPersonAddress
1846
+ required: false
1847
+ syntax: string
1848
+ berkeleyEduPersonAddressHRJobTitle:
1849
+ description: 'Address - HR Job Title'
1850
+ multi: false
1851
+ objectClass: berkeleyEduPersonAddress
1852
+ required: false
1853
+ syntax: string
1854
+ berkeleyEduPersonAddressLocationCode:
1855
+ description: 'Address - Location Code'
1856
+ multi: false
1857
+ objectClass: berkeleyEduPersonAddress
1858
+ required: false
1859
+ syntax: string
1860
+ berkeleyEduPersonAddressMailCode:
1861
+ description: 'Address - Mail Code'
1862
+ multi: false
1863
+ objectClass: berkeleyEduPersonAddress
1864
+ required: false
1865
+ syntax: string
1866
+ berkeleyEduPersonAddressPrimaryFlag:
1867
+ description: 'Address - Primary Address Flag'
1868
+ multi: false
1869
+ objectClass: berkeleyEduPersonAddress
1870
+ required: false
1871
+ syntax: boolean
1872
+ berkeleyEduPersonAddressPublications:
1873
+ description: 'Address - Publications'
1874
+ multi: true
1875
+ objectClass: berkeleyEduPersonAddress
1876
+ required: false
1877
+ syntax: string
1878
+ berkeleyEduPersonAddressReceiveMailFlag:
1879
+ description: 'Address - Receive Physical Mail Flag'
1880
+ multi: false
1881
+ objectClass: berkeleyEduPersonAddress
1882
+ required: false
1883
+ syntax: boolean
1884
+ berkeleyEduPersonAddressSortOrder:
1885
+ description: 'Address - Address Sort Order'
1886
+ multi: true
1887
+ objectClass: berkeleyEduPersonAddress
1888
+ required: false
1889
+ syntax: integer
1890
+ berkeleyEduPersonAddressType:
1891
+ description: 'Address - Address Type Flag'
1892
+ multi: false
1893
+ objectClass: berkeleyEduPersonAddress
1894
+ required: false
1895
+ syntax: string
1896
+ berkeleyEduPersonAddressUnitCalNetDeptName:
1897
+ description: 'Address - Address CalNet Dept Unit Name'
1898
+ multi: true
1899
+ objectClass: berkeleyEduPersonAddress
1900
+ required: false
1901
+ syntax: string
1902
+ berkeleyEduPersonAddressUnitHRDeptName:
1903
+ description: 'Address - HR Department Name'
1904
+ multi: false
1905
+ objectClass: berkeleyEduPersonAddress
1906
+ required: false
1907
+ syntax: string
1908
+ c:
1909
+ aliases:
1910
+ - countryName
1911
+ description: 'Standard LDAP attribute type'
1912
+ multi: false
1913
+ objectClass: berkeleyEduPersonAddress
1914
+ required: false
1915
+ syntax: string
1916
+ cn:
1917
+ aliases:
1918
+ - commonName
1919
+ description: 'Standard LDAP attribute type'
1920
+ multi: true
1921
+ objectClass: berkeleyEduPersonAddress
1922
+ required: true
1923
+ syntax: string
1924
+ departmentNumber:
1925
+ description: 'inetOrgPerson attribute type'
1926
+ multi: true
1927
+ objectClass: berkeleyEduPersonAddress
1928
+ required: false
1929
+ syntax: string
1930
+ description:
1931
+ description: 'Standard LDAP attribute type'
1932
+ multi: true
1933
+ objectClass: berkeleyEduPersonAddress
1934
+ required: false
1935
+ syntax: string
1936
+ destinationIndicator:
1937
+ description: 'Standard LDAP attribute type'
1938
+ multi: true
1939
+ objectClass: berkeleyEduPersonAddress
1940
+ required: false
1941
+ syntax: string
1942
+ facsimileTelephoneNumber:
1943
+ aliases:
1944
+ - fax
1945
+ description: 'Standard LDAP attribute type'
1946
+ multi: true
1947
+ objectClass: berkeleyEduPersonAddress
1948
+ required: false
1949
+ syntax: string
1950
+ l:
1951
+ aliases:
1952
+ - locality
1953
+ - localityname
1954
+ description: 'Standard LDAP attribute type'
1955
+ multi: true
1956
+ objectClass: berkeleyEduPersonAddress
1957
+ required: false
1958
+ syntax: string
1959
+ labeledUri:
1960
+ aliases:
1961
+ - labeledurl
1962
+ description: 'Uniform Resource Identifier with optional label'
1963
+ multi: true
1964
+ objectClass: berkeleyEduPersonAddress
1965
+ required: false
1966
+ syntax: string
1967
+ mail:
1968
+ aliases:
1969
+ - rfc822mailbox
1970
+ description: 'Standard LDAP attribute type'
1971
+ multi: true
1972
+ objectClass: berkeleyEduPersonAddress
1973
+ required: false
1974
+ syntax: string
1975
+ mobile:
1976
+ aliases:
1977
+ - mobileTelephoneNumber
1978
+ description: 'Standard LDAP attribute type'
1979
+ multi: true
1980
+ objectClass: berkeleyEduPersonAddress
1981
+ required: false
1982
+ syntax: string
1983
+ objectClass:
1984
+ description: 'Standard LDAP attribute type'
1985
+ multi: true
1986
+ objectClass: top
1987
+ required: true
1988
+ syntax: string
1989
+ pager:
1990
+ aliases:
1991
+ - pagerTelephoneNumber
1992
+ description: 'Standard LDAP attribute type'
1993
+ multi: true
1994
+ objectClass: berkeleyEduPersonAddress
1995
+ required: false
1996
+ syntax: string
1997
+ physicalDeliveryOfficeName:
1998
+ description: 'Standard LDAP attribute type'
1999
+ multi: true
2000
+ objectClass: berkeleyEduPersonAddress
2001
+ required: false
2002
+ syntax: string
2003
+ postOfficeBox:
2004
+ description: 'Standard LDAP attribute type'
2005
+ multi: true
2006
+ objectClass: berkeleyEduPersonAddress
2007
+ required: false
2008
+ syntax: string
2009
+ postalAddress:
2010
+ description: 'Standard LDAP attribute type'
2011
+ multi: true
2012
+ objectClass: berkeleyEduPersonAddress
2013
+ required: false
2014
+ syntax: string
2015
+ postalCode:
2016
+ description: 'Standard LDAP attribute type'
2017
+ multi: true
2018
+ objectClass: berkeleyEduPersonAddress
2019
+ required: false
2020
+ syntax: string
2021
+ preferredDeliveryMethod:
2022
+ description: 'Standard LDAP attribute type'
2023
+ multi: false
2024
+ objectClass: berkeleyEduPersonAddress
2025
+ required: false
2026
+ syntax: string
2027
+ registeredAddress:
2028
+ description: 'Standard LDAP attribute type'
2029
+ multi: true
2030
+ objectClass: berkeleyEduPersonAddress
2031
+ required: false
2032
+ syntax: string
2033
+ roomNumber:
2034
+ description: 'Standard LDAP attribute type'
2035
+ multi: true
2036
+ objectClass: berkeleyEduPersonAddress
2037
+ required: false
2038
+ syntax: string
2039
+ secretary:
2040
+ description: 'Standard LDAP attribute type'
2041
+ multi: true
2042
+ objectClass: berkeleyEduPersonAddress
2043
+ required: false
2044
+ syntax: string
2045
+ seeAlso:
2046
+ description: 'Standard LDAP attribute type'
2047
+ multi: true
2048
+ objectClass: berkeleyEduPersonAddress
2049
+ required: false
2050
+ syntax: string
2051
+ st:
2052
+ aliases:
2053
+ - stateOrProvinceName
2054
+ description: 'Standard LDAP attribute type'
2055
+ multi: true
2056
+ objectClass: berkeleyEduPersonAddress
2057
+ required: false
2058
+ syntax: string
2059
+ street:
2060
+ aliases:
2061
+ - streetaddress
2062
+ description: 'Standard LDAP attribute type'
2063
+ multi: true
2064
+ objectClass: berkeleyEduPersonAddress
2065
+ required: false
2066
+ syntax: string
2067
+ telephoneNumber:
2068
+ description: 'Standard LDAP attribute type'
2069
+ multi: true
2070
+ objectClass: berkeleyEduPersonAddress
2071
+ required: false
2072
+ syntax: string
2073
+ telexNumber:
2074
+ description: 'Standard LDAP attribute type'
2075
+ multi: true
2076
+ objectClass: berkeleyEduPersonAddress
2077
+ required: false
2078
+ syntax: string
2079
+ title:
2080
+ description: 'Standard LDAP attribute type'
2081
+ multi: true
2082
+ objectClass: berkeleyEduPersonAddress
2083
+ required: false
2084
+ syntax: string
2085
+ objectClasses:
2086
+ - top
2087
+ - berkeleyEduPersonAddress
2088
+ uniqueObjectClass: berkeleyEduPersonAddress
2089
+ personAffiliateAffiliation:
2090
+ attributes:
2091
+ berkeleyEduAffCreateDate:
2092
+ description: 'Affiliate Create Date'
2093
+ multi: false
2094
+ objectClass: berkeleyEduPersonAffiliate
2095
+ required: false
2096
+ syntax: timestamp
2097
+ berkeleyEduAffExpBy:
2098
+ description: 'Affiliate Expiratied By'
2099
+ multi: false
2100
+ objectClass: berkeleyEduPersonAffiliate
2101
+ required: false
2102
+ syntax: string
2103
+ berkeleyEduAffExpDate:
2104
+ aliases:
2105
+ - ucbaffexpdate
2106
+ description: 'Affiliate Expiration Date'
2107
+ multi: false
2108
+ objectClass: berkeleyEduPersonAffiliate
2109
+ required: false
2110
+ syntax: timestamp
2111
+ berkeleyEduAffID:
2112
+ aliases:
2113
+ - ucbaffid
2114
+ description: 'Affiliate ID'
2115
+ multi: true
2116
+ objectClass: berkeleyEduPersonAffiliate
2117
+ required: false
2118
+ syntax: string
2119
+ berkeleyEduAffType:
2120
+ aliases:
2121
+ - ucbafftype
2122
+ description: 'Affiliate Type'
2123
+ multi: false
2124
+ objectClass: berkeleyEduPersonAffiliate
2125
+ required: true
2126
+ syntax: string
2127
+ berkeleyEduMiddleName:
2128
+ aliases:
2129
+ - ucbmiddlename
2130
+ description: 'Middle Name'
2131
+ multi: false
2132
+ objectClass: berkeleyEduPersonAffiliate
2133
+ required: false
2134
+ syntax: string
2135
+ berkeleyEduModifiedBy:
2136
+ description: 'UID of user who last modified entry'
2137
+ multi: false
2138
+ objectClass: berkeleyEduPersonAffiliate
2139
+ required: false
2140
+ syntax: string
2141
+ berkeleyEduPersonAffiliateSource:
2142
+ description: 'Affiliate Source'
2143
+ multi: false
2144
+ objectClass: berkeleyEduPersonAffiliate
2145
+ required: true
2146
+ syntax: string
2147
+ berkeleyEduUnitCalNetDeptName:
2148
+ description: 'CalNet Unit Department Name'
2149
+ multi: false
2150
+ objectClass: berkeleyEduPersonAffiliate
2151
+ required: false
2152
+ syntax: string
2153
+ departmentNumber:
2154
+ description: 'inetOrgPerson attribute type'
2155
+ multi: true
2156
+ objectClass: berkeleyEduPersonAffiliate
2157
+ required: false
2158
+ syntax: string
2159
+ givenName:
2160
+ description: 'Standard LDAP attribute type'
2161
+ multi: true
2162
+ objectClass: berkeleyEduPersonAffiliate
2163
+ required: false
2164
+ syntax: string
2165
+ objectClass:
2166
+ description: 'Standard LDAP attribute type'
2167
+ multi: true
2168
+ objectClass: top
2169
+ required: true
2170
+ syntax: string
2171
+ sn:
2172
+ aliases:
2173
+ - surName
2174
+ description: 'Standard LDAP attribute type'
2175
+ multi: true
2176
+ objectClass: berkeleyEduPersonAffiliate
2177
+ required: false
2178
+ syntax: string
2179
+ objectClasses:
2180
+ - top
2181
+ - berkeleyEduPersonAffiliate
2182
+ uniqueObjectClass: berkeleyEduPersonAffiliate
2183
+ personJobAppointment:
2184
+ attributes:
2185
+ berkeleyEduPersonJobApptCTOCode:
2186
+ description: 'Job Appointment - Compensatory Time Off Code'
2187
+ multi: false
2188
+ objectClass: berkeleyEduPersonJobAppt
2189
+ required: false
2190
+ syntax: string
2191
+ berkeleyEduPersonJobApptDepartment:
2192
+ description: 'Job Appointment - Department'
2193
+ multi: false
2194
+ objectClass: berkeleyEduPersonJobAppt
2195
+ required: false
2196
+ syntax: string
2197
+ berkeleyEduPersonJobApptEmpRecNumber:
2198
+ description: 'Job Appointment - Employee Record Number'
2199
+ multi: false
2200
+ objectClass: berkeleyEduPersonJobAppt
2201
+ required: true
2202
+ syntax: string
2203
+ berkeleyEduPersonJobApptPersPgmCode:
2204
+ description: 'Job Appointment - Personnel Program Code'
2205
+ multi: false
2206
+ objectClass: berkeleyEduPersonJobAppt
2207
+ required: false
2208
+ syntax: string
2209
+ berkeleyEduPersonJobApptPrimaryFlag:
2210
+ description: 'Job Appointment - Primary Appointment Flag'
2211
+ multi: false
2212
+ objectClass: berkeleyEduPersonJobAppt
2213
+ required: false
2214
+ syntax: boolean
2215
+ berkeleyEduPersonJobApptRelationsCode:
2216
+ description: 'Job Appointment - Relations Code'
2217
+ multi: false
2218
+ objectClass: berkeleyEduPersonJobAppt
2219
+ required: false
2220
+ syntax: string
2221
+ berkeleyEduPersonJobApptRepresentation:
2222
+ description: 'Job Appointment - Representation Code'
2223
+ multi: false
2224
+ objectClass: berkeleyEduPersonJobAppt
2225
+ required: false
2226
+ syntax: string
2227
+ berkeleyEduPersonJobApptTitleCode:
2228
+ description: 'Job Appointment - Job Title Code'
2229
+ multi: false
2230
+ objectClass: berkeleyEduPersonJobAppt
2231
+ required: false
2232
+ syntax: string
2233
+ berkeleyEduPersonJobApptType:
2234
+ description: 'Job Appointment - Type'
2235
+ multi: false
2236
+ objectClass: berkeleyEduPersonJobAppt
2237
+ required: false
2238
+ syntax: string
2239
+ berkeleyEduPersonJobApptWOS:
2240
+ description: 'Job Appointment - With-Out Salary Flag'
2241
+ multi: false
2242
+ objectClass: berkeleyEduPersonJobAppt
2243
+ required: false
2244
+ syntax: boolean
2245
+ objectClass:
2246
+ description: 'Standard LDAP attribute type'
2247
+ multi: true
2248
+ objectClass: top
2249
+ required: true
2250
+ syntax: string
2251
+ objectClasses:
2252
+ - top
2253
+ - berkeleyEduPersonJobAppt
2254
+ uniqueObjectClass: berkeleyEduPersonJobAppt
2255
+ personService:
2256
+ attributes:
2257
+ berkeleyEduPersonServiceEligibleBy:
2258
+ description: 'Personal Service - Eligible By'
2259
+ multi: false
2260
+ objectClass: berkeleyEduPersonService
2261
+ required: false
2262
+ syntax: string
2263
+ berkeleyEduPersonServiceEligibleDate:
2264
+ description: 'Personal Service - Eligible Date'
2265
+ multi: false
2266
+ objectClass: berkeleyEduPersonService
2267
+ required: false
2268
+ syntax: timestamp
2269
+ berkeleyEduPersonServiceEndBy:
2270
+ description: 'Personal Service - End By'
2271
+ multi: false
2272
+ objectClass: berkeleyEduPersonService
2273
+ required: false
2274
+ syntax: string
2275
+ berkeleyEduPersonServiceEndDate:
2276
+ description: 'Personal Service - End Date'
2277
+ multi: false
2278
+ objectClass: berkeleyEduPersonService
2279
+ required: false
2280
+ syntax: timestamp
2281
+ berkeleyEduPersonServiceEnteredBy:
2282
+ description: 'Personal Service - Entered By'
2283
+ multi: false
2284
+ objectClass: berkeleyEduPersonService
2285
+ required: false
2286
+ syntax: string
2287
+ berkeleyEduPersonServiceEnteredDate:
2288
+ description: 'Personal Service - Entered Date'
2289
+ multi: false
2290
+ objectClass: berkeleyEduPersonService
2291
+ required: false
2292
+ syntax: timestamp
2293
+ berkeleyEduPersonServiceLevel:
2294
+ description: 'Personal Service - Level'
2295
+ multi: false
2296
+ objectClass: berkeleyEduPersonService
2297
+ required: false
2298
+ syntax: integer
2299
+ berkeleyEduPersonServiceModifiedBy:
2300
+ description: 'Personal Service - Modified By'
2301
+ multi: false
2302
+ objectClass: berkeleyEduPersonService
2303
+ required: false
2304
+ syntax: string
2305
+ berkeleyEduPersonServiceModifiedDate:
2306
+ description: 'Personal Service - Modified Date'
2307
+ multi: false
2308
+ objectClass: berkeleyEduPersonService
2309
+ required: false
2310
+ syntax: timestamp
2311
+ berkeleyEduPersonServiceNaughtyBit:
2312
+ description: 'Personal Service - Naughty Bit'
2313
+ multi: false
2314
+ objectClass: berkeleyEduPersonService
2315
+ required: false
2316
+ syntax: boolean
2317
+ berkeleyEduPersonServiceNotifyBy:
2318
+ description: 'Personal Service - Notify By'
2319
+ multi: false
2320
+ objectClass: berkeleyEduPersonService
2321
+ required: false
2322
+ syntax: string
2323
+ berkeleyEduPersonServiceNotifyDate:
2324
+ description: 'Personal Service - Notify Date'
2325
+ multi: false
2326
+ objectClass: berkeleyEduPersonService
2327
+ required: false
2328
+ syntax: timestamp
2329
+ berkeleyEduPersonServiceStopBy:
2330
+ description: 'Personal Service - Stop By'
2331
+ multi: false
2332
+ objectClass: berkeleyEduPersonService
2333
+ required: false
2334
+ syntax: string
2335
+ berkeleyEduPersonServiceStopDate:
2336
+ description: 'Personal Service - Stop Date'
2337
+ multi: false
2338
+ objectClass: berkeleyEduPersonService
2339
+ required: false
2340
+ syntax: timestamp
2341
+ berkeleyEduPersonServiceValue:
2342
+ description: 'Personal Service - Value'
2343
+ multi: false
2344
+ objectClass: berkeleyEduPersonService
2345
+ required: false
2346
+ syntax: string
2347
+ berkeleyEduService:
2348
+ description: Service
2349
+ multi: false
2350
+ objectClass: berkeleyEduPersonService
2351
+ required: true
2352
+ syntax: string
2353
+ cn:
2354
+ aliases:
2355
+ - commonName
2356
+ description: 'Standard LDAP attribute type'
2357
+ multi: true
2358
+ objectClass: berkeleyEduPersonService
2359
+ required: true
2360
+ syntax: string
2361
+ description:
2362
+ description: 'Standard LDAP attribute type'
2363
+ multi: true
2364
+ objectClass: berkeleyEduPersonService
2365
+ required: false
2366
+ syntax: string
2367
+ objectClass:
2368
+ description: 'Standard LDAP attribute type'
2369
+ multi: true
2370
+ objectClass: top
2371
+ required: true
2372
+ syntax: string
2373
+ objectClasses:
2374
+ - top
2375
+ - berkeleyEduPersonService
2376
+ uniqueObjectClass: berkeleyEduPersonService
2377
+ personStudentTerm:
2378
+ attributes:
2379
+ berkeleyEduStuChangeDate:
2380
+ description: 'Student Term - Change Date'
2381
+ multi: false
2382
+ objectClass: berkeleyEduPersonTerm
2383
+ required: false
2384
+ syntax: string
2385
+ berkeleyEduStuCollegeCode:
2386
+ aliases:
2387
+ - ucbstucollegecode
2388
+ description: 'Student College Code'
2389
+ multi: false
2390
+ objectClass: berkeleyEduPersonTerm
2391
+ required: false
2392
+ syntax: string
2393
+ berkeleyEduStuCollegeName:
2394
+ aliases:
2395
+ - ucbstucollegename
2396
+ description: 'Student College Name'
2397
+ multi: false
2398
+ objectClass: berkeleyEduPersonTerm
2399
+ required: false
2400
+ syntax: string
2401
+ berkeleyEduStuEduLevelCode:
2402
+ aliases:
2403
+ - ucbstuedulevelcode
2404
+ description: 'Student Education Level Code'
2405
+ multi: false
2406
+ objectClass: berkeleyEduPersonTerm
2407
+ required: false
2408
+ syntax: string
2409
+ berkeleyEduStuEduLevelName:
2410
+ aliases:
2411
+ - ucbstuedulevelname
2412
+ description: 'Student Education Level Name'
2413
+ multi: false
2414
+ objectClass: berkeleyEduPersonTerm
2415
+ required: false
2416
+ syntax: string
2417
+ berkeleyEduStuEduRoleCode:
2418
+ aliases:
2419
+ - ucbsturole
2420
+ description: 'Student Education Role Code'
2421
+ multi: false
2422
+ objectClass: berkeleyEduPersonTerm
2423
+ required: false
2424
+ syntax: string
2425
+ berkeleyEduStuEduRoleName:
2426
+ description: 'Student Education Role Name'
2427
+ multi: false
2428
+ objectClass: berkeleyEduPersonTerm
2429
+ required: false
2430
+ syntax: string
2431
+ berkeleyEduStuMajorCode:
2432
+ aliases:
2433
+ - ucbstumajorcode
2434
+ description: 'Student Major Code'
2435
+ multi: false
2436
+ objectClass: berkeleyEduPersonTerm
2437
+ required: false
2438
+ syntax: string
2439
+ berkeleyEduStuMajorName:
2440
+ aliases:
2441
+ - ucbstumajorname
2442
+ description: 'Student Major Name'
2443
+ multi: false
2444
+ objectClass: berkeleyEduPersonTerm
2445
+ required: false
2446
+ syntax: string
2447
+ berkeleyEduStuRegStatCode:
2448
+ aliases:
2449
+ - ucbsturegstatcode
2450
+ description: 'Student Registration Status Code'
2451
+ multi: false
2452
+ objectClass: berkeleyEduPersonTerm
2453
+ required: false
2454
+ syntax: string
2455
+ berkeleyEduStuRegStatName:
2456
+ aliases:
2457
+ - ucbsturegstatname
2458
+ description: 'Student Registration Status Name'
2459
+ multi: false
2460
+ objectClass: berkeleyEduPersonTerm
2461
+ required: false
2462
+ syntax: string
2463
+ berkeleyEduStuTermCode:
2464
+ aliases:
2465
+ - ucbstutermcode
2466
+ description: 'Student Term Code'
2467
+ multi: false
2468
+ objectClass: berkeleyEduPersonTerm
2469
+ required: true
2470
+ syntax: string
2471
+ berkeleyEduStuTermName:
2472
+ aliases:
2473
+ - ucbstutermname
2474
+ description: 'Student Term Name'
2475
+ multi: false
2476
+ objectClass: berkeleyEduPersonTerm
2477
+ required: false
2478
+ syntax: string
2479
+ berkeleyEduStuTermStatus:
2480
+ aliases:
2481
+ - ucbstutermstatus
2482
+ description: 'Student Term Status'
2483
+ multi: false
2484
+ objectClass: berkeleyEduPersonTerm
2485
+ required: false
2486
+ syntax: string
2487
+ berkeleyEduStuTermYear:
2488
+ aliases:
2489
+ - ucbstutermyear
2490
+ description: 'Student Term Year'
2491
+ multi: false
2492
+ objectClass: berkeleyEduPersonTerm
2493
+ required: false
2494
+ syntax: integer
2495
+ berkeleyEduStuUGCode:
2496
+ aliases:
2497
+ - ucbstuugflag
2498
+ description: 'Student Under-Graduate Code'
2499
+ multi: false
2500
+ objectClass: berkeleyEduPersonTerm
2501
+ required: false
2502
+ syntax: string
2503
+ objectClass:
2504
+ description: 'Standard LDAP attribute type'
2505
+ multi: true
2506
+ objectClass: top
2507
+ required: true
2508
+ syntax: string
2509
+ objectClasses:
2510
+ - top
2511
+ - berkeleyEduPersonTerm
2512
+ uniqueObjectClass: berkeleyEduPersonTerm
2513
+ salutation:
2514
+ attributes:
2515
+ cn:
2516
+ aliases:
2517
+ - commonName
2518
+ description: 'Standard LDAP attribute type'
2519
+ multi: true
2520
+ objectClass: berkeleyEduCalNetSalutation
2521
+ required: true
2522
+ syntax: string
2523
+ description:
2524
+ description: 'Standard LDAP attribute type'
2525
+ multi: true
2526
+ objectClass: berkeleyEduCalNetSalutation
2527
+ required: false
2528
+ syntax: string
2529
+ objectClass:
2530
+ description: 'Standard LDAP attribute type'
2531
+ multi: true
2532
+ objectClass: top
2533
+ required: true
2534
+ syntax: string
2535
+ objectClasses:
2536
+ - top
2537
+ - berkeleyEduCalNetSalutation
2538
+ uniqueObjectClass: berkeleyEduCalNetSalutation
2539
+ securityQuestion:
2540
+ attributes:
2541
+ berkeleyEduCalNetSalt:
2542
+ description: 'Generic Salt For Use With Encrypted Attributes'
2543
+ multi: false
2544
+ objectClass: berkeleyEduCalNetSecurityQuestion
2545
+ required: false
2546
+ syntax: string
2547
+ berkeleyEduCalNetSecurityQuestion:
2548
+ description: 'Security Question'
2549
+ multi: false
2550
+ objectClass: berkeleyEduCalNetSecurityQuestion
2551
+ required: false
2552
+ syntax: string
2553
+ berkeleyEduCalNetSecurityQuestionAnswer:
2554
+ description: 'Security Question'
2555
+ multi: false
2556
+ objectClass: berkeleyEduCalNetSecurityQuestion
2557
+ required: false
2558
+ syntax: string
2559
+ cn:
2560
+ aliases:
2561
+ - commonName
2562
+ description: 'Standard LDAP attribute type'
2563
+ multi: true
2564
+ objectClass: berkeleyEduCalNetSecurityQuestion
2565
+ required: true
2566
+ syntax: string
2567
+ objectClass:
2568
+ description: 'Standard LDAP attribute type'
2569
+ multi: true
2570
+ objectClass: top
2571
+ required: true
2572
+ syntax: string
2573
+ objectClasses:
2574
+ - top
2575
+ - berkeleyEduCalNetSecurityQuestion
2576
+ uniqueObjectClass: berkeleyEduCalNetSecurityQuestion
2577
+ unibears:
2578
+ attributes:
2579
+ audio:
2580
+ description: 'Standard LDAP attribute type'
2581
+ multi: true
2582
+ objectClass: inetorgperson
2583
+ required: false
2584
+ syntax: binary
2585
+ berkeleyEduAppStandardCommuniteAddlMbox:
2586
+ description: 'Communite Additional Mbox'
2587
+ multi: true
2588
+ objectClass: berkeleyEduCommunite
2589
+ required: false
2590
+ syntax: string
2591
+ berkeleyEduAppStandardCommuniteAdminFlag:
2592
+ description: 'Communite Admin Flag'
2593
+ multi: false
2594
+ objectClass: berkeleyEduCommunite
2595
+ required: false
2596
+ syntax: string
2597
+ berkeleyEduAppStandardCommuniteEmailAddress:
2598
+ description: 'Communite Email Address'
2599
+ multi: false
2600
+ objectClass: berkeleyEduCommunite
2601
+ required: false
2602
+ syntax: string
2603
+ berkeleyEduAppStandardCommuniteEmailHost:
2604
+ description: 'Communite Email Host'
2605
+ multi: false
2606
+ objectClass: berkeleyEduCommunite
2607
+ required: false
2608
+ syntax: string
2609
+ berkeleyEduAppStandardCommuniteEmailPassword:
2610
+ description: 'Communite Email Password'
2611
+ multi: false
2612
+ objectClass: berkeleyEduCommunite
2613
+ required: false
2614
+ syntax: string
2615
+ berkeleyEduAppStandardCommuniteEmailUserName:
2616
+ description: 'Communite Email User Name'
2617
+ multi: false
2618
+ objectClass: berkeleyEduCommunite
2619
+ required: false
2620
+ syntax: string
2621
+ businessCategory:
2622
+ description: 'Standard LDAP attribute type'
2623
+ multi: true
2624
+ objectClass: inetorgperson
2625
+ required: false
2626
+ syntax: string
2627
+ carLicense:
2628
+ description: 'inetOrgPerson attribute type'
2629
+ multi: true
2630
+ objectClass: inetorgperson
2631
+ required: false
2632
+ syntax: string
2633
+ cn:
2634
+ aliases:
2635
+ - commonName
2636
+ description: 'Standard LDAP attribute type'
2637
+ multi: true
2638
+ objectClass: person
2639
+ required: true
2640
+ syntax: string
2641
+ departmentNumber:
2642
+ description: 'inetOrgPerson attribute type'
2643
+ multi: true
2644
+ objectClass: inetorgperson
2645
+ required: false
2646
+ syntax: string
2647
+ description:
2648
+ description: 'Standard LDAP attribute type'
2649
+ multi: true
2650
+ objectClass: person
2651
+ required: false
2652
+ syntax: string
2653
+ destinationIndicator:
2654
+ description: 'Standard LDAP attribute type'
2655
+ multi: true
2656
+ objectClass: organizationalperson
2657
+ required: false
2658
+ syntax: string
2659
+ displayName:
2660
+ description: 'inetOrgPerson attribute type'
2661
+ multi: false
2662
+ objectClass: inetorgperson
2663
+ required: false
2664
+ syntax: string
2665
+ employeeNumber:
2666
+ description: 'inetOrgPerson attribute type'
2667
+ multi: false
2668
+ objectClass: inetorgperson
2669
+ required: false
2670
+ syntax: string
2671
+ employeeType:
2672
+ description: 'inetOrgPerson attribute type'
2673
+ multi: true
2674
+ objectClass: inetorgperson
2675
+ required: false
2676
+ syntax: string
2677
+ facsimileTelephoneNumber:
2678
+ aliases:
2679
+ - fax
2680
+ description: 'Standard LDAP attribute type'
2681
+ multi: true
2682
+ objectClass: organizationalperson
2683
+ required: false
2684
+ syntax: string
2685
+ givenName:
2686
+ description: 'Standard LDAP attribute type'
2687
+ multi: true
2688
+ objectClass: inetorgperson
2689
+ required: false
2690
+ syntax: string
2691
+ homePhone:
2692
+ description: 'Standard LDAP attribute type'
2693
+ multi: true
2694
+ objectClass: inetorgperson
2695
+ required: false
2696
+ syntax: string
2697
+ homePostalAddress:
2698
+ description: 'Standard LDAP attribute type'
2699
+ multi: true
2700
+ objectClass: inetorgperson
2701
+ required: false
2702
+ syntax: string
2703
+ initials:
2704
+ description: 'Standard LDAP attribute type'
2705
+ multi: true
2706
+ objectClass: inetorgperson
2707
+ required: false
2708
+ syntax: string
2709
+ internationaliSDNNumber:
2710
+ description: 'Standard LDAP attribute type'
2711
+ multi: true
2712
+ objectClass: organizationalperson
2713
+ required: false
2714
+ syntax: string
2715
+ jpegPhoto:
2716
+ description: 'inetOrgPerson attribute type'
2717
+ multi: true
2718
+ objectClass: inetorgperson
2719
+ required: false
2720
+ syntax: binary
2721
+ l:
2722
+ aliases:
2723
+ - locality
2724
+ - localityname
2725
+ description: 'Standard LDAP attribute type'
2726
+ multi: true
2727
+ objectClass: organizationalperson
2728
+ required: false
2729
+ syntax: string
2730
+ labeledUri:
2731
+ aliases:
2732
+ - labeledurl
2733
+ description: 'Uniform Resource Identifier with optional label'
2734
+ multi: true
2735
+ objectClass: inetorgperson
2736
+ required: false
2737
+ syntax: string
2738
+ mail:
2739
+ aliases:
2740
+ - rfc822mailbox
2741
+ description: 'Standard LDAP attribute type'
2742
+ multi: true
2743
+ objectClass: inetorgperson
2744
+ required: false
2745
+ syntax: string
2746
+ manager:
2747
+ description: 'Standard LDAP attribute type'
2748
+ multi: true
2749
+ objectClass: inetorgperson
2750
+ required: false
2751
+ syntax: string
2752
+ mobile:
2753
+ aliases:
2754
+ - mobileTelephoneNumber
2755
+ description: 'Standard LDAP attribute type'
2756
+ multi: true
2757
+ objectClass: inetorgperson
2758
+ required: false
2759
+ syntax: string
2760
+ o:
2761
+ aliases:
2762
+ - organizationname
2763
+ description: 'Standard LDAP attribute type'
2764
+ multi: true
2765
+ objectClass: inetorgperson
2766
+ required: false
2767
+ syntax: string
2768
+ objectClass:
2769
+ description: 'Standard LDAP attribute type'
2770
+ multi: true
2771
+ objectClass: top
2772
+ required: true
2773
+ syntax: string
2774
+ ou:
2775
+ aliases:
2776
+ - organizationalUnitName
2777
+ description: 'Standard LDAP attribute type'
2778
+ multi: true
2779
+ objectClass: organizationalperson
2780
+ required: false
2781
+ syntax: string
2782
+ pager:
2783
+ aliases:
2784
+ - pagerTelephoneNumber
2785
+ description: 'Standard LDAP attribute type'
2786
+ multi: true
2787
+ objectClass: inetorgperson
2788
+ required: false
2789
+ syntax: string
2790
+ photo:
2791
+ description: 'Standard LDAP attribute type'
2792
+ multi: true
2793
+ objectClass: inetorgperson
2794
+ required: false
2795
+ syntax: binary
2796
+ physicalDeliveryOfficeName:
2797
+ description: 'Standard LDAP attribute type'
2798
+ multi: true
2799
+ objectClass: organizationalperson
2800
+ required: false
2801
+ syntax: string
2802
+ postOfficeBox:
2803
+ description: 'Standard LDAP attribute type'
2804
+ multi: true
2805
+ objectClass: organizationalperson
2806
+ required: false
2807
+ syntax: string
2808
+ postalAddress:
2809
+ description: 'Standard LDAP attribute type'
2810
+ multi: true
2811
+ objectClass: organizationalperson
2812
+ required: false
2813
+ syntax: string
2814
+ postalCode:
2815
+ description: 'Standard LDAP attribute type'
2816
+ multi: true
2817
+ objectClass: organizationalperson
2818
+ required: false
2819
+ syntax: string
2820
+ preferredDeliveryMethod:
2821
+ description: 'Standard LDAP attribute type'
2822
+ multi: false
2823
+ objectClass: organizationalperson
2824
+ required: false
2825
+ syntax: string
2826
+ preferredLanguage:
2827
+ description: 'inetOrgPerson attribute type'
2828
+ multi: false
2829
+ objectClass: inetorgperson
2830
+ required: false
2831
+ syntax: string
2832
+ registeredAddress:
2833
+ description: 'Standard LDAP attribute type'
2834
+ multi: true
2835
+ objectClass: organizationalperson
2836
+ required: false
2837
+ syntax: string
2838
+ roomNumber:
2839
+ description: 'Standard LDAP attribute type'
2840
+ multi: true
2841
+ objectClass: inetorgperson
2842
+ required: false
2843
+ syntax: string
2844
+ secretary:
2845
+ description: 'Standard LDAP attribute type'
2846
+ multi: true
2847
+ objectClass: inetorgperson
2848
+ required: false
2849
+ syntax: string
2850
+ seeAlso:
2851
+ description: 'Standard LDAP attribute type'
2852
+ multi: true
2853
+ objectClass: person
2854
+ required: false
2855
+ syntax: string
2856
+ sn:
2857
+ aliases:
2858
+ - surName
2859
+ description: 'Standard LDAP attribute type'
2860
+ multi: true
2861
+ objectClass: person
2862
+ required: true
2863
+ syntax: string
2864
+ st:
2865
+ aliases:
2866
+ - stateOrProvinceName
2867
+ description: 'Standard LDAP attribute type'
2868
+ multi: true
2869
+ objectClass: organizationalperson
2870
+ required: false
2871
+ syntax: string
2872
+ street:
2873
+ aliases:
2874
+ - streetaddress
2875
+ description: 'Standard LDAP attribute type'
2876
+ multi: true
2877
+ objectClass: organizationalperson
2878
+ required: false
2879
+ syntax: string
2880
+ telephoneNumber:
2881
+ description: 'Standard LDAP attribute type'
2882
+ multi: true
2883
+ objectClass: person
2884
+ required: false
2885
+ syntax: string
2886
+ teletexTerminalIdentifier:
2887
+ description: 'Standard LDAP attribute type'
2888
+ multi: true
2889
+ objectClass: organizationalperson
2890
+ required: false
2891
+ syntax: string
2892
+ telexNumber:
2893
+ description: 'Standard LDAP attribute type'
2894
+ multi: true
2895
+ objectClass: organizationalperson
2896
+ required: false
2897
+ syntax: string
2898
+ title:
2899
+ description: 'Standard LDAP attribute type'
2900
+ multi: true
2901
+ objectClass: organizationalperson
2902
+ required: false
2903
+ syntax: string
2904
+ uid:
2905
+ aliases:
2906
+ - userid
2907
+ description: 'Standard LDAP attribute type'
2908
+ multi: true
2909
+ objectClass: inetorgperson
2910
+ required: false
2911
+ syntax: string
2912
+ userCertificate:
2913
+ description: 'Standard LDAP attribute type'
2914
+ multi: true
2915
+ objectClass: inetorgperson
2916
+ required: false
2917
+ syntax: binary
2918
+ userPKCS12:
2919
+ description: 'inetOrgPerson attribute type'
2920
+ multi: true
2921
+ objectClass: inetorgperson
2922
+ required: false
2923
+ syntax: binary
2924
+ userPassword:
2925
+ description: 'Standard LDAP attribute type'
2926
+ multi: true
2927
+ objectClass: person
2928
+ required: false
2929
+ syntax: string
2930
+ userSMIMECertificate:
2931
+ description: 'inetOrgPerson attribute type'
2932
+ multi: true
2933
+ objectClass: inetorgperson
2934
+ required: false
2935
+ syntax: binary
2936
+ x121Address:
2937
+ description: 'Standard LDAP attribute type'
2938
+ multi: true
2939
+ objectClass: organizationalperson
2940
+ required: false
2941
+ syntax: string
2942
+ x500UniqueIdentifier:
2943
+ description: 'Standard LDAP attribute type'
2944
+ multi: true
2945
+ objectClass: inetorgperson
2946
+ required: false
2947
+ syntax: binary
2948
+ objectClasses:
2949
+ - top
2950
+ - person
2951
+ - organizationalperson
2952
+ - inetorgperson
2953
+ - berkeleyEduCommunite
2954
+ uniqueObjectClass: berkeleyEduCommunite