State Street · Schema

PortfolioListResponse

Paginated list of portfolios

Fortune 500

Properties

Name Type Description
portfolios array
nextPageToken string Token to retrieve the next page of results
totalCount integer Total number of portfolios accessible
View JSON Schema on GitHub

JSON Schema

state-street-portfoliolistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortfolioListResponse",
  "title": "PortfolioListResponse",
  "type": "object",
  "description": "Paginated list of portfolios",
  "properties": {
    "portfolios": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Portfolio"
      }
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token to retrieve the next page of results"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of portfolios accessible"
    }
  }
}