Statement entity

An account statement

Financial DataOpen BankingOpen FinanceFinancial Data ExchangeConsumer PermissionedAccount DataTransactionsInvestmentsInsuranceTax DataPayrollRESTOAuth2FAPICFPB 1033

Properties

Name Type Description
accountId object Corresponds to `accountId` in Account entity
statementId object Long-term persistent identity of the statement. This identity must be unique within your organization
statementDate object The date the statement becomes available to be viewed by the user
description string Description of the statement
links object The HATEOAS links to retrieve this account statement, or to invoke other APIs. **Note:** Plaid only accepts one link object in this array
status string Availability status of statement
View JSON Schema on GitHub

JSON Schema

fdx-statement.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Statement entity",
  "description": "An account statement\n",
  "type": "object",
  "properties": {
    "accountId": {
      "$ref": "#/components/schemas/Identifier",
      "description": "Corresponds to `accountId` in Account entity\n"
    },
    "statementId": {
      "$ref": "#/components/schemas/Identifier",
      "description": "Long-term persistent identity of the statement. This identity must be unique within your organization\n"
    },
    "statementDate": {
      "$ref": "#/components/schemas/DateString",
      "description": "The date the statement becomes available to be viewed by the user\n"
    },
    "description": {
      "type": "string",
      "description": "Description of the statement\n"
    },
    "links": {
      "$ref": "#/components/schemas/HateoasLinks",
      "description": "The HATEOAS links to retrieve this account statement, or to invoke other APIs.\n\n**Note:** Plaid only accepts one link object in this array\n"
    },
    "status": {
      "type": "string",
      "description": "Availability status of statement\n"
    }
  }
}