Factset · Schema
PACalculationParameters
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| componentid | string | The PA Engine component identifier to analyze. |
| accounts | array | List of accounts. |
| benchmarks | array | List of benchmarks. |
| groups | array | List of groupings for the PA calculation. This will take precedence over the groupings saved in the PA document. |
| currencyisocode | string | Currency ISO code for calculation. |
| columns | array | List of columns for the PA calculation. This will take precedence over the columns saved in the PA document. |
| componentdetail | string | Component detail type for the PA component. It can be GROUPS or GROUPSALL or TOTALS or SECURITIES. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PACalculationParameters",
"type": "object",
"properties": {
"componentid": {
"type": "string",
"description": "The PA Engine component identifier to analyze."
},
"accounts": {
"type": "array",
"description": "List of accounts."
},
"benchmarks": {
"type": "array",
"description": "List of benchmarks."
},
"groups": {
"type": "array",
"description": "List of groupings for the PA calculation. This will take precedence over the groupings saved in the PA document."
},
"currencyisocode": {
"type": "string",
"description": "Currency ISO code for calculation."
},
"columns": {
"type": "array",
"description": "List of columns for the PA calculation. This will take precedence over the columns saved in the PA document."
},
"componentdetail": {
"type": "string",
"description": "Component detail type for the PA component. It can be GROUPS or GROUPSALL or TOTALS or SECURITIES."
}
}
}