{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-schema/global-accelerator-socket-address-schema.json", "title": "SocketAddress", "description": "An IP address/port combination.", "type": "object", "properties": { "IpAddress": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The IP address for the socket address." } ] }, "Port": { "allOf": [ { "$ref": "#/components/schemas/PortNumber" }, { "description": "The port for the socket address." } ] } } }