Retrieve all
GET/scenarios/reference/assets/financial/classes
Asset classes are configured for each client independently and can be retrieved using this end-point.
An asset class is a group of instruments which have similar financial characteristics and behave similarly in the marketplace.
Each asset class has its own forward-looking mean and standard deviation (variance). Each asset class has a correlation (or co-variance) relative to itself (always 1.0) and relative to each other asset class. Taken together, these form a set of internally consistent assumptions that define an economic scenario.
The asset classes are configurable and can be configured in the admin panel for each client.
Request
Query Parameters
Zero-based page index (0..N)
Default value: 20
The size of the page to be returned
Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
content object[]
Whether the asset class is active for the client.
The country in which this asset class is usable.
Description of the resource.
The id of the resource.
The name of the resource.
Possible values: [CASH
, BOND
, EQUITY
, REAL
, OTHER
]
Any of the supported types (CASH, BOND, EQUITY, REAL, OTHER).
pageable object
sort object
sort object
{
"content": [
{
"active": true,
"country": "GLOBAL",
"description": "My resource's description",
"id": "1",
"name": "My resource",
"type": "BOND"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}
Not Found
Internal Server Error