{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Nexo", "title": "Nexo", "properties": { "displayUrls": { "description": "The list of local and public URLs to send display notifications to when using Terminal API.", "$ref": "#/components/schemas/NotificationUrl" }, "encryptionKey": { "description": "The key you share with Adyen to secure local communications when using Terminal API.", "$ref": "#/components/schemas/Key" }, "eventUrls": { "description": "The list of local and public URLs to send event notifications to when using Terminal API.", "$ref": "#/components/schemas/EventUrl" }, "nexoEventUrls": { "deprecated": true, "x-deprecatedInVersion": "1", "x-deprecatedMessage": "Use `eventUrls` instead.", "description": "One or more URLs to send event messages to when using Terminal API.", "items": { "type": "string" }, "type": "array" }, "notification": { "description": "Configures sending event notifications by pressing a button on a terminal, for example used for pay-at-table.", "$ref": "#/components/schemas/Notification" } }, "type": "object" }