Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the ledger account category. |
| description | string | The description of the ledger account category. |
| metadata | object | Additional data represented as key-value pairs. Both the key and value must be strings. |
| external_id | string | An optional user-defined 180 character unique identifier. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ledger_account_category_update_request",
"title": "ledger_account_category_update_request",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the ledger account category."
},
"description": {
"type": "string",
"description": "The description of the ledger account category.",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Additional data represented as key-value pairs. Both the key and value must be strings.",
"additionalProperties": {
"type": "string"
},
"example": {
"key": "value",
"foo": "bar",
"modern": "treasury"
}
},
"external_id": {
"type": "string",
"description": "An optional user-defined 180 character unique identifier.",
"nullable": true
}
}
}