Properties
| Name | Type | Description |
|---|---|---|
| category | string | The category. |
| status | string | Whether this category is active. Only relevant for user-defined categories. |
| description | string | The description of the category. |
| color | string | The color of the category. |
| icon | string | The icon of the category. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AdditionalTransactionInformationCategoryUserDefined",
"title": "AdditionalTransactionInformationCategoryUserDefined",
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "The category.",
"readOnly": false,
"writeOnly": true
},
"status": {
"type": "string",
"description": "Whether this category is active. Only relevant for user-defined categories.",
"readOnly": false,
"writeOnly": true
},
"description": {
"type": "string",
"description": "The description of the category.",
"readOnly": false,
"writeOnly": true
},
"color": {
"type": "string",
"description": "The color of the category.",
"readOnly": false,
"writeOnly": true
},
"icon": {
"type": "string",
"description": "The icon of the category.",
"readOnly": false,
"writeOnly": true
}
},
"required": [
"status"
]
}