Keboola · Schema

By

Information about the operation actor.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
tokenDesc string Description of the token.
tokenId string ID of the token.
type string Date and time of deletion.
userId string ID of the user.
userName string Name of the user.
View JSON Schema on GitHub

JSON Schema

keboola-by.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "By",
  "type": "object",
  "properties": {
    "tokenDesc": {
      "type": "string",
      "description": "Description of the token.",
      "example": "[email protected]"
    },
    "tokenId": {
      "type": "string",
      "description": "ID of the token.",
      "example": "896455"
    },
    "type": {
      "type": "string",
      "description": "Date and time of deletion.",
      "example": "user",
      "enum": [
        "system",
        "user"
      ]
    },
    "userId": {
      "type": "string",
      "description": "ID of the user.",
      "example": "578621"
    },
    "userName": {
      "type": "string",
      "description": "Name of the user.",
      "example": "John Green"
    }
  },
  "description": "Information about the operation actor.",
  "example": {
    "type": "user",
    "tokenId": "896455",
    "tokenDesc": "[email protected]",
    "userId": "578621",
    "userName": "John Green"
  },
  "required": [
    "type"
  ]
}