schema.txt 606 B

123456789101112131415
  1. dn: cn=schema
  2. objectClass: top
  3. objectClass: ldapSubentry
  4. objectClass: subschema
  5. # Single-valued JSON attribute
  6. attributeTypes: ( example-json1-oid NAME 'json1'
  7. EQUALITY jsonObjectExactMatch SYNTAX 1.3.6.1.4.1.30221.2.3.4
  8. SINGLE-VALUE X-ORIGIN 'custom attribute' )
  9. # Multi-valued JSON attribute
  10. attributeTypes: ( example-mjson1-oid NAME 'mjson1'
  11. EQUALITY jsonObjectExactMatch SYNTAX 1.3.6.1.4.1.30221.2.3.4
  12. X-ORIGIN 'custom attribute' )
  13. objectClasses: ( example-application-oc-oid NAME 'example-application-oc'
  14. SUP top AUXILIARY MAY ( json1 $ mjson1 )
  15. X-ORIGIN 'custom auxiliary object class' )