BlackRock · JSON Structure

Blackrock Portfolio Structure

JSON structure for a portfolio record in the Aladdin platform

Type: Properties: 0
Asset ManagementFinanceFinTechInvestment ManagementPortfolio ManagementRisk AnalyticsFortune 500

BlackRock Aladdin Portfolio Structure is a JSON Structure definition published by BlackRock.

Meta-schema:

JSON Structure

blackrock-portfolio-structure.json Raw ↑
{
  "name": "BlackRock Aladdin Portfolio Structure",
  "description": "JSON structure for a portfolio record in the Aladdin platform",
  "fields": [
    { "name": "portfolioId", "type": "string", "required": true },
    { "name": "portfolioName", "type": "string", "required": true },
    { "name": "currency", "type": "string", "required": true, "description": "ISO 4217 currency code" },
    { "name": "totalMarketValue", "type": "number", "required": false },
    { "name": "asOfDate", "type": "date", "required": true },
    { "name": "benchmarkId", "type": "string", "required": false },
    { "name": "managerId", "type": "string", "required": false },
    { "name": "strategy", "type": "string", "required": false },
    { "name": "positions", "type": "array<Position>", "required": false }
  ]
}