Keboola · Schema
handlers.JobStatusResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| actorType | object | |
| canceledAt | string | |
| cancellationReason | string | |
| changedAt | string | |
| createdAt | string | |
| expiration | string | |
| queryJobId | string | |
| statements | array | |
| status | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "handlers.JobStatusResponse",
"properties": {
"actorType": {
"allOf": [
{
"$ref": "#/definitions/models.ActorType"
}
],
"example": "user"
},
"canceledAt": {
"type": "string"
},
"cancellationReason": {
"type": "string"
},
"changedAt": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"expiration": {
"type": "string"
},
"queryJobId": {
"example": "job-12345",
"type": "string"
},
"statements": {
"items": {
"$ref": "#/definitions/handlers.Statement"
},
"type": "array"
},
"status": {
"allOf": [
{
"$ref": "#/definitions/models.JobState"
}
],
"example": "processing"
}
},
"required": [
"actorType",
"changedAt",
"createdAt",
"queryJobId",
"statements",
"status"
],
"type": "object"
}