{ "$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-dataflow-endpoint-schema.json", "title": "DataflowEndpoint", "description": "Information about a dataflow endpoint.", "type": "object", "properties": { "address": { "allOf": [ { "$ref": "#/components/schemas/SocketAddress" }, { "description": "Socket address of a dataflow endpoint." } ] }, "mtu": { "allOf": [ { "$ref": "#/components/schemas/DataflowEndpointMtuInteger" }, { "description": "Maximum transmission unit (MTU) size in bytes of a dataflow endpoint." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/SafeName" }, { "description": "Name of a dataflow endpoint." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/EndpointStatus" }, { "description": "Status of a dataflow endpoint." } ] } } }