Keboola · Schema

EntityVersions

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
page object
versions array
View JSON Schema on GitHub

JSON Schema

keboola-entityversions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EntityVersions",
  "type": "object",
  "properties": {
    "page": {
      "$ref": "#/definitions/PaginatedResponse"
    },
    "versions": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Version"
      },
      "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"
          }
        }
      ]
    }
  },
  "example": {
    "versions": [
      {
        "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"
        }
      }
    ],
    "page": {
      "limit": 100,
      "totalCount": 1000,
      "afterId": "my-object-123",
      "lastId": "my-object-456"
    }
  },
  "required": [
    "versions",
    "page"
  ]
}