{ "$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-ranged-connection-details-schema.json", "title": "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" ] }