Keboola · Schema

TableColumnTemplate

Template column definition, for "type" = "template".

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
content string
language string
View JSON Schema on GitHub

JSON Schema

keboola-tablecolumntemplate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableColumnTemplate",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "example": "body.foo + \"-\" + body.bar",
      "minLength": 1,
      "maxLength": 4096
    },
    "language": {
      "type": "string",
      "example": "jsonnet",
      "enum": [
        "jsonnet"
      ]
    }
  },
  "description": "Template column definition, for \"type\" = \"template\".",
  "example": {
    "language": "jsonnet",
    "content": "body.foo + \"-\" + body.bar"
  },
  "required": [
    "language",
    "content"
  ]
}