Amazon Ground Station · JSON Structure

Ground Station Integer Range Structure

An integer range that has a minimum and maximum value.

Type: object Properties: 2 Required: 2
Data ProcessingIoTSatellite CommunicationsSpace Technology

IntegerRange is a JSON Structure definition published by Amazon Ground Station, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

maximum minimum

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-integer-range-structure.json",
  "name": "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"
  ]
}