Factset · Schema
checkstatus
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| product | string | Defines the name of the product |
| jobID | string | Unique id to get the xml files for the requested date |
| status | string | Returns any of the 2 results Submitted ->Running->Completed and Failed |
| percentDone | integer | Returns how much percentage of task is completed for the requested jobID |
| startDate | string | The date from which the data is required in YYYY-MM-DDTHH:MM:SSZ format |
| endDate | string | The date until which the data is fetched in YYYY-MM-DDTHH:MM:SSZ format |
| part | integer | Returns the part number of the jobID |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "checkstatus",
"type": "object",
"properties": {
"product": {
"type": "string",
"description": "Defines the name of the product"
},
"jobID": {
"type": "string",
"description": "Unique id to get the xml files for the requested date"
},
"status": {
"type": "string",
"description": "Returns any of the 2 results Submitted ->Running->Completed and Failed"
},
"percentDone": {
"type": "integer",
"description": "Returns how much percentage of task is completed for the requested jobID"
},
"startDate": {
"type": "string",
"description": "The date from which the data is required in YYYY-MM-DDTHH:MM:SSZ format"
},
"endDate": {
"type": "string",
"description": "The date until which the data is fetched in YYYY-MM-DDTHH:MM:SSZ format"
},
"part": {
"type": "integer",
"description": "Returns the part number of the jobID"
}
}
}