SocketAddress

Information about the socket address.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

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

JSON Schema

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