Properties
| NAME | TYPE | DESCRIPTION | 
key  |  string  |  Attribute Key.  | 
type  |  string  |  Attribute type.  | 
status  |  string  |  Attribute status. Possible values:   | 
error  |  string  |  Error message. Displays error generated on failure of creating or deleting an attribute.  | 
required  |  boolean  |  Is attribute required?  | 
array  |  boolean  |  Is attribute an array?  | 
$createdAt  |  string  |  Attribute creation date in ISO 8601 format.  | 
$updatedAt  |  string  |  Attribute update date in ISO 8601 format.  | 
format  |  string  |  ISO 8601 format.  | 
default  |  string  |  Default value for attribute when not provided. Only null is optional  | 
Example
JSON
{
    "key": "birthDay",
    "type": "datetime",
    "status": "available",
    "error": "string",
    "required": true,
    "array": false,
    "$createdAt": "2020-10-15T06:38:00.000+00:00",
    "$updatedAt": "2020-10-15T06:38:00.000+00:00",
    "format": "datetime",
    "default": "2020-10-15T06:38:00.000+00:00"
}
JSON
{
    "key": "birthDay",
    "type": "datetime",
    "status": "available",
    "error": "string",
    "required": true,
    "array": false,
    "_createdAt": "2020-10-15T06:38:00.000+00:00",
    "_updatedAt": "2020-10-15T06:38:00.000+00:00",
    "format": "datetime",
    "default": "2020-10-15T06:38:00.000+00:00"
}