Factset · Schema
Segment
A single business or geographic segment data point for a company.
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| requestId | string | Identifier that was used for the request. |
| fsymId | ['string', 'null'] | FactSet Regional Security Identifier. |
| metric | ['string', 'null'] | The segment metric (SALES, OPINC, ASSETS, DEP, CAPEX). |
| label | ['string', 'null'] | Report labels of the segment type requested. |
| date | ['string', 'null'] | Date for the period requested in YYYY-MM-DD format. |
| value | string | Segment metric value. May be a number or string. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Segment",
"type": "object",
"description": "A single business or geographic segment data point for a company.",
"properties": {
"requestId": {
"type": "string",
"description": "Identifier that was used for the request."
},
"fsymId": {
"type": "['string', 'null']",
"description": "FactSet Regional Security Identifier."
},
"metric": {
"type": "['string', 'null']",
"description": "The segment metric (SALES, OPINC, ASSETS, DEP, CAPEX)."
},
"label": {
"type": "['string', 'null']",
"description": "Report labels of the segment type requested."
},
"date": {
"type": "['string', 'null']",
"description": "Date for the period requested in YYYY-MM-DD format."
},
"value": {
"type": "string",
"description": "Segment metric value. May be a number or string."
}
}
}