{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventGatewayListenerPort",
"title": "EventGatewayListenerPort",
"oneOf": [
{
"type": "string",
"pattern": "^(\\d{1,5}|\\d{1,5}-\\d{1,5})$",
"description": "A port or a range of ports in the format 9092 or 9092-9094."
},
{
"type": "integer",
"minimum": 1,
"maximum": 65535
}
]
}