Factset · Schema
PAComponent
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Component identifier. |
| accounts | array | List of accounts saved in the PA document. |
| benchmarks | array | List of benchmarks saved in the PA document. |
| currencyisocode | string | |
| snapshot | boolean | Is the component type snapshot or subperiod. |
| path | string | The path to the document |
| name | string | Component name. |
| category | string | Component category. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PAComponent",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Component identifier."
},
"accounts": {
"type": "array",
"description": "List of accounts saved in the PA document."
},
"benchmarks": {
"type": "array",
"description": "List of benchmarks saved in the PA document."
},
"currencyisocode": {
"type": "string"
},
"snapshot": {
"type": "boolean",
"description": "Is the component type snapshot or subperiod."
},
"path": {
"type": "string",
"description": "The path to the document"
},
"name": {
"type": "string",
"description": "Component name."
},
"category": {
"type": "string",
"description": "Component category."
}
}
}