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