Adyen · Schema

PaymentInstrumentRevealInfo

PaymentInstrumentRevealInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
cvc string The CVC2 value of the card.
expiration object The expiration date of the card.
pan string The primary account number (PAN) of the card.
View JSON Schema on GitHub

JSON Schema

configuration-payment-instrument-reveal-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-payment-instrument-reveal-info-schema.json",
  "title": "PaymentInstrumentRevealInfo",
  "description": "PaymentInstrumentRevealInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "cvc": {
      "description": "The CVC2 value of the card.",
      "type": "string"
    },
    "expiration": {
      "description": "The expiration date of the card.",
      "$ref": "#/components/schemas/Expiry"
    },
    "pan": {
      "description": "The primary account number (PAN) of the card.",
      "type": "string"
    }
  },
  "required": [
    "pan",
    "expiration",
    "cvc"
  ]
}