Keboola · Schema

GetOutputTablesResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
tables array List of output table names created by the queries
View JSON Schema on GitHub

JSON Schema

keboola-getoutputtablesresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetOutputTablesResponse",
  "type": "object",
  "required": [
    "tables"
  ],
  "properties": {
    "tables": {
      "type": "array",
      "description": "List of output table names created by the queries",
      "items": {
        "type": "string"
      }
    }
  },
  "example": {
    "tables": [
      "TABLE1",
      "TABLE2"
    ]
  }
}