Keboola · Schema

SourceTableResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
id string Source table ID
uri string Source table URI
project object
isAlias boolean Whether the source table is itself an alias
View JSON Schema on GitHub

JSON Schema

keboola-sourcetableresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SourceTableResponse",
  "required": [
    "id",
    "uri",
    "project",
    "isAlias"
  ],
  "properties": {
    "id": {
      "description": "Source table ID",
      "type": "string"
    },
    "uri": {
      "description": "Source table URI",
      "type": "string"
    },
    "project": {
      "required": [
        "id",
        "name"
      ],
      "properties": {
        "id": {
          "description": "Project ID",
          "type": "integer"
        },
        "name": {
          "description": "Project name",
          "type": "string"
        }
      },
      "type": "object"
    },
    "isAlias": {
      "description": "Whether the source table is itself an alias",
      "type": "boolean"
    }
  },
  "type": "object"
}