Voxco · Schema
ExportsJobStatusResponse
Class presents an information about current status of specified job
Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management
Properties
| Name | Type | Description |
|---|---|---|
| errorMessage | string | |
| jobKey | integer | Key of job |
| userKey | integer | Key of user |
| type | object | |
| status | object | |
| createDate | string | Date when the job was created |
| startDate | string | Date when the job change status to Running |
| endDate | string | Date when the job change status to Complete |
| info | string | Information about the job |
| error | string | Message of error if it occured during the job's execution |
| resultFileUri | string | Url for downloading result file |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExportsJobStatusResponse",
"type": "object",
"properties": {
"errorMessage": {
"type": "string",
"nullable": true
},
"jobKey": {
"type": "integer",
"description": "Key of job",
"format": "int32"
},
"userKey": {
"type": "integer",
"description": "Key of user",
"format": "int32"
},
"type": {
"$ref": "#/components/schemas/DBJobType"
},
"status": {
"$ref": "#/components/schemas/DBJobStatus"
},
"createDate": {
"type": "string",
"description": "Date when the job was created",
"format": "date-time"
},
"startDate": {
"type": "string",
"description": "Date when the job change status to Running",
"format": "date-time",
"nullable": true
},
"endDate": {
"type": "string",
"description": "Date when the job change status to Complete",
"format": "date-time",
"nullable": true
},
"info": {
"type": "string",
"description": "Information about the job",
"nullable": true
},
"error": {
"type": "string",
"description": "Message of error if it occured during the job's execution",
"nullable": true
},
"resultFileUri": {
"type": "string",
"description": "Url for downloading result file",
"nullable": true
}
},
"additionalProperties": false,
"description": "Class presents an information about current status of specified job"
}