Envestnet · Schema

CreditAcceleratorStatementResponse

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
configName string The config name using which the credit accelerator file generation was requested
reportId integer Unique identifier for the credit accelerator file
statements array
submissionDate string Date on which the request to generate credit accelerator file was submitted
status string Generation status of the requested credit accelerator file requested
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorstatementresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorStatementResponse",
  "title": "CreditAcceleratorStatementResponse",
  "type": "object",
  "properties": {
    "configName": {
      "type": "string",
      "description": "The config name using which the credit accelerator file generation was requested",
      "readOnly": true
    },
    "reportId": {
      "type": "integer",
      "description": "Unique identifier for the credit accelerator file",
      "format": "int64",
      "readOnly": true
    },
    "statements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorStatement"
      }
    },
    "submissionDate": {
      "type": "string",
      "description": "Date on which the request to generate credit accelerator file was submitted",
      "readOnly": true
    },
    "status": {
      "type": "string",
      "description": "Generation status of the requested credit accelerator file requested",
      "readOnly": true,
      "enum": [
        "SUBMITTED",
        "IN_PROGRESS",
        "COMPLETED",
        "FAILED"
      ]
    }
  }
}