Keboola · Schema

TableLifecycle

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
createdAt string Date and time when the table was created
modifiedAt string Date and time of the last modification
lastImportAt string Date and time of the last data import
View JSON Schema on GitHub

JSON Schema

keboola-tablelifecycle.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TableLifecycle",
  "type": "object",
  "properties": {
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "Date and time when the table was created"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "Date and time of the last modification"
    },
    "lastImportAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "Date and time of the last data import"
    }
  }
}