This procedure writes an object attribute of type date.
Syntax
APEX_JSON.WRITE (
    p_name         IN VARCHAR2,
    p_value        IN DATE,
    p_format       IN VARCHAR2 DEFAULT c_date_iso8691,
    p_write_null   IN BOOLEAN  DEFAULT FALSE );
Parameters
Table 15-47 WRITE Procedure Parameters
| Parameter | Description | 
|---|---|
| 
 | The attribute name. | 
| 
 | The attribute value to be written. | 
| 
 | The date format mask (default  | 
| 
 | If true, write NULLvalues. If false (the default), do not writeNULL. | 
Example
See example for "WRITE Procedure Signature 8".