Amazon Ground Station · JSON Structure

Ground Station Dataflow Endpoint Structure

Information about a dataflow endpoint.

Type: object Properties: 4
Data ProcessingIoTSatellite CommunicationsSpace Technology

DataflowEndpoint is a JSON Structure definition published by Amazon Ground Station, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address mtu name status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-dataflow-endpoint-structure.json",
  "name": "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."
        }
      ]
    }
  }
}