DisablePermitRequest 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/recurring-disable-permit-request-schema.json", "title": "DisablePermitRequest", "description": "DisablePermitRequest schema from Adyen API", "type": "object", "properties": { "merchantAccount": { "description": "The merchant account identifier, with which you want to process the transaction.", "type": "string" }, "token": { "description": "The permit token to disable.", "type": "string" } }, "required": [ "merchantAccount", "token" ] }