Bunq · Schema

InsightListing

Banking

Properties

Name Type Description
category string The category.
category_translated string The translated category.
category_color string The color of the category.
category_icon string The icon of the category.
amount_total object The total amount of the transactions in the category.
number_of_transactions integer The number of the transactions in the category.
View JSON Schema on GitHub

JSON Schema

bunq-insightlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsightListing",
  "title": "InsightListing",
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "description": "The category.",
      "readOnly": true,
      "writeOnly": false
    },
    "category_translated": {
      "type": "string",
      "description": "The translated category.",
      "readOnly": true,
      "writeOnly": false
    },
    "category_color": {
      "type": "string",
      "description": "The color of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "category_icon": {
      "type": "string",
      "description": "The icon of the category.",
      "readOnly": true,
      "writeOnly": false
    },
    "amount_total": {
      "type": "object",
      "description": "The total amount of the transactions in the category.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "number_of_transactions": {
      "type": "integer",
      "description": "The number of the transactions in the category.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}