Bunq · Schema

CardBatch

Banking

Properties

Name Type Description
cards array The cards that need to be updated.
View JSON Schema on GitHub

JSON Schema

bunq-cardbatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardBatch",
  "title": "CardBatch",
  "type": "object",
  "properties": {
    "cards": {
      "type": "array",
      "description": "The cards that need to be updated.",
      "readOnly": false,
      "writeOnly": true,
      "items": {
        "$ref": "#/components/schemas/CardBatchEntry"
      }
    }
  },
  "required": [
    "cards"
  ]
}