{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-integer-range-schema.json", "title": "IntegerRange", "description": "An integer range that has a minimum and maximum value.", "type": "object", "properties": { "maximum": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "A maximum value." } ] }, "minimum": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "A minimum value." } ] } }, "required": [ "maximum", "minimum" ] }