Amazon Ground Station · JSON Structure

Ground Station Ranged Socket Address Structure

A socket address with a port range.

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

RangedSocketAddress 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

name portRange

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-ranged-socket-address-structure.json",
  "name": "RangedSocketAddress",
  "description": "A socket address with a port range.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpV4Address"
        },
        {
          "description": "IPv4 socket address."
        }
      ]
    },
    "portRange": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntegerRange"
        },
        {
          "description": "Port range of a socket address."
        }
      ]
    }
  },
  "required": [
    "name",
    "portRange"
  ]
}