Bank of America · Schema

PaymentListResponse

Paginated list of payments

BankingCorporate BankingFinancePaymentsTreasuryCashProFortune 100

Properties

Name Type Description
payments array
totalCount integer
pageSize integer
offset integer
View JSON Schema on GitHub

JSON Schema

paymentlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bank-of-america/json-schema/paymentlistresponse-schema.json",
  "title": "PaymentListResponse",
  "type": "object",
  "description": "Paginated list of payments",
  "properties": {
    "payments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentResponse"
      }
    },
    "totalCount": {
      "type": "integer"
    },
    "pageSize": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    }
  }
}