CloseStoresRequest 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/accounts-close-stores-request-schema.json", "title": "CloseStoresRequest", "description": "CloseStoresRequest schema from Adyen API", "type": "object", "properties": { "accountHolderCode": { "description": "The code of the account holder.", "type": "string" }, "stores": { "description": "List of stores to be closed.", "items": { "type": "string" }, "type": "array" } }, "required": [ "accountHolderCode", "stores" ] }