{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-event-url-schema.json",
"title": "EventUrl",
"description": "EventUrl schema from Adyen API",
"type": "object",
"properties": {
"eventLocalUrls": {
"description": "One or more local URLs to send event notifications to when using Terminal API.",
"items": {
"$ref": "#/components/schemas/Url"
},
"type": "array"
},
"eventPublicUrls": {
"description": "One or more public URLs to send event notifications to when using Terminal API.",
"items": {
"$ref": "#/components/schemas/Url"
},
"type": "array"
}
}
}