State Street · Schema

TransactionListResponse

Paginated list of transactions

Fortune 500

Properties

Name Type Description
portfolioId string
startDate string
endDate string
transactions array
nextPageToken string
totalCount integer
View JSON Schema on GitHub

JSON Schema

state-street-transactionlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionListResponse",
  "title": "TransactionListResponse",
  "type": "object",
  "description": "Paginated list of transactions",
  "properties": {
    "portfolioId": {
      "type": "string",
      "example": "PORT-12345"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    },
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "nextPageToken": {
      "type": "string"
    },
    "totalCount": {
      "type": "integer"
    }
  }
}