Factset · Schema
getfiles
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| product | string | Defines the name of the product |
| startDate | string | The startDate from which the data is required in YYYY-MM-DDTHH:MM:SSZ format |
| endDate | string | The endDate until which the data is fetched in YYYY-MM-DDTHH:MM:SSZ format |
| jobID | string | Unique id to get the xml files for the requested date |
| status | string | Defines the status of the request |
| url | string | Link to download the zip file which contains xml files |
| part | integer | Returns the part number of the jobID |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getfiles",
"type": "object",
"properties": {
"product": {
"type": "string",
"description": "Defines the name of the product"
},
"startDate": {
"type": "string",
"description": "The startDate from which the data is required in YYYY-MM-DDTHH:MM:SSZ format"
},
"endDate": {
"type": "string",
"description": "The endDate until which the data is fetched in YYYY-MM-DDTHH:MM:SSZ format"
},
"jobID": {
"type": "string",
"description": "Unique id to get the xml files for the requested date"
},
"status": {
"type": "string",
"description": "Defines the status of the request"
},
"url": {
"type": "string",
"description": "Link to download the zip file which contains xml files"
},
"part": {
"type": "integer",
"description": "Returns the part number of the jobID"
}
}
}