Keboola · Schema

TableMetrics

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
rowCount integer Number of rows in the table
byteSize integer Size of the table in bytes
View JSON Schema on GitHub

JSON Schema

keboola-tablemetrics.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableMetrics",
  "type": "object",
  "properties": {
    "rowCount": {
      "type": "integer",
      "nullable": true,
      "description": "Number of rows in the table"
    },
    "byteSize": {
      "type": "integer",
      "nullable": true,
      "description": "Size of the table in bytes"
    }
  }
}