{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-port-range-filter-list-schema.json",
"title": "PortRangeFilterList",
"description": "PortRangeFilterList schema",
"type": "array",
"items": {
"type": "object",
"properties": {
"beginInclusive": {
"allOf": [
{
"$ref": "#/components/schemas/Port"
},
{
"description": "The port number the port range begins at."
}
]
},
"endInclusive": {
"allOf": [
{
"$ref": "#/components/schemas/Port"
},
{
"description": "The port number the port range ends at."
}
]
}
},
"description": "An object that describes the details of a port range filter."
}
}