Keboola · Schema

ColumnCreateRequest

Request for adding a column to a table.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
name string Name of the column to add.
definition object Column definition. For untyped tables only "description" is allowed.
View JSON Schema on GitHub

JSON Schema

keboola-columncreaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ColumnCreateRequest",
  "description": "Request for adding a column to a table.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "description": "Name of the column to add.",
      "type": "string"
    },
    "definition": {
      "description": "Column definition. For untyped tables only \"description\" is allowed.",
      "properties": {
        "description": {
          "description": "Column description.",
          "type": "string",
          "nullable": true
        }
      },
      "type": "object",
      "nullable": true
    }
  },
  "type": "object"
}