BlackRock · Schema

BlackRock Aladdin Portfolio

Schema for a portfolio record in the BlackRock Aladdin platform

Asset ManagementFinanceFinTechInvestment ManagementPortfolio ManagementRisk AnalyticsFortune 500

Properties

Name Type Description
portfolioId string Unique portfolio identifier in Aladdin
portfolioName string Display name of the portfolio
currency string Base currency (ISO 4217)
totalMarketValue number Total market value of the portfolio in base currency
asOfDate string Valuation date
benchmarkId string Benchmark identifier for performance attribution
managerId string Portfolio manager identifier
strategy string Investment strategy or mandate
positions array Holdings within the portfolio
View JSON Schema on GitHub

JSON Schema

blackrock-portfolio-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blackrock/main/json-schema/blackrock-portfolio-schema.json",
  "title": "BlackRock Aladdin Portfolio",
  "description": "Schema for a portfolio record in the BlackRock Aladdin platform",
  "type": "object",
  "properties": {
    "portfolioId": {
      "type": "string",
      "description": "Unique portfolio identifier in Aladdin"
    },
    "portfolioName": {
      "type": "string",
      "description": "Display name of the portfolio"
    },
    "currency": {
      "type": "string",
      "description": "Base currency (ISO 4217)",
      "example": "USD"
    },
    "totalMarketValue": {
      "type": "number",
      "description": "Total market value of the portfolio in base currency"
    },
    "asOfDate": {
      "type": "string",
      "format": "date",
      "description": "Valuation date"
    },
    "benchmarkId": {
      "type": "string",
      "description": "Benchmark identifier for performance attribution"
    },
    "managerId": {
      "type": "string",
      "description": "Portfolio manager identifier"
    },
    "strategy": {
      "type": "string",
      "description": "Investment strategy or mandate"
    },
    "positions": {
      "type": "array",
      "description": "Holdings within the portfolio",
      "items": {
        "$ref": "#/$defs/Position"
      }
    }
  },
  "required": ["portfolioId", "portfolioName", "currency", "asOfDate"],
  "$defs": {
    "Position": {
      "type": "object",
      "properties": {
        "securityId": { "type": "string" },
        "identifier": { "type": "string", "description": "ISIN, CUSIP, or SEDOL" },
        "quantity": { "type": "number" },
        "marketValue": { "type": "number" },
        "weight": { "type": "number", "description": "Weight as decimal (0-1)" },
        "assetClass": { "type": "string" },
        "currency": { "type": "string" }
      }
    }
  }
}