Amazon Ground Station · Schema
DataflowEndpoint
Information about a dataflow endpoint.
Data ProcessingIoTSatellite CommunicationsSpace Technology
Properties
| Name | Type | Description |
|---|---|---|
| address | object | |
| mtu | object | |
| name | object | |
| status | object |
JSON Schema
{
"$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."
}
]
}
}
}