Keboola · Schema

Version

Version of the entity.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
at string Date and time of the modification.
by object
description string Description of the change.
hash string Hash of the entity state.
number integer Version number counted from 1.
View JSON Schema on GitHub

JSON Schema

keboola-version.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Version",
  "type": "object",
  "properties": {
    "at": {
      "type": "string",
      "description": "Date and time of the modification.",
      "example": "2022-04-28T14:20:04.000Z",
      "format": "date-time"
    },
    "by": {
      "$ref": "#/definitions/By"
    },
    "description": {
      "type": "string",
      "description": "Description of the change.",
      "example": "The reason for the last change was..."
    },
    "hash": {
      "type": "string",
      "description": "Hash of the entity state.",
      "example": "f43e93acd97eceb3"
    },
    "number": {
      "type": "integer",
      "description": "Version number counted from 1.",
      "example": 3,
      "format": "int64",
      "minimum": 1
    }
  },
  "description": "Version of the entity.",
  "example": {
    "number": 3,
    "hash": "f43e93acd97eceb3",
    "description": "The reason for the last change was...",
    "at": "2022-04-28T14:20:04.000Z",
    "by": {
      "type": "user",
      "tokenId": "896455",
      "tokenDesc": "[email protected]",
      "userId": "578621",
      "userName": "John Green"
    }
  },
  "required": [
    "number",
    "hash",
    "at",
    "by",
    "description"
  ]
}