IntegerRange

An integer range that has a minimum and maximum value.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
maximum object
minimum object
View JSON Schema on GitHub

JSON Schema

ground-station-integer-range-schema.json Raw ↑
{
  "$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"
  ]
}