Bunq · Schema

AdditionalTransactionInformationCategory

Banking

Properties

Name Type Description
category string The category.
type string Who created this category.
status string Whether this category is active. Only relevant for user-defined categories.
order integer The sort order of the category.
description string The description of the category.
description_translated string The translation of the description of the category.
color string The color of the category.
icon string The icon of the category.
View JSON Schema on GitHub

JSON Schema

bunq-additionaltransactioninformationcategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdditionalTransactionInformationCategory",
  "title": "AdditionalTransactionInformationCategory",
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "description": "The category.",
      "readOnly": true,
      "writeOnly": false
    },
    "type": {
      "type": "string",
      "description": "Who created this category.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "Whether this category is active. Only relevant for user-defined categories.",
      "readOnly": true,
      "writeOnly": false
    },
    "order": {
      "type": "integer",
      "description": "The sort order of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "description": {
      "type": "string",
      "description": "The description of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "description_translated": {
      "type": "string",
      "description": "The translation of the description of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "color": {
      "type": "string",
      "description": "The color of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "icon": {
      "type": "string",
      "description": "The icon of the category.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}