Theiscontrol may be included in response to an add, modify, or modify DN request that included the post-read request control, and it includes content from the target entry as it appeared with the changes applied. The control has an OID of 1.3.6.1.1.13.2, and it takes a value. The contents of the value-json object will essentially be the same as the representation of an entry in the Directory REST API, with the notable exception that all attribute values will be included in an array (even if the associated attribute type is declared single-valued in the server schema). The “_dn” field will hold the DN of the entry, and all remaining fields will represent attributes from that entry.

The following represents an example JSON encoding for the control:

{ "oid":"1.3.6.1.1.13.2",
  "control-name":"Post-Read Response Control",
  "criticality":false,
  "value-json":{ "_dn":"uid=jdoe,ou=People,dc=example,dc=com",
                 "uid":[ "jdoe" ],
                 "givenName":[ "John" ],
                 "sn":[ "Doe" ],
                 "cn":[ "John Doe" ],
                 "mail":[ "jdoe@example.com" ] } }