Amazon AppFlow · JSON Structure

Appflow Connector Entity Structure

ConnectorEntity schema from Amazon AppFlow API

Type: object Properties: 3 Required: 1
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Appflow Connector Entity Structure is a JSON Structure definition published by Amazon AppFlow, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name label hasNestedEntities

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "ConnectorEntity schema from Amazon AppFlow API",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the connector entity.",
      "example": "Account"
    },
    "label": {
      "type": "string",
      "description": "The label applied to the connector entity.",
      "example": "Account"
    },
    "hasNestedEntities": {
      "type": "boolean",
      "description": "Specifies whether the connector entity is a parent or a category and has more entities nested underneath it.",
      "example": false
    }
  },
  "required": [
    "name"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-structure/appflow-connector-entity-structure.json"
}