]> git.sur5r.net Git - openldap/blob - servers/slapd/schema/inetorgperson.schema
80cb6384c9fd25c7d3a7c53e2f1186d85564e090
[openldap] / servers / slapd / schema / inetorgperson.schema
1 # $OpenLDAP$
2 #
3 # InetOrgPerson
4 # http://search.ietf.org/internet-drafts/draft-smith-ldap-inetorgperson-03.txt
5 #
6 # depends on pilot.schema
7 #
8
9 # carLicense
10 # This multivalued field is used to record the values of the license or
11 # registration plate associated with an individual.
12 attributetype ( 2.16.840.1.113730.3.1.1
13         NAME 'carLicense'
14         DESC 'vehicle license or registration plate'
15         EQUALITY caseIgnoreMatch
16         SUBSTR caseIgnoreSubstringsMatch
17         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
18
19 # departmentNumber
20 # Code for department to which a person belongs.  This can also be
21 # strictly numeric (e.g., 1234) or alphanumeric (e.g., ABC/123).
22 attributetype ( 2.16.840.1.113730.3.1.2
23         NAME 'departmentNumber'
24         DESC 'identifies a department within an organization'
25         EQUALITY caseIgnoreMatch
26         SUBSTR caseIgnoreSubstringsMatch
27         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
28
29 # displayName
30 # When displaying an entry, especially within a one-line summary list, it
31 # is useful to be able to identify a name to be used.  Since other attri-
32 # bute types such as 'cn' are multivalued, an additional attribute type is
33 # needed.  Display name is defined for this purpose.
34 attributetype ( 2.16.840.1.113730.3.1.241
35         NAME 'displayName'
36         DESC 'preferred name of a person to be used when displaying entries'
37         EQUALITY caseIgnoreMatch
38         SUBSTR caseIgnoreSubstringsMatch
39         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
40         SINGLE-VALUE )
41
42 # employeeNumber
43 # Numeric or alphanumeric identifier assigned to a person, typically based
44 # on order of hire or association with an organization.  Single valued.
45 attributetype ( 2.16.840.1.113730.3.1.3
46         NAME 'employeeNumber'
47         DESC 'numerically identifies an employee within an organization'
48         EQUALITY caseIgnoreMatch
49         SUBSTR caseIgnoreSubstringsMatch
50         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
51         SINGLE-VALUE )
52
53 # employeeType
54 # Used to identify the employer to employee relationship.  Typical values
55 # used will be "Contractor", "Employee", "Intern", "Temp", "External", and
56 # "Unknown" but any value may be used.
57 attributetype ( 2.16.840.1.113730.3.1.4
58         NAME 'employeeType'
59         DESC 'type of employment for a person'
60         EQUALITY caseIgnoreMatch
61         SUBSTR caseIgnoreSubstringsMatch
62         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
63
64 # jpegPhoto
65 # see pilot.schema
66
67 # preferredLanguage
68 # Used to indicate an individual's preferred written or spoken language.
69 # This is useful for international correspondence or human-computer
70 # interaction.  Values for this attribute type MUST conform to the defini-
71 # tion of the Accept-Language header field defined in [RFC2068] with one
72 # exception:  the sequence "Accept-Language" ":" should be omitted.  This
73 # is a single valued attribute type.
74 attributetype ( 2.16.840.1.113730.3.1.39
75         NAME 'preferredLanguage'
76         DESC 'preferred written or spoken language for a person'
77         EQUALITY caseIgnoreMatch
78         SUBSTR caseIgnoreSubstringsMatch
79         SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
80         SINGLE-VALUE )
81
82 # userSMIMECertificate
83 # An S/MIME [RFC1847] signed message with a zero-length body.  This attri-
84 # bute is to be stored and requested in binary form, as
85 # 'userSMIMECertificate;binary'.  It contains the person's entire certifi-
86 # cate chain and the signed attribute that describes their algorithm capa-
87 # bilities, stored as binary data.  If available, this attribute is
88 # preferred over the userCertificate attribute for S/MIME applications.
89 attributetype ( 2.16.840.1.113730.3.1.40
90         NAME 'userSMIMECertificate'
91         DESC 'signed message used to support S/MIME'
92         SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 )
93
94 # userPKCS12
95 # PKCS #12 [PKCS12] provides a format for exchange of personal identity
96 # information.  When such information is stored in a directory service,
97 # the userPKCS12 attribute should be used. This attribute is to be stored
98 # and requested in binary form, as 'userPKCS12;binary'.  The attribute
99 # values are PFX PDUs stored as binary data.
100 attributetype ( 2.16.840.1.113730.3.1.216
101         NAME 'userPKCS12'
102         DESC 'PKCS #12 PFX PDU for exchange of personal identity information'
103         SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 )
104
105
106 # inetOrgPerson
107 # The inetOrgPerson represents people who are associated with an organiza-
108 # tion in some way.  It is a structural class and is derived from the
109 # organizationalPerson class which is defined in X.521 [X521].
110 objectclass     ( 2.16.840.1.113730.3.2.2
111     NAME 'inetOrgPerson'
112     SUP organizationalPerson
113     STRUCTURAL
114         MAY (
115                 audio $ businessCategory $ carLicense $ departmentNumber $
116                 displayName $ employeeNumber $ employeeType $ givenName $ homePhone $
117                 homePostalAddress $ initials $ jpegPhoto $ labeledURI $
118                 mail $ manager $ mobile $ o $ pager $
119                 photo $ roomNumber $ secretary $ uid $ userCertificate $
120                 x500uniqueIdentifier $ preferredLanguage $ userSMIMECertificate $
121                 userPKCS12 )
122         )