{ "$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-connection-details-schema.json", "title": "ConnectionDetails", "description": "Egress address of AgentEndpoint with an optional mtu.", "type": "object", "properties": { "mtu": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "Maximum transmission unit (MTU) size in bytes of a dataflow endpoint." } ] }, "socketAddress": { "allOf": [ { "$ref": "#/components/schemas/SocketAddress" }, { "description": "A socket address." } ] } }, "required": [ "socketAddress" ] }