{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-schema/global-accelerator-port-range-schema.json",
"title": "PortRange",
"description": "A complex type for a range of ports for a listener.",
"type": "object",
"properties": {
"FromPort": {
"allOf": [
{
"$ref": "#/components/schemas/PortNumber"
},
{
"description": "The first port in the range of ports, inclusive."
}
]
},
"ToPort": {
"allOf": [
{
"$ref": "#/components/schemas/PortNumber"
},
{
"description": "The last port in the range of ports, inclusive."
}
]
}
}
}