Keboola · Schema

RunQueryResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
queryJobId string ID of the submitted query job
url string URL to check the status of the query job
View JSON Schema on GitHub

JSON Schema

keboola-runqueryresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RunQueryResponse",
  "type": "object",
  "required": [
    "queryJobId",
    "url"
  ],
  "properties": {
    "queryJobId": {
      "type": "string",
      "description": "ID of the submitted query job",
      "example": "12345678-1234-1234-1234-1234567890ab"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to check the status of the query job",
      "example": "https://query.keboola.com/api/v1/queries/12345678-1234-1234-1234-1234567890ab"
    }
  }
}