Bunq · Schema

Issuer

Banking

Properties

Name Type Description
bic string The BIC code.
name string The name of the bank.
View JSON Schema on GitHub

JSON Schema

bunq-issuer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Issuer",
  "title": "Issuer",
  "type": "object",
  "properties": {
    "bic": {
      "type": "string",
      "description": "The BIC code.",
      "readOnly": false,
      "writeOnly": false
    },
    "name": {
      "type": "string",
      "description": "The name of the bank.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}