{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-pay-at-table-schema.json", "title": "PayAtTable", "description": "PayAtTable schema from Adyen API", "type": "object", "properties": { "authenticationMethod": { "description": "Allowed authentication methods: Magswipe, Manual Entry.", "enum": [ "MAGSWIPE", "MKE" ], "type": "string" }, "enablePayAtTable": { "description": "Enable Pay at table.", "type": "boolean" }, "paymentInstrument": { "description": "Sets the allowed payment instrument for Pay at table transactions. Can be: **cash** or **card**. If not set, the terminal presents both options.", "enum": [ "Cash", "Card" ], "type": "string" } } }