Keboola · Schema

ReloadSessionRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
mode string The mode to reload the session in. 'input' reloads input tables, 'clean' cleans the workspace.
View JSON Schema on GitHub

JSON Schema

keboola-reloadsessionrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ReloadSessionRequest",
  "type": "object",
  "required": [
    "mode"
  ],
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "input",
        "clean"
      ],
      "description": "The mode to reload the session in. 'input' reloads input tables, 'clean' cleans the workspace."
    }
  }
}