Keboola · Schema

CreateSqlEditorSessionRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
branchId string The ID of the branch to create the session in
componentId string The ID of the component (e.g. keboola.snowflake-transformation)
configurationId string The ID of the configuration
loadMode string Specifies the loading mode for the session: * `clean` - Creates a clean session (default) * `input` - Loads with input data (not yet implemented)
View JSON Schema on GitHub

JSON Schema

keboola-createsqleditorsessionrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateSqlEditorSessionRequest",
  "type": "object",
  "required": [
    "branchId",
    "componentId",
    "configurationId"
  ],
  "properties": {
    "branchId": {
      "type": "string",
      "description": "The ID of the branch to create the session in"
    },
    "componentId": {
      "type": "string",
      "description": "The ID of the component (e.g. keboola.snowflake-transformation)",
      "nullable": true
    },
    "configurationId": {
      "type": "string",
      "description": "The ID of the configuration",
      "nullable": true
    },
    "loadMode": {
      "type": "string",
      "enum": [
        "input",
        "clean"
      ],
      "description": "Specifies the loading mode for the session:\n* `clean` - Creates a clean session (default)\n* `input` - Loads with input data (not yet implemented)\n"
    }
  }
}