Keboola · Schema

TablePreviewRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
tableName string Name of the table to preview
databaseName string Name of the database containing the table (optional). Ignored on BigQuery workspaces — a BQ session is bound to a single GCP project, so `dataset.table` is the only valid form.
schemaName string Name of the schema containing the table (optional)
View JSON Schema on GitHub

JSON Schema

keboola-tablepreviewrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TablePreviewRequest",
  "type": "object",
  "required": [
    "tableName"
  ],
  "properties": {
    "tableName": {
      "type": "string",
      "description": "Name of the table to preview",
      "example": "users"
    },
    "databaseName": {
      "type": "string",
      "nullable": true,
      "description": "Name of the database containing the table (optional). Ignored on\nBigQuery workspaces \u2014 a BQ session is bound to a single GCP project,\nso `dataset.table` is the only valid form.\n",
      "example": "KEBOOLA_123"
    },
    "schemaName": {
      "type": "string",
      "nullable": true,
      "description": "Name of the schema containing the table (optional)",
      "example": "in.c-example-schema"
    }
  }
}