Factset · Schema
DataItem
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the data item |
| name | string | Name of the data item |
| description | string | Description of the data item |
| entitled | boolean | Flag indicating if the user is entitled to access the data in their subscriptions |
| dataFeed | boolean | Flag indicating if this item is available in a data feed |
| api | boolean | Flag indicating if this item is available in an api |
| referenceDataFeed | boolean | Flag indicating if this product is maintained by RDF/UCF |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DataItem",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the data item"
},
"name": {
"type": "string",
"description": "Name of the data item"
},
"description": {
"type": "string",
"description": "Description of the data item"
},
"entitled": {
"type": "boolean",
"description": "Flag indicating if the user is entitled to access the data in their subscriptions"
},
"dataFeed": {
"type": "boolean",
"description": "Flag indicating if this item is available in a data feed"
},
"api": {
"type": "boolean",
"description": "Flag indicating if this item is available in an api"
},
"referenceDataFeed": {
"type": "boolean",
"description": "Flag indicating if this product is maintained by RDF/UCF"
}
}
}