Aladdin Studio · Schema

OrderList

Paginated list of trading orders

FinancialInvestment ManagementPortfolio AnalyticsRisk ManagementAsset ManagementBlackRockData Cloud

Properties

Name Type Description
orders array
totalCount integer Total number of orders
View JSON Schema on GitHub

JSON Schema

aladdin-studio-trading-order-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aladdin-studio/refs/heads/main/json-schema/aladdin-studio-trading-order-list-schema.json",
  "title": "OrderList",
  "description": "Paginated list of trading orders",
  "type": "object",
  "properties": {
    "orders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Order"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of orders",
      "example": 42
    }
  }
}