Adyen · Schema

PaymentInstrumentRevealInfo

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

adyen-paymentinstrumentrevealinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentInstrumentRevealInfo",
  "title": "PaymentInstrumentRevealInfo",
  "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"
  ],
  "type": "object"
}