Properties
NAME | TYPE | DESCRIPTION |
key | string | Attribute Key. |
type | string | Attribute type. |
status | string | Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
required | boolean | Is attribute required? |
array | boolean | Is attribute an array? |
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",
"required": true,
"array": false,
"format": "datetime",
"default": "2020-10-15T06:38:00.000+00:00"
}
JSON
{
"key": "birthDay",
"type": "datetime",
"status": "available",
"required": true,
"array": false,
"format": "datetime",
"default": "2020-10-15T06:38:00.000+00:00"
}