State Street · Schema

PositionListResponse

Paginated list of portfolio positions

Fortune 500

Properties

Name Type Description
portfolioId string
asOfDate string As-of date for the positions
positions array
nextPageToken string
totalCount integer
View JSON Schema on GitHub

JSON Schema

state-street-positionlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PositionListResponse",
  "title": "PositionListResponse",
  "type": "object",
  "description": "Paginated list of portfolio positions",
  "properties": {
    "portfolioId": {
      "type": "string",
      "example": "PORT-12345"
    },
    "asOfDate": {
      "type": "string",
      "format": "date",
      "description": "As-of date for the positions"
    },
    "positions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Position"
      }
    },
    "nextPageToken": {
      "type": "string"
    },
    "totalCount": {
      "type": "integer"
    }
  }
}