{
"$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"
]
}