Bunq · Schema

CardGeneratedCvc2Listing

Banking

Properties

Name Type Description
id integer The id of the cvc code.
created string The timestamp of the cvc code's creation.
updated string The timestamp of the cvc code's last update.
type string The type of generated cvc2. Can be STATIC or GENERATED.
cvc2 string The cvc2 code.
status string The status of the cvc2. Can be AVAILABLE, USED, EXPIRED, BLOCKED.
expiry_time string Expiry time of the cvc2.
View JSON Schema on GitHub

JSON Schema

bunq-cardgeneratedcvc2listing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardGeneratedCvc2Listing",
  "title": "CardGeneratedCvc2Listing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the cvc code.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the cvc code's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the cvc code's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "type": {
      "type": "string",
      "description": "The type of generated cvc2. Can be STATIC or GENERATED.",
      "readOnly": true,
      "writeOnly": false
    },
    "cvc2": {
      "type": "string",
      "description": "The cvc2 code.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the cvc2. Can be AVAILABLE, USED, EXPIRED, BLOCKED.",
      "readOnly": true,
      "writeOnly": false
    },
    "expiry_time": {
      "type": "string",
      "description": "Expiry time of the cvc2.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}