{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-reveal-pin-request-schema.json", "title": "RevealPinRequest", "description": "RevealPinRequest schema from Adyen API", "type": "object", "properties": { "encryptedKey": { "description": "Symmetric session key encrypted under the public key.", "type": "string" }, "paymentInstrumentId": { "description": "The unique identifier of the payment instrument.", "type": "string" } }, "required": [ "paymentInstrumentId", "encryptedKey" ] }