Keboola · Schema

TableDDLResponse

Data PlatformETLELTData PipelineData StorageTransformationOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
ddl string The DDL (CREATE TABLE) statement for the specified table
View JSON Schema on GitHub

JSON Schema

keboola-tableddlresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableDDLResponse",
  "type": "object",
  "required": [
    "ddl"
  ],
  "properties": {
    "ddl": {
      "type": "string",
      "description": "The DDL (CREATE TABLE) statement for the specified table",
      "example": "CREATE OR REPLACE TABLE \"KEBOOLA_123\".\"public\".\"users\" (id INT, name VARCHAR, email VARCHAR)"
    }
  }
}