Keboola · Schema

TableResource

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
transaction string
warnings array
importedColumns array
totalRowsCount integer
totalDataSizeBytes integer
View JSON Schema on GitHub

JSON Schema

keboola-tableresource.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableResource",
  "type": "object",
  "properties": {
    "transaction": {
      "type": "string",
      "example": null
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "importedColumns": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "col1",
        "col2"
      ]
    },
    "totalRowsCount": {
      "type": "integer",
      "example": 1234
    },
    "totalDataSizeBytes": {
      "type": "integer",
      "example": 12345678
    }
  }
}