Keboola · Example Payload

Editor Api Getsqleditorsessionschema Response 200

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Editor Api Getsqleditorsessionschema Response 200 is an example object payload from Keboola, with 1 top-level field. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

databases

Example Payload

Raw ↑
{
  "databases": [
    {
      "name": "KEBOOLA_123456",
      "displayName": "My Production Project",
      "schemas": [
        {
          "name": "in.c-sample-data",
          "displayName": "Input Data",
          "tables": [
            {
              "name": "users",
              "type": "BASE TABLE",
              "displayName": "User Accounts",
              "id": "in.c-sample-data.users",
              "columns": [
                {
                  "name": "id"
                },
                {
                  "name": "email"
                }
              ]
            }
          ]
        },
        {
          "name": "WORKSPACE_789",
          "tables": [
            {
              "name": "temp_results",
              "type": "BASE TABLE",
              "columns": [
                {
                  "name": "result_id",
                  "type": "INTEGER"
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}