home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / drafts / draft_ietf_a_c / draft-ietf-asid-ldapv3-attributes-08.txt < prev    next >
Text File  |  1997-10-20  |  57KB  |  1,561 lines

  1.  
  2. Network Working Group                                            M. Wahl
  3. INTERNET-DRAFT                                       Critical Angle Inc.
  4. Obsoletes: RFC 1778                                          A. Coulbeck
  5.                                                               Isode Inc.
  6.                                                                 T. Howes
  7.                                            Netscape Communications Corp.
  8.                                                                 S. Kille
  9.                                                            Isode Limited
  10. Intended Category: Standards Track                          October 1997
  11.  
  12.  
  13.                   Lightweight Directory Access Protocol (v3):
  14.                        Attribute Syntax Definitions
  15.                  <draft-ietf-asid-ldapv3-attributes-08.txt> 
  16.  
  17. 1. Status of this Memo
  18.  
  19.    This document is an Internet-Draft.  Internet-Drafts are working 
  20.    documents of the Internet Engineering Task Force (IETF), its areas, and
  21.    its working groups.  Note that other groups may also distribute working
  22.    documents as Internet-Drafts.
  23.  
  24.    Internet-Drafts are draft documents valid for a maximum of six months
  25.    and may be updated, replaced, or obsoleted by other documents at any
  26.    time.  It is inappropriate to use Internet-Drafts as reference material
  27.    or to cite them other than as "work in progress."
  28.  
  29.    To learn the current status of any Internet-Draft, please check the
  30.    "1id-abstracts.txt" listing  contained in the Internet-Drafts Shadow
  31.    Directories on ds.internic.net (US East Coast), nic.nordu.net (Europe),
  32.    ftp.isi.edu (US West Coast), or munnari.oz.au (Pacific Rim).
  33.  
  34. 2. Abstract
  35.  
  36.    The Lightweight Directory Access Protocol (LDAP) [1] requires that 
  37.    the contents of AttributeValue fields in protocol elements be octet 
  38.    strings.  This document defines a set of syntaxes for LDAPv3, and the
  39.    rules by which attribute values of these syntaxes are represented as
  40.    octet strings for transmission in the LDAP protocol.  The syntaxes 
  41.    defined in this document are referenced by this and other documents 
  42.    that define attribute types.  This document also defines the set of 
  43.    attribute types which LDAP servers should support.
  44.  
  45. 3. Overview
  46.  
  47.    This document defines the framework for developing schemas for 
  48.    directories accessible via the Lightweight Directory Access Protocol.
  49.  
  50.    Schema is the collection of attribute type definitions, object class
  51.    definitions and other information which a server uses to determine
  52.    how to match a filter or attribute value assertion (in a compare 
  53.    operation) against the attributes of an entry, and whether to permit 
  54.    add and modify operations.  
  55.  
  56.    Section 4 states the general requirements and notations for attribute
  57.    types, object classes, syntax and matching rule definitions.
  58.  
  59.  
  60. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 1
  61.  
  62. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  63.  
  64.    Section 5 lists attributes, section 6 syntaxes and section 7 object 
  65.    classes.
  66.  
  67.    Additional documents define schemas for representing real-world 
  68.    objects as directory entries.
  69.  
  70. 4. General Issues
  71.  
  72.    This document describes encodings used in an Internet protocol. 
  73.  
  74.    The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", 
  75.    "SHOULD", "SHOULD NOT", "RECOMMENDED",  "MAY", and "OPTIONAL" in 
  76.    this document are to be interpreted as described in RFC 2119 [4].
  77.  
  78.    Attribute Type and Object Class definitions are written in a 
  79.    string representation of the AttributeTypeDescription and 
  80.    ObjectClassDescription data types defined in X.501(93) [3].  
  81.    Implementors are strongly advised to first read the description
  82.    of how schema is represented in X.500 before reading the rest of 
  83.    this document.
  84.  
  85. 4.1. Common Encoding Aspects
  86.  
  87.    For the purposes of defining the encoding rules for attribute 
  88.    syntaxes, the following BNF definitions will be used.  They are 
  89.    based on the BNF styles of RFC 822 [13].
  90.  
  91.      a     = "a" / "b" / "c" / "d" / "e" / "f" / "g" / "h" / "i" /
  92.              "j" / "k" / "l" / "m" / "n" / "o" / "p" / "q" / "r" /
  93.              "s" / "t" / "u" / "v" / "w" / "x" / "y" / "z" / "A" /
  94.              "B" / "C" / "D" / "E" / "F" / "G" / "H" / "I" / "J" /
  95.              "K" / "L" / "M" / "N" / "O" / "P" / "Q" / "R" / "S" /
  96.              "T" / "U" / "V" / "W" / "X" / "Y" / "Z"
  97.  
  98.      d               = "0" / "1" / "2" / "3" / "4" / 
  99.                        "5" / "6" / "7" / "8" / "9"
  100.  
  101.      hex-digit       =  d / "a" / "b" / "c" / "d" / "e" / "f" /
  102.                             "A" / "B" / "C" / "D" / "E" / "F"
  103.  
  104.      k               = a / d / "-" / ";"
  105.  
  106.      p               = a / d / """ / "(" / ")" / "+" / "," / 
  107.                        "-" / "." / "/" / ":" / "?" / " "
  108.  
  109.      letterstring    = 1*a
  110.  
  111.      numericstring   = 1*d
  112.  
  113.      anhstring       = 1*k
  114.  
  115.      keystring       = a [ anhstring ]
  116.  
  117.      printablestring = 1*p
  118.  
  119.  
  120. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 2
  121.  
  122. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  123.  
  124.      space           = 1*" " 
  125.  
  126.      whsp            = [ space ]
  127.  
  128.      utf8            = <any sequence of octets formed from the UTF-8 [9] 
  129.                         transformation of a character from ISO10646 [10]>
  130.  
  131.      dstring         = 1*utf8
  132.  
  133.      qdstring        = whsp "'" dstring "'" whsp
  134.  
  135.      qdstringlist    = [ qdstring *( qdstring ) ]
  136.  
  137.      qdstrings       = qdstring / ( whsp "(" qdstringlist ")" whsp )
  138.  
  139.    In the following BNF for the string representation of OBJECT 
  140.    IDENTIFIERs, descr is the syntactic representation of an object 
  141.    descriptor, which consists of letters and digits, starting with a 
  142.    letter.  An OBJECT IDENTIFIER in the numericoid format should not 
  143.    have leading zeroes (e.g. "0.9.3" is permitted but "0.09.3" should 
  144.    not be generated).
  145.  
  146.    When encoding 'oid' elements in a value, the descr encoding option 
  147.    SHOULD be used in preference to the numericoid. An object descriptor is
  148.    a more readable alias for a number OBJECT IDENTIFIER, and these 
  149.    (where assigned and known by the implementation) SHOULD be used in
  150.    preference to numeric oids to the greatest extent possible.  
  151.    Examples of object descriptors in LDAP are attribute type, object 
  152.    class and matching rule names. 
  153.  
  154.      oid             = descr / numericoid 
  155.  
  156.      descr           = keystring 
  157.  
  158.      numericoid      = numericstring *( "." numericstring )
  159.  
  160.      woid            = whsp oid whsp
  161.  
  162.      ; set of oids of either form
  163.      oids            = woid / ( "(" oidlist ")" )
  164.  
  165.      oidlist         = woid *( "$" woid )
  166.  
  167.      ; object descriptors used as schema element names
  168.      qdescrs         = qdescr / ( whsp "(" qdescrlist ")" whsp )
  169.  
  170.      qdescrlist      = [ qdescr *( qdescr ) ]
  171.  
  172.      qdescr          = whsp "'" descr "'" whsp
  173.  
  174.      
  175.  
  176.  
  177.  
  178.  
  179.  
  180. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 3
  181.  
  182. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  183.  
  184. 4.2. Attribute Types
  185.  
  186.    The attribute types are described by sample values for the subschema 
  187.    "attributeTypes" attribute, which is written in the 
  188.    AttributeTypeDescription syntax.  While lines have been folded for 
  189.    readability, the values transferred in protocol would not contain 
  190.    newlines.  
  191.  
  192.    The AttributeTypeDescription is encoded according to the following 
  193.    BNF, and the productions for oid, qdescrs and qdstring are given
  194.    in section 4.1.  Implementors should note that future versions of 
  195.    this document may have expanded this BNF to include additional terms.
  196.    Terms which begin with the characters "X-" are reserved for private
  197.    experiments, and MUST be followed by a <qdstrings>.
  198.  
  199.       AttributeTypeDescription = "(" whsp
  200.             numericoid whsp              ; AttributeType identifier
  201.           [ "NAME" qdescrs ]             ; name used in AttributeType
  202.           [ "DESC" qdstring ]            ; description
  203.           [ "OBSOLETE" whsp ]
  204.           [ "SUP" woid ]                 ; derived from this other 
  205.                                          ; AttributeType
  206.           [ "EQUALITY" woid              ; Matching Rule name
  207.           [ "ORDERING" woid              ; Matching Rule name
  208.           [ "SUBSTR" woid ]              ; Matching Rule name 
  209.           [ "SYNTAX" whsp noidlen whsp ] ; see section 4.3
  210.           [ "SINGLE-VALUE" whsp ]        ; default multi-valued
  211.           [ "COLLECTIVE" whsp ]          ; default not collective
  212.           [ "NO-USER-MODIFICATION" whsp ]; default user modifiable
  213.           [ "USAGE" whsp AttributeUsage ]; default userApplications
  214.           whsp ")"
  215.     
  216.       AttributeUsage =
  217.           "userApplications"     /
  218.           "directoryOperation"   /
  219.           "distributedOperation" / ; DSA-shared
  220.           "dSAOperation"          ; DSA-specific, value depends on server
  221.  
  222.    Servers are not required to provide the same or any text 
  223.    in the description part of the subschema values they maintain.
  224.    Servers SHOULD provide at least one of the "SUP" and "SYNTAX" fields 
  225.    for each AttributeTypeDescription.
  226.  
  227.    Servers MUST implement all the attribute types referenced in 
  228.    sections 5.1, 5.2 and 5.3.  
  229.  
  230.    Servers MAY recognize additional names and attributes not listed in 
  231.    this document, and if they do so, MUST publish the definitions of 
  232.    the types in the attributeTypes attribute of their subschema 
  233.    entries.  
  234.  
  235.    Schema developers MUST NOT create attribute definitions whose names
  236.    conflict with attributes defined for use with LDAP in existing 
  237.    standards-track RFCs.
  238.  
  239.  
  240. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 4
  241.  
  242. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  243.  
  244.    An AttributeDescription can be used as the value in a NAME part of an
  245.    AttributeTypeDescription.  Note that these are case insensitive.
  246.  
  247.    Note that the AttributeTypeDescription does not list the matching 
  248.    rules which can can be used with that attribute type in an 
  249.    extensibleMatch search filter.  This is done using the matchingRuleUse
  250.    attribute described in section 4.5.
  251.  
  252.    This document refines the schema description of X.501 by requiring 
  253.    that the syntax field in an AttributeTypeDescription be a string
  254.    representation of an OBJECT IDENTIFIER for the LDAP string syntax
  255.    definition, and an optional indication of the maximum length of
  256.    a value of this attribute (defined in section 4.3.2).
  257.  
  258. 4.3. Syntaxes
  259.  
  260.    This section defines general requirements for LDAP attribute value
  261.    syntax encodings. All documents defining attribute syntax encodings 
  262.    for use with LDAP are expected to conform to these requirements.
  263.  
  264.    The encoding rules defined for a given attribute syntax must produce
  265.    octet strings.  To the greatest extent possible, encoded octet
  266.    strings should be usable in their native encoded form for display
  267.    purposes. In particular, encoding rules for attribute syntaxes
  268.    defining non-binary values should produce strings that can be
  269.    displayed with little or no translation by clients implementing 
  270.    LDAP.  There are a few cases (e.g. audio) however, when it is not 
  271.    sensible to produce a printable representation, and clients MUST NOT 
  272.    assume that an unrecognized syntax is a string representation.
  273.  
  274.    In encodings where an arbitrary string, not a Distinguished Name, is 
  275.    used as part of a larger production, and other than as part of a 
  276.    Distinguished Name, a backslash quoting mechanism is used to escape
  277.    the following separator symbol character (such as "'", "$" or "#") if 
  278.    it should occur in that string.  The backslash is followed by a pair 
  279.    of hexadecimal digits representing the next character.  A backslash 
  280.    itself in the string which forms part of a larger syntax is always 
  281.    transmitted as '\5C' or '\5c'. An example is given in section 6.27.
  282.  
  283.    Syntaxes are also defined for matching rules whose assertion value 
  284.    syntax is different from the attribute value syntax.
  285.  
  286. 4.3.1  Binary Transfer of Values
  287.  
  288.    This encoding format is used if the binary encoding is requested by 
  289.    the client for an attribute, or if the attribute syntax name is 
  290.    "1.3.6.1.4.1.1466.115.121.1.5".  The contents of the LDAP AttributeValue
  291.    or AssertionValue field is a BER-encoded instance of the attribute
  292.    value or a matching rule assertion value ASN.1 data type as defined for 
  293.    use with X.500. (The first byte inside the OCTET STRING wrapper is a tag
  294.    octet.  However, the OCTET STRING is still encoded in primitive
  295.    form.)
  296.  
  297.  
  298.  
  299.  
  300. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 5
  301.  
  302. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  303.  
  304.    All servers MUST implement this form for both generating attribute 
  305.    values in search responses, and parsing attribute values in add, 
  306.    compare and modify requests, if the attribute type is recognized and 
  307.    the attribute syntax name is that of Binary.  Clients which request 
  308.    that all attributes be returned from entries MUST be prepared 
  309.    to receive values in binary (e.g. userCertificate;binary), and SHOULD 
  310.    NOT simply display binary or unrecognized values to users.
  311.  
  312. 4.3.2. Syntax Object Identifiers
  313.  
  314.    Syntaxes for use with LDAP are named by OBJECT IDENTIFIERs, which
  315.    are dotted-decimal strings.  These are not intended to be displayed 
  316.    to users.
  317.  
  318.    noidlen = numericoid [ "{" len "}" ]
  319.  
  320.    len     = numericstring
  321.  
  322.    The following table lists some of the syntaxes that have been defined 
  323.    for LDAP thus far.  The H-R column suggests whether a value in that 
  324.    syntax would likely be a human readable string.  Clients and servers 
  325.    need not implement all the syntaxes listed here, and MAY implement 
  326.    other syntaxes.
  327.  
  328.    Other documents may define additional syntaxes.  However, the 
  329.    definition of additional arbitrary syntaxes is strongly deprecated
  330.    since it will hinder interoperability: today's client and server
  331.    implementations generally do not have the ability to dynamically
  332.    recognize new syntaxes.  In most cases attributes will be defined 
  333.    with the syntax for directory strings.
  334.  
  335.    Value being represented        H-R OBJECT IDENTIFIER
  336.    =================================================================
  337.    ACI Item                        N  1.3.6.1.4.1.1466.115.121.1.1
  338.    Access Point                    Y  1.3.6.1.4.1.1466.115.121.1.2
  339.    Attribute Type Description      Y  1.3.6.1.4.1.1466.115.121.1.3
  340.    Audio                           N  1.3.6.1.4.1.1466.115.121.1.4
  341.    Binary                          N  1.3.6.1.4.1.1466.115.121.1.5
  342.    Bit String                      Y  1.3.6.1.4.1.1466.115.121.1.6
  343.    Boolean                         Y  1.3.6.1.4.1.1466.115.121.1.7
  344.    Certificate                     N  1.3.6.1.4.1.1466.115.121.1.8
  345.    Certificate List                N  1.3.6.1.4.1.1466.115.121.1.9
  346.    Certificate Pair                N  1.3.6.1.4.1.1466.115.121.1.10
  347.    Country String                  Y  1.3.6.1.4.1.1466.115.121.1.11
  348.    DN                              Y  1.3.6.1.4.1.1466.115.121.1.12
  349.    Data Quality Syntax             Y  1.3.6.1.4.1.1466.115.121.1.13
  350.    Delivery Method                 Y  1.3.6.1.4.1.1466.115.121.1.14
  351.    Directory String                Y  1.3.6.1.4.1.1466.115.121.1.15
  352.    DIT Content Rule Description    Y  1.3.6.1.4.1.1466.115.121.1.16
  353.    DIT Structure Rule Description  Y  1.3.6.1.4.1.1466.115.121.1.17
  354.    DL Submit Permission            Y  1.3.6.1.4.1.1466.115.121.1.18
  355.    DSA Quality Syntax              Y  1.3.6.1.4.1.1466.115.121.1.19
  356.    DSE Type                        Y  1.3.6.1.4.1.1466.115.121.1.20
  357.    Enhanced Guide                  Y  1.3.6.1.4.1.1466.115.121.1.21
  358.    Facsimile Telephone Number      Y  1.3.6.1.4.1.1466.115.121.1.22
  359.  
  360. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 6
  361.  
  362. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  363.  
  364.    Fax                             N  1.3.6.1.4.1.1466.115.121.1.23
  365.    Generalized Time                Y  1.3.6.1.4.1.1466.115.121.1.24
  366.    Guide                           Y  1.3.6.1.4.1.1466.115.121.1.25
  367.    IA5 String                      Y  1.3.6.1.4.1.1466.115.121.1.26
  368.    INTEGER                         Y  1.3.6.1.4.1.1466.115.121.1.27
  369.    JPEG                            N  1.3.6.1.4.1.1466.115.121.1.28
  370.    LDAP Syntax Description         Y  1.3.6.1.4.1.1466.115.121.1.54
  371.    LDAP Schema Definition          Y  1.3.6.1.4.1.1466.115.121.1.56
  372.    LDAP Schema Description         Y  1.3.6.1.4.1.1466.115.121.1.57
  373.    Master And Shadow Access Points Y  1.3.6.1.4.1.1466.115.121.1.29
  374.    Matching Rule Description       Y  1.3.6.1.4.1.1466.115.121.1.30
  375.    Matching Rule Use Description   Y  1.3.6.1.4.1.1466.115.121.1.31
  376.    Mail Preference                 Y  1.3.6.1.4.1.1466.115.121.1.32
  377.    MHS OR Address                  Y  1.3.6.1.4.1.1466.115.121.1.33
  378.    Modify Rights                   Y  1.3.6.1.4.1.1466.115.121.1.55
  379.    Name And Optional UID           Y  1.3.6.1.4.1.1466.115.121.1.34
  380.    Name Form Description           Y  1.3.6.1.4.1.1466.115.121.1.35
  381.    Numeric String                  Y  1.3.6.1.4.1.1466.115.121.1.36
  382.    Object Class Description        Y  1.3.6.1.4.1.1466.115.121.1.37
  383.    Octet String                    Y  1.3.6.1.4.1.1466.115.121.1.40
  384.    OID                             Y  1.3.6.1.4.1.1466.115.121.1.38
  385.    Other Mailbox                   Y  1.3.6.1.4.1.1466.115.121.1.39
  386.    Postal Address                  Y  1.3.6.1.4.1.1466.115.121.1.41
  387.    Protocol Information            Y  1.3.6.1.4.1.1466.115.121.1.42
  388.    Presentation Address            Y  1.3.6.1.4.1.1466.115.121.1.43
  389.    Printable String                Y  1.3.6.1.4.1.1466.115.121.1.44
  390.    Substring Assertion             Y  1.3.6.1.4.1.1466.115.121.1.58
  391.    Subtree Specification           Y  1.3.6.1.4.1.1466.115.121.1.45
  392.    Supplier Information            Y  1.3.6.1.4.1.1466.115.121.1.46
  393.    Supplier Or Consumer            Y  1.3.6.1.4.1.1466.115.121.1.47
  394.    Supplier And Consumer           Y  1.3.6.1.4.1.1466.115.121.1.48
  395.    Supported Algorithm             N  1.3.6.1.4.1.1466.115.121.1.49
  396.    Telephone Number                Y  1.3.6.1.4.1.1466.115.121.1.50
  397.    Teletex Terminal Identifier     Y  1.3.6.1.4.1.1466.115.121.1.51
  398.    Telex Number                    Y  1.3.6.1.4.1.1466.115.121.1.52
  399.    UTC Time                        Y  1.3.6.1.4.1.1466.115.121.1.53
  400.  
  401.    A suggested minimum upper bound on the number of characters in value 
  402.    with a string-based syntax, or the number of bytes in a value for all 
  403.    other syntaxes, may be indicated by appending this bound count inside 
  404.    of curly braces following the syntax name's OBJECT IDENTIFIER in an
  405.    Attribute Type Description.  This bound is not part of the syntax name
  406.    itself.  For instance, "1.3.6.4.1.1466.0{64}" suggests that server 
  407.    implementations should allow a string to be 64 characters long, 
  408.    although they may allow longer strings.  Note that a single character 
  409.    of the Directory String syntax may be encoded in more than one byte 
  410.    since UTF-8 is a variable-length encoding.
  411.  
  412. 4.3.3. Syntax Description
  413.  
  414.    The following BNF may be used to associate a short description with
  415.    a syntax OBJECT IDENTIFIER. Implementors should note that future 
  416.    versions of this document may expand this definition to include 
  417.    additional terms.  Terms whose identifier begins with "X-" are 
  418.    reserved for private experiments, and MUST be followed by a <qdstrings>.
  419.  
  420. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 7
  421.  
  422. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  423.  
  424.       SyntaxDescription = "(" whsp
  425.           numericoid whsp
  426.           [ "DESC" qdstring ]
  427.           whsp ")"
  428.  
  429. 4.4. Object Classes
  430.  
  431.    The format for representation of object classes is defined in X.501 
  432.    [3]. In general every entry will contain an abstract class ("top" or 
  433.    "alias"), at least one structural object class, and zero or more 
  434.    auxiliary object classes.  Whether an object class is abstract,
  435.    structural or auxiliary is defined when the object class identifier 
  436.    is assigned.  An object class definition should not be changed 
  437.    without having a new identifier assigned to it.
  438.    
  439.    Object class descriptions are written according to the following BNF.
  440.    Implementors should note that future versions of this document may 
  441.    expand this definition to include additional terms.  Terms whose
  442.    identifier begins with "X-" are reserved for private experiments,
  443.    and MUST be followed by a <qdstrings> encoding.
  444.  
  445.       ObjectClassDescription = "(" whsp
  446.           numericoid whsp      ; ObjectClass identifier
  447.           [ "NAME" qdescrs ]
  448.           [ "DESC" qdstring ]
  449.           [ "OBSOLETE" whsp ]
  450.           [ "SUP" oids ]       ; Superior ObjectClasses
  451.           [ ( "ABSTRACT" / "STRUCTURAL" / "AUXILIARY" ) whsp ]
  452.                                ; default structural
  453.           [ "MUST" oids ]      ; AttributeTypes
  454.           [ "MAY" oids ]       ; AttributeTypes
  455.       whsp ")"
  456.  
  457.    These are described as sample values for the subschema 
  458.    "objectClasses" attribute for a server which implements the LDAP 
  459.    schema. While lines have been folded for readability, the values 
  460.    transferred in protocol would not contain newlines.
  461.  
  462.    Servers SHOULD implement all the object classes referenced in 
  463.    section 7, except for extensibleObject, which is optional. Servers MAY 
  464.    implement additional object classes not listed in this document, and 
  465.    if they do so, MUST publish the definitions of the classes in the 
  466.    objectClasses attribute of their subschema entries.   
  467.  
  468.    Schema developers MUST NOT create object class definitions whose 
  469.    names conflict with attributes defined for use with LDAP in existing 
  470.    standards-track RFCs.
  471.  
  472. 4.5. Matching Rules
  473.  
  474.    Matching rules are used by servers to compare attribute values 
  475.    against assertion values when performing Search and Compare 
  476.    operations.  They are also used to identify the value to be added 
  477.    or deleted when modifying entries, and are used when comparing a 
  478.    purported distinguished name with the name of an entry.
  479.  
  480. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 8
  481.  
  482. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  483.   
  484.    Most of the attributes given in this document will have an equality 
  485.    matching rule defined.
  486.  
  487.    Matching rule descriptions are written according to the following 
  488.    BNF.  Implementors should note that future versions of this document 
  489.    may have expanded this BNF to include additional terms.  Terms whose 
  490.    identifier begins with "X-" are reserved for private experiments, and
  491.    MUST be followed by a <qdstrings> encoding.
  492.  
  493.       MatchingRuleDescription = "(" whsp
  494.           numericoid whsp  ; MatchingRule identifier
  495.           [ "NAME" qdescrs ]
  496.           [ "DESC" qdstring ]
  497.           [ "OBSOLETE" whsp ]
  498.           "SYNTAX" numericoid 
  499.       whsp ")"
  500.  
  501.    Values of the matchingRuleUse list the attributes which are suitable
  502.    for use with an extensible matching rule.
  503.  
  504.       MatchingRuleUseDescription = "(" whsp
  505.           numericoid whsp  ; MatchingRule identifier
  506.           [ "NAME" qdescrs ]
  507.           [ "DESC" qdstring ]
  508.           [ "OBSOLETE" ]
  509.          "APPLIES" oids    ; AttributeType identifiers
  510.       whsp ")"
  511.  
  512.    Servers which support matching rules and the extensibleMatch SHOULD 
  513.    implement all the matching rules in section 8.
  514.  
  515.    Servers MAY implement additional matching rules not listed in this 
  516.    document, and if they do so, MUST publish the definitions of the 
  517.    matching rules in the matchingRules attribute of their 
  518.    subschema entries. If the server supports the extensibleMatch, then 
  519.    the server MUST publish the relationship between the matching rules
  520.    and attributes in the matchingRuleUse attribute.
  521.  
  522.    For example, a server which implements a privately-defined matching
  523.    rule for performing sound-alike matches on Directory String-valued 
  524.    attributes would include the following in the subschema entry 
  525.    (1.2.3.4.5 is an example, the OID of an actual matching rule would be 
  526.    different):
  527.  
  528.    matchingRule: ( 1.2.3.4.5 NAME 'soundAlikeMatch' 
  529.     SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
  530.  
  531.    If this matching rule could be used with the attributes 2.5.4.41 and
  532.    2.5.4.15, the following would also be present:
  533.  
  534.    matchingRuleUse: ( 1.2.3.4.5 APPLIES (2.5.4.41 $ 2.5.4.15) )
  535.  
  536.    A client could then make use of this matching rule by sending a 
  537.    search operation in which the filter is of the extensibleMatch choice,
  538.    the matchingRule field is "soundAlikeMatch", and the type field is 
  539.    "2.5.4.41" or "2.5.4.15".
  540. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 9
  541.  
  542. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  543.  
  544. 5. Attribute Types
  545.  
  546.    All LDAP server implementations MUST recognize the attribute types 
  547.    defined in this section.  
  548.  
  549.    Servers SHOULD also recognize all the attributes from section 5 of 
  550.    [12].
  551.  
  552. 5.1. Standard Operational Attributes
  553.  
  554.    Servers MUST maintain values of these attributes in accordance with 
  555.    the definitions in X.501(93).
  556.  
  557. 5.1.1. createTimestamp
  558.  
  559.    This attribute SHOULD appear in entries which were created using 
  560.    the Add operation.
  561.  
  562.     ( 2.5.18.1 NAME 'createTimestamp' EQUALITY generalizedTimeMatch
  563.       ORDERING generalizedTimeOrderingMatch 
  564.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 
  565.       SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) 
  566.  
  567. 5.1.2. modifyTimestamp
  568.  
  569.    This attribute SHOULD appear in entries which have been modified 
  570.    using the Modify operation.
  571.  
  572.     ( 2.5.18.2 NAME 'modifyTimestamp' EQUALITY generalizedTimeMatch
  573.       ORDERING generalizedTimeOrderingMatch 
  574.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 
  575.       SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) 
  576.  
  577. 5.1.3. creatorsName
  578.  
  579.    This attribute SHOULD appear in entries which were created using 
  580.    the Add operation.
  581.  
  582.     ( 2.5.18.3 NAME 'creatorsName' EQUALITY distinguishedNameMatch 
  583.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 
  584.       SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) 
  585.  
  586. 5.1.4. modifiersName
  587.  
  588.    This attribute SHOULD appear in entries which have been modified 
  589.    using the Modify operation.
  590.  
  591.     ( 2.5.18.4 NAME 'modifiersName' EQUALITY distinguishedNameMatch 
  592.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 
  593.       SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) 
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 10
  601.  
  602. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  603.  
  604. 5.1.5. subschemaSubentry
  605.  
  606.    The value of this attribute is the name of a subschema entry (or
  607.    subentry if the server is based on X.500(93)) in which the server
  608.    makes available attributes specifying the schema. 
  609.  
  610.     ( 2.5.18.10 NAME 'subschemaSubentry' 
  611.       EQUALITY distinguishedNameMatch 
  612.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 NO-USER-MODIFICATION 
  613.       SINGLE-VALUE USAGE directoryOperation )
  614.  
  615. 5.1.6. attributeTypes
  616.  
  617.    This attribute is typically located in the subschema entry.
  618.  
  619.     ( 2.5.21.5 NAME 'attributeTypes' 
  620.       EQUALITY objectIdentifierFirstComponentMatch
  621.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.3 USAGE directoryOperation ) 
  622.  
  623. 5.1.7. objectClasses
  624.  
  625.    This attribute is typically located in the subschema entry.
  626.  
  627.     ( 2.5.21.6 NAME 'objectClasses' 
  628.       EQUALITY objectIdentifierFirstComponentMatch
  629.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.37 USAGE directoryOperation ) 
  630.  
  631. 5.1.8. matchingRules
  632.  
  633.    This attribute is typically located in the subschema entry.
  634.  
  635.     ( 2.5.21.4 NAME 'matchingRules' 
  636.       EQUALITY objectIdentifierFirstComponentMatch
  637.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.30 USAGE directoryOperation ) 
  638.  
  639. 5.1.9. matchingRuleUse
  640.  
  641.    This attribute is typically located in the subschema entry.
  642.  
  643.     ( 2.5.21.8 NAME 'matchingRuleUse' 
  644.       EQUALITY objectIdentifierFirstComponentMatch
  645.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.31 USAGE directoryOperation ) 
  646.  
  647.  
  648.  
  649. 5.2. LDAP Operational Attributes
  650.  
  651.    These attributes are only present in the root DSE (see [1] and [3]).
  652.  
  653.    Servers MUST recognize these attribute names, but it is not required 
  654.    that a server provide values for these attributes, when the 
  655.    attribute corresponds to a feature which the server does not 
  656.    implement.
  657.  
  658.  
  659.  
  660. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 11
  661.  
  662. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  663.  
  664. 5.2.1. namingContexts
  665.  
  666.    The values of this attribute correspond to naming contexts which this
  667.    server masters or shadows.  If the server does not master any 
  668.    information (e.g. it is an LDAP gateway to a public X.500 directory) 
  669.    this attribute will be absent.  If the server believes it contains 
  670.    the entire directory, the attribute will have a single value, and 
  671.    that value will be the empty string (indicating the null DN of the 
  672.    root). This attribute will allow a client to choose suitable base 
  673.    objects for searching when it has contacted a server.
  674.  
  675.     ( 1.3.6.1.4.1.1466.101.120.5 NAME 'namingContexts'
  676.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE dSAOperation )
  677.  
  678. 5.2.2. altServer
  679.  
  680.    The values of this attribute are URLs of other servers which may be 
  681.    contacted when this server becomes unavailable.  If the server does 
  682.    not know of any other servers which could be used this attribute 
  683.    will be absent. Clients may cache this information in case their 
  684.    preferred LDAP server later becomes unavailable.
  685.  
  686.     ( 1.3.6.1.4.1.1466.101.120.6 NAME 'altServer'
  687.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE dSAOperation )
  688.  
  689. 5.2.3. supportedExtension
  690.  
  691.    The values of this attribute are OBJECT IDENTIFIERs identifying the 
  692.    supported extended operations which the server supports.   
  693.  
  694.    If the server does not support any extensions this attribute will be 
  695.    absent.
  696.  
  697.     ( 1.3.6.1.4.1.1466.101.120.7 NAME 'supportedExtension'
  698.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation )
  699.  
  700. 5.2.4. supportedControl
  701.  
  702.    The values of this attribute are the OBJECT IDENTIFIERs identifying 
  703.    controls which the server supports.  If the server does not 
  704.    support any controls, this attribute will be absent.
  705.  
  706.     ( 1.3.6.1.4.1.1466.101.120.13 NAME 'supportedControl'
  707.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation )
  708.  
  709. 5.2.5. supportedSASLMechanisms
  710.  
  711.    The values of this attribute are the names of supported SASL
  712.    mechanisms which the server supports.  If the server does not 
  713.    support any mechanisms this attribute will be absent.
  714.  
  715.     ( 1.3.6.1.4.1.1466.101.120.14 NAME 'supportedSASLMechanisms'
  716.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation )
  717.  
  718.  
  719.  
  720. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 12
  721.  
  722. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  723.  
  724. 5.2.6. supportedLDAPVersion
  725.  
  726.    The values of this attribute are the versions of the LDAP protocol 
  727.    which the server implements.
  728.  
  729.     ( 1.3.6.1.4.1.1466.101.120.15 NAME 'supportedLDAPVersion'
  730.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 USAGE dSAOperation )
  731.  
  732. 5.3. LDAP Subschema Attribute
  733.  
  734.    This attribute is typically located in the subschema entry.
  735.  
  736. 5.3.1. ldapSyntaxes
  737.  
  738.    Servers MAY use this attribute to list the syntaxes which are 
  739.    implemented.  Each value corresponds to one syntax. 
  740.  
  741.     ( 1.3.6.1.4.1.1466.101.120.16 NAME 'ldapSyntaxes'
  742.       EQUALITY objectIdentifierFirstComponentMatch
  743.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.54 USAGE directoryOperation )
  744.  
  745. 5.4. X.500 Subschema attributes
  746.  
  747.    These attributes are located in the subschema entry.  All servers 
  748.    SHOULD recognize their name, although typically only X.500 servers
  749.    will implement their functionality.
  750.  
  751. 5.4.1. dITStructureRules
  752.  
  753.     ( 2.5.21.1 NAME 'dITStructureRules' EQUALITY integerFirstComponentMatch
  754.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.17 USAGE directoryOperation ) 
  755.  
  756. 5.4.2. nameForms
  757.  
  758.     ( 2.5.21.7 NAME 'nameForms' 
  759.       EQUALITY objectIdentifierFirstComponentMatch
  760.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.35 USAGE directoryOperation ) 
  761.  
  762. 5.4.3. ditContentRules
  763.  
  764.     ( 2.5.21.2 NAME 'dITContentRules' 
  765.       EQUALITY objectIdentifierFirstComponentMatch 
  766.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.16 USAGE directoryOperation ) 
  767.  
  768. 6. Syntaxes
  769.  
  770.    Servers SHOULD recognize all the syntaxes described in this section. 
  771.  
  772. 6.1. Attribute Type Description
  773.  
  774.    ( 1.3.6.1.4.1.1466.115.121.1.3 DESC 'Attribute Type Description' )
  775.  
  776.    Values in this syntax are encoded according to the BNF given at the
  777.    start of section 4.2. For example,
  778.  
  779.  
  780. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 13
  781.  
  782. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  783.  
  784.         ( 2.5.4.0 NAME 'objectClass' 
  785.           SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
  786.  
  787. 6.2. Binary
  788.  
  789.    ( 1.3.6.1.4.1.1466.115.121.1.5 DESC 'Binary' )
  790.  
  791.    Values in this syntax are encoded as described in section 4.3.1.
  792.  
  793. 6.3. Bit String
  794.  
  795.    ( 1.3.6.1.4.1.1466.115.121.1.6 DESC 'Bit String' )
  796.  
  797.    Values in this syntax are encoded according to the following BNF:
  798.  
  799.       bitstring = "'" *binary-digit "'B"
  800.  
  801.       binary-digit = "0" / "1"
  802.  
  803.    Example:
  804.   
  805.         '0101111101'B
  806.  
  807. 6.4. Boolean
  808.  
  809.    ( 1.3.6.1.4.1.1466.115.121.1.7 DESC 'Boolean' )
  810.  
  811.    Values in this syntax are encoded according to the following BNF:
  812.  
  813.       boolean = "TRUE" / "FALSE"
  814.  
  815.    Boolean values have an encoding of "TRUE" if they are logically true,
  816.    and have an encoding of "FALSE" otherwise.
  817.  
  818. 6.5. Certificate
  819.  
  820.    ( 1.3.6.1.4.1.1466.115.121.1.8 DESC 'Certificate' )
  821.  
  822.    Because of the changes from X.509(1988) and X.509(1993) and 
  823.    additional changes to the ASN.1 definition to support certificate 
  824.    extensions, no string representation is defined, and values in
  825.    this syntax MUST only be transferred using the binary encoding, by 
  826.    requesting or returning the attributes with descriptions 
  827.    "userCertificate;binary" or "caCertificate;binary".  The BNF notation 
  828.    in RFC 1778 for "User Certificate" is not recommended to be used.
  829.  
  830. 6.6. Certificate List
  831.  
  832.    ( 1.3.6.1.4.1.1466.115.121.1.9 DESC 'Certificate List' )
  833.  
  834.    Because of the incompatibility of the X.509(1988) and X.509(1993) 
  835.    definitions of revocation lists, values in this syntax MUST only be 
  836.    transferred using a binary encoding, by requesting or returning the 
  837.    attributes with descriptions "certificateRevocationList;binary" or 
  838.    "authorityRevocationList;binary".  The BNF notation in RFC 1778 for 
  839.    "Authority Revocation List" is not recommended to be used.
  840. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 14
  841.  
  842. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  843.  
  844. 6.7. Certificate Pair
  845.  
  846.    ( 1.3.6.1.4.1.1466.115.121.1.10 DESC 'Certificate Pair' )
  847.  
  848.    Because the Certificate is being carried in binary, values in this 
  849.    syntax MUST only be transferred using a binary encoding, by requesting 
  850.    or returning the attribute description "crossCertificatePair;binary". 
  851.    The BNF notation in RFC 1778 for "Certificate Pair" is not 
  852.    recommended to be used.
  853.  
  854. 6.8. Country String
  855.  
  856.    ( 1.3.6.1.4.1.1466.115.121.1.11 DESC 'Country String' )
  857.  
  858.    A value in this syntax is encoded the same as a value of
  859.    Directory String syntax.  Note that this syntax is limited to values
  860.    of exactly two printable string characters, as listed in ISO 3166 [14].
  861.  
  862.       CountryString  = p p
  863.  
  864.    Example:
  865.       US
  866.  
  867. 6.9. DN
  868.  
  869.    ( 1.3.6.1.4.1.1466.115.121.1.12 DESC 'DN' )
  870.  
  871.    Values in the Distinguished Name syntax are encoded to have the
  872.    representation defined in [5].  Note that this representation is not 
  873.    reversible to an ASN.1 encoding used in X.500 for Distinguished 
  874.    Names, as the CHOICE of any DirectoryString element in an RDN is no 
  875.    longer known.
  876.  
  877.    Examples (from [5]):
  878.       CN=Steve Kille,O=Isode Limited,C=GB
  879.       OU=Sales+CN=J. Smith,O=Widget Inc.,C=US
  880.       CN=L. Eagle,O=Sue\, Grabbit and Runn,C=GB
  881.       CN=Before\0DAfter,O=Test,C=GB
  882.       1.3.6.1.4.1.1466.0=#04024869,O=Test,C=GB
  883.       SN=Lu\C4\8Di\C4\87
  884.  
  885. 6.10. Directory String
  886.  
  887.    ( 1.3.6.1.4.1.1466.115.121.1.15 DESC 'Directory String' )
  888.  
  889.    A string in this syntax is encoded in the UTF-8 form of ISO 10646 
  890.    (a superset of Unicode).  Servers and clients MUST be prepared to 
  891.    receive encodings of arbitrary Unicode characters, including 
  892.    characters not presently assigned to any character set.
  893.  
  894.    For characters in the PrintableString form, the value is encoded as 
  895.    the string value itself.
  896.  
  897.    If it is of the TeletexString form, then the characters are 
  898.    transliterated to their equivalents in UniversalString, and encoded 
  899.    in UTF-8 [9].
  900. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 15
  901.  
  902. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  903.  
  904.    If it is of the UniversalString or BMPString forms [10], UTF-8 is 
  905.    used to encode them. 
  906.  
  907.    Note: the form of DirectoryString is not indicated in protocol 
  908.    unless the attribute value is carried in binary.  Servers which 
  909.    convert to DAP MUST choose an appropriate form.  Servers MUST NOT 
  910.    reject values merely because they contain legal Unicode characters 
  911.    outside of the range of printable ASCII.
  912.  
  913.    Example:
  914.  
  915.       This is a string of DirectoryString containing #!%#@
  916.  
  917. 6.11. DIT Content Rule Description
  918.  
  919.    ( 1.3.6.1.4.1.1466.115.121.1.16 DESC 'DIT Content Rule Description' )
  920.  
  921.    Values in this syntax are encoded according to the following BNF.
  922.    Implementors should note that future versions of this document 
  923.    may have expanded this BNF to include additional terms.
  924.  
  925.       DITContentRuleDescription = "("
  926.           numericoid   ; Structural ObjectClass identifier
  927.           [ "NAME" qdescrs ]
  928.           [ "DESC" qdstring ]
  929.           [ "OBSOLETE" ]
  930.           [ "AUX" oids ]    ; Auxiliary ObjectClasses
  931.           [ "MUST" oids ]   ; AttributeType identifiers
  932.           [ "MAY" oids ]    ; AttributeType identifiers
  933.           [ "NOT" oids ]    ; AttributeType identifiers
  934.          ")"
  935.  
  936. 6.12. Facsimile Telephone Number
  937.  
  938.    ( 1.3.6.1.4.1.1466.115.121.1.22 DESC 'Facsimile Telephone Number' )
  939.  
  940.    Values in this syntax are encoded according to the following BNF:
  941.  
  942.       fax-number    = printablestring [ "$" faxparameters ]
  943.  
  944.       faxparameters = faxparm / ( faxparm "$" faxparameters )
  945.  
  946.       faxparm = "twoDimensional" / "fineResolution" / 
  947.                 "unlimitedLength" /
  948.                 "b4Length" / "a3Width" / "b4Width" / "uncompressed"
  949.  
  950.    In the above, the first printablestring is the telephone number,
  951.    based on E.123 [15], and the faxparm tokens represent fax parameters.
  952.  
  953. 6.13. Fax
  954.  
  955.    ( 1.3.6.1.4.1.1466.115.121.1.23 DESC 'Fax' )
  956.  
  957.    Values in this syntax are encoded as if they were octet strings
  958.    containing Group 3 Fax images as defined in [7].
  959.  
  960. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 16
  961.  
  962. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  963.  
  964. 6.14. Generalized Time
  965.  
  966.    ( 1.3.6.1.4.1.1466.115.121.1.24 DESC 'Generalized Time' )
  967.  
  968.    Values in this syntax are encoded as printable strings, represented 
  969.    as specified in X.208.  Note that the time zone must be specified.
  970.    It is strongly recommended that GMT time be used.  For example,
  971.  
  972.                 199412161032Z
  973.  
  974. 6.15. IA5 String
  975.  
  976.    ( 1.3.6.1.4.1.1466.115.121.1.26 DESC 'IA5 String' )
  977.  
  978.    The encoding of a value in this syntax is the string value itself.
  979.  
  980. 6.16. INTEGER
  981.  
  982.    ( 1.3.6.1.4.1.1466.115.121.1.27 DESC 'INTEGER' )
  983.  
  984.    Values in this syntax are encoded as the decimal representation 
  985.    of their values, with each decimal digit represented by the its 
  986.    character equivalent. So the number 1321 is represented by the 
  987.    character string "1321".
  988.  
  989. 6.17. JPEG
  990.  
  991.    ( 1.3.6.1.4.1.1466.115.121.1.28 DESC 'JPEG' )
  992.  
  993.    Values in this syntax are encoded as strings containing JPEG images in 
  994.    the JPEG File Interchange Format (JFIF), as described in [8].
  995.  
  996. 6.18. Matching Rule Description
  997.  
  998.    ( 1.3.6.1.4.1.1466.115.121.1.30 DESC 'Matching Rule Description' )
  999.  
  1000.    Values of type matchingRules are encoded as strings according to
  1001.    the BNF given in section 4.5. 
  1002.  
  1003. 6.19. Matching Rule Use Description
  1004.  
  1005.    ( 1.3.6.1.4.1.1466.115.121.1.31 DESC 'Matching Rule Use Description' )
  1006.  
  1007.    Values of type matchingRuleUse are encoded as strings according to
  1008.    the BNF given in section 4.5.
  1009.  
  1010. 6.20. MHS OR Address
  1011.  
  1012.    ( 1.3.6.1.4.1.1466.115.121.1.33 DESC 'MHS OR Address' )
  1013.  
  1014.    Values in this syntax are encoded as strings, according to the format 
  1015.    defined in [11].
  1016.  
  1017.  
  1018.  
  1019.  
  1020. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 17
  1021.  
  1022. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1023.  
  1024. 6.21. Name And Optional UID
  1025.  
  1026.    ( 1.3.6.1.4.1.1466.115.121.1.34 DESC 'Name And Optional UID' )
  1027.  
  1028.    Values in this syntax are encoded according to the following BNF:
  1029.  
  1030.       NameAndOptionalUID = DistinguishedName [ "#" bitstring ]
  1031.  
  1032.    Although the '#' character may occur in a string representation of a 
  1033.    distinguished name, no additional special quoting is done.  This 
  1034.    syntax has been added subsequent to RFC 1778.
  1035.  
  1036.    Example:
  1037.  
  1038.       1.3.6.1.4.1.1466.0=#04024869,O=Test,C=GB#'0101'B
  1039.  
  1040. 6.22. Name Form Description
  1041.  
  1042.    ( 1.3.6.1.4.1.1466.115.121.1.35 DESC 'Name Form Description' )
  1043.  
  1044.    Values in this syntax are encoded according to the following BNF.
  1045.    Implementors should note that future versions of this document 
  1046.    may have expanded this BNF to include additional terms.
  1047.  
  1048.       NameFormDescription = "(" whsp
  1049.           numericoid whsp  ; NameForm identifier
  1050.           [ "NAME" qdescrs ]
  1051.           [ "DESC" qdstring ]
  1052.           [ "OBSOLETE" whsp ]
  1053.           "OC" woid         ; Structural ObjectClass
  1054.           "MUST" oids       ; AttributeTypes
  1055.           [ "MAY" oids ]    ; AttributeTypes
  1056.       whsp ")"
  1057.  
  1058. 6.23. Numeric String
  1059.  
  1060.    ( 1.3.6.1.4.1.1466.115.121.1.36 DESC 'Numeric String' )
  1061.  
  1062.    The encoding of a string in this syntax is the string value itself. 
  1063.    Example:
  1064.   
  1065.       1997
  1066.  
  1067. 6.24. Object Class Description
  1068.  
  1069.    ( 1.3.6.1.4.1.1466.115.121.1.37 DESC 'Object Class Description' )
  1070.  
  1071.    Values in this syntax are encoded according to the BNF in section 4.4.
  1072.  
  1073. 6.25. OID
  1074.  
  1075.    ( 1.3.6.1.4.1.1466.115.121.1.38 DESC 'OID' )
  1076.  
  1077.    Values in the Object Identifier syntax are encoded according to 
  1078.    the BNF in section 4.1 for "oid".
  1079.  
  1080. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 18
  1081.  
  1082. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1083.  
  1084.    Example:
  1085.  
  1086.        1.2.3.4
  1087.        cn
  1088.  
  1089. 6.26. Other Mailbox
  1090.  
  1091.    ( 1.3.6.1.4.1.1466.115.121.1.39 DESC 'Other Mailbox' )
  1092.  
  1093.    Values in this syntax are encoded according to the following BNF:
  1094.  
  1095.       otherMailbox = mailbox-type "$" mailbox
  1096.  
  1097.       mailbox-type = printablestring
  1098.  
  1099.       mailbox = <an encoded IA5 String>
  1100.  
  1101.    In the above, mailbox-type represents the type of mail system in
  1102.    which the mailbox resides, for example "MCIMail"; and mailbox is 
  1103.    the actual mailbox in the mail system defined by mailbox-type.
  1104.  
  1105. 6.27. Postal Address
  1106.  
  1107.    ( 1.3.6.1.4.1.1466.115.121.1.41 DESC 'Postal Address' )
  1108.  
  1109.    Values in this syntax are encoded according to the following BNF:
  1110.  
  1111.       postal-address = dstring *( "$" dstring )
  1112.  
  1113.    In the above, each dstring component of a postal address value is
  1114.    encoded as a value of type Directory String syntax.  Backslashes and 
  1115.    dollar characters, if they occur in the component, are quoted as 
  1116.    described in section 4.3.   Many servers limit the postal address to
  1117.    six lines of up to thirty characters.
  1118.  
  1119.    Example:
  1120.  
  1121.       1234 Main St.$Anytown, CA 12345$USA
  1122.       \241,000,000 Sweepstakes$PO Box 1000000$Anytown, CA 12345$USA
  1123.  
  1124. 6.28. Presentation Address
  1125.  
  1126.    ( 1.3.6.1.4.1.1466.115.121.1.43 DESC 'Presentation Address' )
  1127.  
  1128.    Values in this syntax are encoded with the representation described
  1129.    in RFC 1278 [6].
  1130.  
  1131. 6.29. Printable String
  1132.  
  1133.    ( 1.3.6.1.4.1.1466.115.121.1.44 DESC 'Printable String' )
  1134.  
  1135.    The encoding of a value in this syntax is the string value itself.  
  1136.    PrintableString is limited to the characters in production p of 
  1137.    section 4.1.
  1138.  
  1139.  
  1140. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 19
  1141.  
  1142. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1143.  
  1144.    Example:
  1145.  
  1146.       This is a PrintableString
  1147.  
  1148. 6.30. Telephone Number
  1149.  
  1150.    ( 1.3.6.1.4.1.1466.115.121.1.50 DESC 'Telephone Number' )
  1151.  
  1152.    Values in this syntax are encoded as if they were Printable String 
  1153.    types.  Telephone numbers are recommended in X.520 to be in 
  1154.    international form, as described in E.123 [15].  
  1155.  
  1156.    Example:
  1157.  
  1158.       +1 512 305 0280
  1159.  
  1160. 6.31. UTC Time
  1161.  
  1162.    ( 1.3.6.1.4.1.1466.115.121.1.53 DESC 'UTC Time' )
  1163.  
  1164.    Values in this syntax are encoded as if they were printable
  1165.    strings with the strings containing a UTCTime value.  This is 
  1166.    historical; new attribute definitions SHOULD use GeneralizedTime 
  1167.    instead.
  1168.  
  1169. 6.32. LDAP Syntax Description
  1170.  
  1171.    ( 1.3.6.1.4.1.1466.115.121.1.54 DESC 'LDAP Syntax Description' )
  1172.  
  1173.    Values in this syntax are encoded according to the BNF in section
  1174.    4.3.3.
  1175.  
  1176. 6.33. DIT Structure Rule Description
  1177.  
  1178.    ( 1.3.6.1.4.1.1466.115.121.1.17 DESC 'DIT Structure Rule Description' )
  1179.  
  1180.    Values with this syntax are encoded according to the following BNF:
  1181.  
  1182.       DITStructureRuleDescription = "(" whsp
  1183.           ruleidentifier whsp            ; DITStructureRule identifier
  1184.           [ "NAME" qdescrs ]
  1185.           [ "DESC" qdstring ]
  1186.           [ "OBSOLETE" whsp ]
  1187.           "FORM" woid whsp               ; NameForm
  1188.           [ "SUP" ruleidentifiers whsp ] ; superior DITStructureRules
  1189.       ")"
  1190.  
  1191.       ruleidentifier = integer
  1192.    
  1193.       ruleidentifiers = ruleidentifier |
  1194.           "(" whsp ruleidentifierlist whsp ")"
  1195.  
  1196.       ruleidentifierlist = [ ruleidentifier *( ruleidentifier ) ]
  1197.  
  1198.  
  1199.  
  1200. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 20
  1201.  
  1202. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1203.  
  1204. 7. Object Classes
  1205.  
  1206.    Servers SHOULD recognize all the names of standard classes from 
  1207.    section 7 of [12].
  1208.  
  1209. 7.1. Extensible Object Class
  1210.  
  1211.    The extensibleObject object class, if present in an entry, permits 
  1212.    that entry to optionally hold any attribute.  The MAY attribute list 
  1213.    of this class is implicitly the set of all attributes.
  1214.  
  1215.     ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' 
  1216.       SUP top AUXILIARY )  
  1217.  
  1218.    The mandatory attributes of the other object classes of this entry 
  1219.    are still required to be present. 
  1220.  
  1221.    Note that not all servers will implement this object class, and those
  1222.    which do not will reject requests to add entries which contain this 
  1223.    object class, or modify an entry to add this object class.
  1224.  
  1225. 7.2. subschema
  1226.    
  1227.    This object class is used in the subschema entry.
  1228.  
  1229.     ( 2.5.20.1 NAME 'subschema' AUXILIARY 
  1230.       MAY ( dITStructureRules $ nameForms $ ditContentRules $ 
  1231.       objectClasses $ attributeTypes $ matchingRules $ 
  1232.       matchingRuleUse ) )
  1233.  
  1234.    The ldapSyntaxes operational attribute may also be present in 
  1235.    subschema entries.
  1236.  
  1237. 8. Matching Rules
  1238.  
  1239.    Servers which implement the extensibleMatch filter SHOULD allow 
  1240.    all the matching rules listed in this section to be used in the 
  1241.    extensibleMatch.  In general these servers SHOULD allow matching 
  1242.    rules to be used with all attribute types known to the server, when
  1243.    the assertion syntax of the matching rule is the same as the value 
  1244.    syntax of the attribute.
  1245.  
  1246.    Servers MAY implement additional matching rules. 
  1247.  
  1248. 8.1. Matching Rules used in Equality Filters
  1249.  
  1250.    Servers SHOULD be capable of performing the following matching rules.
  1251.  
  1252.    For all these rules, the assertion syntax is the same as the value 
  1253.    syntax.
  1254.  
  1255.     ( 2.5.13.0 NAME 'objectIdentifierMatch' 
  1256.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
  1257.  
  1258.  
  1259.  
  1260. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 21
  1261.  
  1262. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1263.  
  1264.    If the client supplies a filter using an objectIdentifierMatch whose 
  1265.    matchValue oid is in the "descr" form, and the oid is not recognized 
  1266.    by the server, then the filter is Undefined. 
  1267.  
  1268.     ( 2.5.13.1 NAME 'distinguishedNameMatch' 
  1269.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )
  1270.  
  1271.     ( 2.5.13.2 NAME 'caseIgnoreMatch' 
  1272.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
  1273.  
  1274.     ( 2.5.13.8 NAME 'numericStringMatch' 
  1275.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 )
  1276.  
  1277.     ( 2.5.13.11 NAME 'caseIgnoreListMatch' 
  1278.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )
  1279.  
  1280.     ( 2.5.13.14 NAME 'integerMatch' 
  1281.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )
  1282.  
  1283.     ( 2.5.13.16 NAME 'bitStringMatch' 
  1284.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 )
  1285.  
  1286.     ( 2.5.13.20 NAME 'telephoneNumberMatch' 
  1287.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 )
  1288.  
  1289.     ( 2.5.13.22 NAME 'presentationAddressMatch' 
  1290.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.43 )
  1291.  
  1292.     ( 2.5.13.23 NAME 'uniqueMemberMatch' 
  1293.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 )
  1294.  
  1295.     ( 2.5.13.24 NAME 'protocolInformationMatch'
  1296.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 )
  1297.  
  1298.     ( 2.5.13.27 NAME 'generalizedTimeMatch' 
  1299.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )
  1300.  
  1301.     ( 1.3.6.1.4.1.1466.109.114.1 NAME 'caseExactIA5Match' 
  1302.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
  1303.  
  1304.     ( 1.3.6.1.4.1.1466.109.114.2 NAME 'caseIgnoreIA5Match' 
  1305.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
  1306.  
  1307.    When performing the caseIgnoreMatch, caseIgnoreListMatch, 
  1308.    telephoneNumberMatch, caseExactIA5Match and caseIgnoreIA5Match,
  1309.    multiple adjoining whitespace characters are treated the same as an 
  1310.    individual space, and leading and trailing whitespace is ignored.
  1311.  
  1312.    Clients MUST NOT assume that servers are capable of transliteration
  1313.    of Unicode values.
  1314.  
  1315. 8.2. Matching Rules used in Inequality Filters
  1316.  
  1317.    Servers SHOULD be capable of performing the following matching rules,
  1318.    which are used in greaterOrEqual and lessOrEqual filters.
  1319.  
  1320. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 22
  1321.  
  1322. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1323.  
  1324.     ( 2.5.13.28 NAME 'generalizedTimeOrderingMatch'
  1325.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )
  1326.  
  1327.     ( 2.5.13.3 NAME 'caseIgnoreOrderingMatch' 
  1328.       SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
  1329.  
  1330.    The sort ordering for a caseIgnoreOrderingMatch is
  1331.    implementation-dependent.
  1332.  
  1333. 8.3. Syntax and Matching Rules used in Substring Filters
  1334.  
  1335.    The Substring Assertion syntax is used only as the syntax of assertion 
  1336.    values in the extensible match.  It is not used as the syntax of 
  1337.    attributes, or in the substring filter.
  1338.  
  1339.    ( 1.3.6.1.4.1.1466.115.121.1.58 DESC 'Substring Assertion' )
  1340.  
  1341.    The Substring Assertion is encoded according to the following BNF:
  1342.  
  1343.       substring = [initial] any [final]
  1344.       initial = value
  1345.       any = "*" *(value "*")
  1346.       final = value
  1347.    
  1348.    The <value> production is UTF-8 encoded string.  Should the backslash
  1349.    or asterix characters be present in a production of <value>, they are
  1350.    quoted as described in section 4.3.
  1351.  
  1352.    Servers SHOULD be capable of performing the following matching rules,
  1353.    which are used in substring filters.
  1354.  
  1355.    ( 2.5.13.4 NAME 'caseIgnoreSubstringsMatch' 
  1356.     SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )
  1357.  
  1358.    ( 2.5.13.21 NAME 'telephoneNumberSubstringsMatch'
  1359.     SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )
  1360.  
  1361.    ( 2.5.13.10 NAME 'numericStringSubstringsMatch' 
  1362.     SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )
  1363.  
  1364. 8.4. Matching Rules for Subschema Attributes
  1365.  
  1366.    Servers which allow subschema entries to be modified by clients MUST 
  1367.    support the following matching rules, as they are the equality matching
  1368.    rules for several of the subschema attributes. 
  1369.  
  1370.    ( 2.5.13.29 NAME 'integerFirstComponentMatch'
  1371.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )
  1372.  
  1373.    ( 2.5.13.30 NAME 'objectIdentifierFirstComponentMatch'
  1374.      SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
  1375.  
  1376.    Implementors should note that the assertion syntax of these matching 
  1377.    rules, an INTEGER or OID, is different from the value syntax of 
  1378.    attributes for which this is the equality matching rule.
  1379.  
  1380. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 23
  1381.  
  1382. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1383.  
  1384.    If the client supplies an extensible filter using an 
  1385.    objectIdentifierFirstComponentMatch whose matchValue is in the 
  1386.    "descr" form, and the OID is not recognized by the server, then the 
  1387.    filter is Undefined. 
  1388.  
  1389. 9. Security Considerations
  1390.  
  1391. 9.1. Disclosure
  1392.  
  1393.    Attributes of directory entries are used to provide descriptive 
  1394.    information about the real-world objects they represent, which can
  1395.    be people, organizations or devices.  Most countries have privacy
  1396.    laws regarding the publication of information about people.
  1397.  
  1398. 9.2. Use of Attribute Values in Security Applications
  1399.  
  1400.    The transformations of an AttributeValue value from its X.501 form to
  1401.    an LDAP string representation are not always reversible back to the 
  1402.    same BER or DER form.  An example of a situation which requires the 
  1403.    DER form of a distinguished name is the verification of an X.509 
  1404.    certificate.
  1405.  
  1406.    For example, a distinguished name consisting of one RDN with one AVA,
  1407.    in which the type is commonName and the value is of the TeletexString 
  1408.    choice with the letters 'Sam' would be represented in LDAP as the
  1409.    string CN=Sam.  Another distinguished name in which the value is 
  1410.    still 'Sam' but of the PrintableString choice would have the same 
  1411.    representation CN=Sam.
  1412.  
  1413.    Applications which require the reconstruction of the DER form of the 
  1414.    value SHOULD NOT use the string representation of attribute syntaxes
  1415.    when converting a value to LDAP format.  Instead it SHOULD use the 
  1416.    Binary syntax.  
  1417.  
  1418. 10. Acknowledgements
  1419.  
  1420.    This document is based substantially on RFC 1778, written by Tim 
  1421.    Howes, Steve Kille, Wengyik Yeong and Colin Robbins.
  1422.  
  1423.    Many of the attribute syntax encodings defined in this and 
  1424.    related documents are adapted from those used in the QUIPU and the 
  1425.    IC R3 X.500 implementations. The contributions of the authors of both 
  1426.    these implementations in the specification of syntaxes are gratefully 
  1427.    acknowledged.
  1428.  
  1429. 11. Authors Addresses
  1430.  
  1431.        Mark Wahl
  1432.        Critical Angle Inc.
  1433.        4815 West Braker Lane #502-385
  1434.        Austin, TX 78759
  1435.        USA
  1436.  
  1437.        Phone:  +1 512 372-3160
  1438.        EMail:  M.Wahl@critical-angle.com
  1439.  
  1440. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 24
  1441.  
  1442. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1443.  
  1444.        Andy Coulbeck
  1445.        Isode Inc.
  1446.        9390 Research Blvd Suite 305
  1447.        Austin, TX 78759 
  1448.        USA
  1449.  
  1450.        Phone:  +1 512 231-8993
  1451.        EMail:  A.Coulbeck@isode.com
  1452.  
  1453.        Tim Howes
  1454.        Netscape Communications Corp.
  1455.        501 E. Middlefield Rd, MS MV068
  1456.        Mountain View, CA 94043
  1457.        USA
  1458.        
  1459.        Phone:  +1 650 937-3419
  1460.        EMail:   howes@netscape.com
  1461.  
  1462.        Steve Kille
  1463.        Isode Limited
  1464.        The Dome, The Square
  1465.        Richmond
  1466.        TW9 1DT
  1467.        UK
  1468.  
  1469.        Phone:  +44-181-332-9091
  1470.        EMail:  S.Kille@isode.com
  1471.  
  1472. 12. Bibliography
  1473.  
  1474.    [1] M. Wahl, T. Howes, S. Kille, "Lightweight Directory Access 
  1475.        Protocol (Version 3)", INTERNET-DRAFT 
  1476.        <draft-ietf-asid-ldapv3-protocol-08.txt>, Oct. 1997.
  1477.  
  1478.    [2] The Directory: Selected Attribute Types.  ITU-T Recommendation 
  1479.        X.520, 1993.
  1480.  
  1481.    [3] The Directory: Models. ITU-T Recommendation X.501, 1993.
  1482.  
  1483.    [4] S. Bradner, "Key words for use in RFCs to Indicate Requirement 
  1484.        Levels", RFC 2119.
  1485.    
  1486.    [5] M. Wahl, S. Kille, "A UTF-8 String Representation of 
  1487.        Distinguished Names", INTERNET-DRAFT 
  1488.        <draft-ietf-asid-ldapv3-dn-03.txt>, April 1997.
  1489.  
  1490.    [6] S. Kille, "A String Representation for Presentation Addresses",
  1491.        RFC 1278, University College London, November 1991.
  1492.  
  1493.    [7] Terminal Equipment and Protocols for Telematic Services -
  1494.        Standardization of Group 3 facsimile apparatus for document
  1495.        transmission.  CCITT, Recommendation T.4.
  1496.  
  1497.    [8] JPEG File Interchange Format (Version 1.02).  Eric Hamilton, 
  1498.        C-Cube Microsystems, Milpitas, CA, September 1, 1992.
  1499.  
  1500. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 25
  1501.  
  1502. INTERNET-DRAFT    draft-ietf-asid-ldapv3-attributes-08.txt     Oct. 1997
  1503.  
  1504.    [9] F. Yergeau, "UTF-8, a transformation format of Unicode and ISO 
  1505.        10646", RFC 2044, October 1996.
  1506.  
  1507.    [10] Universal Multiple-Octet Coded Character Set (UCS) - 
  1508.         Architecture and Basic Multilingual Plane, ISO/IEC 10646-1 : 
  1509.         1993 (With amendments).
  1510.  
  1511.    [11] S. Hardcastle-Kille, "Mapping between X.400(1988) / ISO 10021 
  1512.         and RFC 822", RFC 1327, May 1992.
  1513.  
  1514.    [12] M. Wahl, "X.500(96) User Schema for use with LDAP", 
  1515.         INTERNET-DRAFT <draft-ietf-asid-ldapv3schema-x500-03.txt>,
  1516.         Oct. 1997.
  1517.  
  1518.    [13] D. Crocker, "Standard of the Format of ARPA-Internet Text
  1519.         Messages", STD 11, RFC 822, August 1982.
  1520.  
  1521.    [14] ISO 3166, "Codes for the representation of names of countries".
  1522.  
  1523.    [15] ITU-T Rec. E.123, Notation for national and international 
  1524.         telephone numbers, 1988.
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535.  
  1536.  
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558.  
  1559. <draft-ietf-asid-ldapv3-attributes-08.txt> Expires: April 1998
  1560. Wahl,Coulbeck,Howes,Kille   LDAPv3 Attribute Syntax Defns.       Page 26
  1561.