Keboola · Schema

handlers.SubmitQueryJobRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
actorType object
refreshMetadataOnSuccess boolean
sessionId string
statements array
timeout string
transactional boolean
View JSON Schema on GitHub

JSON Schema

keboola-handlers.submitqueryjobrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "handlers.SubmitQueryJobRequest",
  "properties": {
    "actorType": {
      "allOf": [
        {
          "$ref": "#/definitions/models.ActorType"
        }
      ],
      "example": "user"
    },
    "refreshMetadataOnSuccess": {
      "type": "boolean"
    },
    "sessionId": {
      "example": "550e8400-e29b-41d4-a716-446655440000",
      "type": "string"
    },
    "statements": {
      "example": [
        "SELECT * FROM table1",
        "INSERT INTO table2 SELECT * FROM table1"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "timeout": {
      "example": "60s",
      "type": "string"
    },
    "transactional": {
      "example": true,
      "type": "boolean"
    }
  },
  "required": [
    "statements",
    "transactional"
  ],
  "type": "object"
}