PinChangeResponse schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-pin-change-response-schema.json", "title": "PinChangeResponse", "description": "PinChangeResponse schema from Adyen API", "type": "object", "properties": { "status": { "description": "The pin change status.", "enum": [ "completed", "pending", "unavailable" ], "type": "string" } }, "required": [ "status" ] }