{ "$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-ranged-connection-details-structure.json", "name": "RangedConnectionDetails", "description": "Ingress address of AgentEndpoint with a port range and an optional mtu.", "type": "object", "properties": { "mtu": { "allOf": [ { "$ref": "#/components/schemas/RangedConnectionDetailsMtuInteger" }, { "description": "Maximum transmission unit (MTU) size in bytes of a dataflow endpoint." } ] }, "socketAddress": { "allOf": [ { "$ref": "#/components/schemas/RangedSocketAddress" }, { "description": "A ranged socket address." } ] } }, "required": [ "socketAddress" ] }