Envestnet · Schema

Renewal

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
defaultRenewalDuration integer Shows the duration in days of consent renewal
isReauthorizationRequired boolean Shows if the consent renewal need reauthorization
View JSON Schema on GitHub

JSON Schema

envestnet-renewal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Renewal",
  "title": "Renewal",
  "required": [
    "defaultRenewalDuration",
    "isReauthorizationRequired"
  ],
  "type": "object",
  "properties": {
    "defaultRenewalDuration": {
      "type": "integer",
      "description": "Shows the duration in days of consent renewal",
      "format": "int64"
    },
    "isReauthorizationRequired": {
      "type": "boolean",
      "description": "Shows if the consent renewal need reauthorization"
    }
  }
}