Statements entity

A paginated array of account statements

Financial DataOpen BankingOpen FinanceFinancial Data ExchangeConsumer PermissionedAccount DataTransactionsInvestmentsInsuranceTax DataPayrollRESTOAuth2FAPICFPB 1033
View JSON Schema on GitHub

JSON Schema

fdx-statements.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Statements entity",
  "description": "A paginated array of account statements\n",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/PaginatedArray"
    },
    {
      "type": "object",
      "properties": {
        "statements": {
          "type": "array",
          "description": "An array of statements, each with its own HATEOAS link to retrieve the account statement\n",
          "items": {
            "$ref": "#/components/schemas/Statement"
          }
        }
      },
      "required": [
        "statements"
      ]
    }
  ]
}