RangedSocketAddress

A socket address with a port range.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
name object
portRange object
View JSON Schema on GitHub

JSON Schema

ground-station-ranged-socket-address-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-ranged-socket-address-schema.json",
  "title": "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"
  ]
}