Schema Attributes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know what schema class holds "city" attribute? Also, is there an
attribute "type of record" ?
 
Marshall said:
Does anyone know what schema class holds "city" attribute? Also, is there
an
attribute "type of record" ?

Hi,

I find no attribute similar to "type of record". The "city" attribute is
actually called the "Locality-Name" attribute, with LDAP Display Name "l".
The classes it applies to are:

Application-Entity
Application-Process
Device
Locality
Organization
Organization-Person
Organization-Role
Organization-Unit
Residential-Person

Documentation here:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adschema/adschema/a_l.asp
 
For "Type of Record" Can't you use "ObjectClass" & "ObjectCategory" to
determine what kind of object you are looking at?
 
city is locality-name which lDAPDisplayName l.

What classes it is attached to is completely dependend on your schema as you can
change it at will. To see what it is directly attached to at any given moment,
you can run the following command


C:\>adfind -sc scontainsl:l

account
applicationEntity
applicationProcess
device
document
documentSeries
ipHost
ipNetwork
locality
organization
organizationalPerson
organizationalRole
organizationalUnit
publicFolder
residentialPerson




--
Joe Richards Microsoft MVP Windows Server Directory Services
Author of O'Reilly Active Directory Third Edition
www.joeware.net


---O'Reilly Active Directory Third Edition now available---

http://www.joeware.net/win/ad3e.htm
 
Back
Top