Information about the socket address.
{ "$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" ] }