Bunq · Schema

InvoiceItem

Banking

Properties

Name Type Description
id integer The id of the invoice item.
billing_date string The billing date of the item.
type_description string The price description.
type_description_translated string The translated price description.
unit_vat_exclusive object The unit item price excluding VAT.
unit_vat_inclusive object The unit item price including VAT.
vat integer The VAT tax fraction.
quantity integer The number of items priced.
total_vat_exclusive object The item price excluding VAT.
total_vat_inclusive object The item price including VAT.
View JSON Schema on GitHub

JSON Schema

bunq-invoiceitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceItem",
  "title": "InvoiceItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the invoice item.",
      "readOnly": true,
      "writeOnly": false
    },
    "billing_date": {
      "type": "string",
      "description": "The billing date of the item.",
      "readOnly": true,
      "writeOnly": false
    },
    "type_description": {
      "type": "string",
      "description": "The price description.",
      "readOnly": true,
      "writeOnly": false
    },
    "type_description_translated": {
      "type": "string",
      "description": "The translated price description.",
      "readOnly": true,
      "writeOnly": false
    },
    "unit_vat_exclusive": {
      "type": "object",
      "description": "The unit item price excluding VAT.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "unit_vat_inclusive": {
      "type": "object",
      "description": "The unit item price including VAT.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "vat": {
      "type": "integer",
      "description": "The VAT tax fraction.",
      "readOnly": true,
      "writeOnly": false
    },
    "quantity": {
      "type": "integer",
      "description": "The number of items priced.",
      "readOnly": true,
      "writeOnly": false
    },
    "total_vat_exclusive": {
      "type": "object",
      "description": "The item price excluding VAT.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "total_vat_inclusive": {
      "type": "object",
      "description": "The item price including VAT.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    }
  }
}