Bunq · Schema

RegistryMembershipSetting

Banking

Properties

Name Type Description
auto_add_card_transaction string The setting for for adding automatically card transactions to the registry.
time_auto_add_card_transaction_start string The time when auto add card gets active
time_auto_add_card_transaction_end string The time when auto add card gets inactive
card_ids array The ids of the cards that have been added to registry membership setting.
card_labels array The cards of which payments will be automatically added to this Registry.
View JSON Schema on GitHub

JSON Schema

bunq-registrymembershipsetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegistryMembershipSetting",
  "title": "RegistryMembershipSetting",
  "type": "object",
  "properties": {
    "auto_add_card_transaction": {
      "type": "string",
      "description": "The setting for for adding automatically card transactions to the registry.",
      "readOnly": false,
      "writeOnly": false
    },
    "time_auto_add_card_transaction_start": {
      "type": "string",
      "description": "The time when auto add card gets active",
      "readOnly": false,
      "writeOnly": false
    },
    "time_auto_add_card_transaction_end": {
      "type": "string",
      "description": "The time when auto add card gets inactive",
      "readOnly": false,
      "writeOnly": false
    },
    "card_ids": {
      "type": "array",
      "description": "The ids of the cards that have been added to registry membership setting.",
      "readOnly": false,
      "writeOnly": false,
      "items": {
        "type": "string"
      }
    },
    "card_labels": {
      "type": "array",
      "description": "The cards of which payments will be automatically added to this Registry.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/LabelCard"
      }
    }
  }
}