Factset · Schema
CalculationUnitStatus
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| status | string | The status of calculation unit. |
| errors | array | The error in a calculation unit. |
| result | string | The result URL of the calculation. |
| progress | string | The progress of the calculation unit. |
| points | integer | The points for the calculation unit. |
| warnings | array | The warnings in a calculation unit. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CalculationUnitStatus",
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "The status of calculation unit."
},
"errors": {
"type": "array",
"description": "The error in a calculation unit."
},
"result": {
"type": "string",
"description": "The result URL of the calculation."
},
"progress": {
"type": "string",
"description": "The progress of the calculation unit."
},
"points": {
"type": "integer",
"description": "The points for the calculation unit."
},
"warnings": {
"type": "array",
"description": "The warnings in a calculation unit."
}
}
}