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