Keboola · Schema

TableSinkUpdate

Table sink configuration for "type" = "table".

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
mapping object
tableId string
type string
View JSON Schema on GitHub

JSON Schema

keboola-tablesinkupdate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableSinkUpdate",
  "type": "object",
  "properties": {
    "mapping": {
      "$ref": "#/definitions/TableMapping"
    },
    "tableId": {
      "type": "string",
      "example": "in.c-bucket.table"
    },
    "type": {
      "type": "string",
      "example": "keboola",
      "enum": [
        "keboola"
      ]
    }
  },
  "description": "Table sink configuration for \"type\" = \"table\".",
  "example": {
    "type": "keboola",
    "tableId": "in.c-bucket.table",
    "mapping": {
      "columns": [
        {
          "type": "uuid",
          "name": "id-col"
        },
        {
          "type": "datetime",
          "name": "datetime-col"
        },
        {
          "type": "ip",
          "name": "ip-col"
        },
        {
          "type": "headers",
          "name": "headers-col"
        },
        {
          "type": "body",
          "name": "body-col"
        },
        {
          "type": "path",
          "name": "path-col",
          "path": "foo.bar[0]",
          "rawString": true,
          "defaultValue": ""
        },
        {
          "type": "template",
          "name": "template-col",
          "template": {
            "language": "jsonnet",
            "content": "body.foo + \"-\" + body.bar"
          }
        }
      ]
    }
  }
}