Factset · Schema
BatchStatus
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | the id of batch request. |
| startTime | string | Time when the batch request is started. This is in Eastern Time Zone. The date-time format is expressed as [YYYY-MM-DD]T[HH:MM:SSS], following ISO 8601. |
| endTime | string | Time when the batch request is ended. This is in Eastern Time Zone. The date-time format is expressed as [YYYY-MM-DD]T[HH:MM:SSS], following ISO 8601. |
| status | string | |
| error | string | Error message. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BatchStatus",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "the id of batch request."
},
"startTime": {
"type": "string",
"description": "Time when the batch request is started. This is in Eastern Time Zone. The date-time format is expressed as [YYYY-MM-DD]T[HH:MM:SSS], following ISO 8601."
},
"endTime": {
"type": "string",
"description": "Time when the batch request is ended. This is in Eastern Time Zone. The date-time format is expressed as [YYYY-MM-DD]T[HH:MM:SSS], following ISO 8601."
},
"status": {
"type": "string"
},
"error": {
"type": "string",
"description": "Error message."
}
}
}