Amazon Ground Station · JSON Structure

Ground Station Socket Address Structure

Information about the socket address.

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

SocketAddress 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 port

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-socket-address-structure.json",
  "name": "SocketAddress",
  "description": "Information about the socket address.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Name of a socket address."
        }
      ]
    },
    "port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Port of a socket address."
        }
      ]
    }
  },
  "required": [
    "name",
    "port"
  ]
}