{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PayAtTable", "title": "PayAtTable", "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" } }, "type": "object" }