Factset · Schema
tickhistory_response
response for tick history
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| Requested ID | string | Request Identification String. |
| Requested Symbol | string | Single Requested Symbol or Security. |
| Requested Fields | array | Array of requested fields |
| Request Key | string | |
| Error Code | string | |
| Error Description | string | Brief description of error response. Blank if successful. |
| Field Names | string | Requested Field Names |
| Field IDs | number | Requested Field ID numbers 'FID'. Found in Data Service Manual. |
| Key | string | Requested Symbol Key, where :D represented delayed data. |
| Values | number | Array of field values. Each value is returned for requested interval query. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "tickhistory_response",
"type": "object",
"description": "response for tick history",
"properties": {
"Requested ID": {
"type": "string",
"description": "Request Identification String."
},
"Requested Symbol": {
"type": "string",
"description": "Single Requested Symbol or Security."
},
"Requested Fields": {
"type": "array",
"description": "Array of requested fields "
},
"Request Key": {
"type": "string"
},
"Error Code": {
"type": "string"
},
"Error Description": {
"type": "string",
"description": "Brief description of error response. Blank if successful."
},
"Field Names": {
"type": "string",
"description": "Requested Field Names"
},
"Field IDs": {
"type": "number",
"description": "Requested Field ID numbers 'FID'. Found in Data Service Manual."
},
"Key": {
"type": "string",
"description": "Requested Symbol Key, where :D represented delayed data."
},
"Values": {
"type": "number",
"description": "Array of field values. Each value is returned for requested interval query."
}
}
}