Envestnet · Schema

BasicStatement

Object that contains details about one or more aggregated statements.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
id number Unique identifier for the statement.
link object Reference path link to fetch more information about the specific statement.
statementDate string The date on which the statement is generated.
dueDate string The date by when the minimum payment is due to be paid.

Note- The due date that appears in the statement may differ from the due date at the account-level.
billingPeriodStart string Billing starting date for the statement.
billingPeriodEnd string Billing end date for the statement.
amountDue object The total amount owed at the end of the billing period.
minPaymentDue object The minimum amount that the user has to pay every month on the credit card account.
lastPaymentAmount object The last payment made for the previous billing cycle in the current statement period.
lastPaymentDate string The date on which the last payment was made during the billing cycle.
isLatest boolean The field is set to true if the statement is the latest generated statement.
lastUpdated string The date when the account was last updated by Envestnet Yodlee.
View JSON Schema on GitHub

JSON Schema

envestnet-basicstatement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BasicStatement",
  "title": "BasicStatement",
  "description": "Object that contains details about one or more aggregated statements.",
  "properties": {
    "id": {
      "type": "number",
      "description": "Unique identifier for the statement.",
      "readOnly": true
    },
    "link": {
      "description": "Reference path link to fetch more information about the specific statement.",
      "allOf": [
        {
          "$ref": "#/components/schemas/BasicStatementLink"
        }
      ],
      "readOnly": true
    },
    "statementDate": {
      "type": "string",
      "description": "The date on which the statement is generated.",
      "readOnly": true
    },
    "dueDate": {
      "type": "string",
      "description": "The date by when the minimum payment is due to be paid. <br><br><b>Note</b>- The due date that appears in the statement may  differ from the due date at the account-level.",
      "readOnly": true
    },
    "billingPeriodStart": {
      "type": "string",
      "description": "Billing starting date for the statement.",
      "readOnly": true
    },
    "billingPeriodEnd": {
      "type": "string",
      "description": "Billing end date for the statement.",
      "readOnly": true
    },
    "amountDue": {
      "description": "The total amount owed at the end of the billing period.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    },
    "minPaymentDue": {
      "description": "The minimum amount that the user has to pay every month on the  credit card account.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    },
    "lastPaymentAmount": {
      "description": "The last payment made for the previous billing cycle in the current  statement period.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    },
    "lastPaymentDate": {
      "type": "string",
      "description": "The date on which the last payment was made during the billing cycle.",
      "readOnly": true
    },
    "isLatest": {
      "type": "boolean",
      "description": "The field is set to true if the statement is the latest generated  statement.",
      "readOnly": true
    },
    "lastUpdated": {
      "type": "string",
      "description": "The date when the account was last updated by Envestnet Yodlee.",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "link",
    "accountId"
  ]
}