Argyle · Schema

ClientVerificationReportConfiguration

Optional banking report configurations.

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
bank_accounts array List of [bank account](/api-reference/bank-accounts) IDs to be included in the report.
from_date string Restrict report to data from on or after this datetime ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)). - `VOAI` reports - controls the length of asset history - `VOA` reports - controls the leng
income_from_date string Restrict report to data from on or after this datetime ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)). - `VOAI` reports - controls the length of income history - Does not apply to `VOA` or `VOI`
income_stream_confidence_minimum integer Limit income streams used in the report to those above this confidence value (`0-100` accepted). Only available for `VOI` and `VOAI` report types.
report_custom_fields array Include up to `5` custom objects in the report metadata. Often used for identifying information.
View JSON Schema on GitHub

JSON Schema

clientverificationreportconfiguration.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientverificationreportconfiguration.json",
  "title": "ClientVerificationReportConfiguration",
  "type": "object",
  "description": "Optional banking report configurations.",
  "properties": {
    "bank_accounts": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of [bank account](/api-reference/bank-accounts) IDs to be included in the report."
    },
    "from_date": {
      "type": "string",
      "format": "date-time",
      "description": "Restrict report to data from on or after this datetime ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)).\n\n- `VOAI` reports - controls the length of asset history\n- `VOA` reports - controls the length of asset history\n- `VOI` reports - controls the length of income history\n"
    },
    "income_from_date": {
      "type": "string",
      "format": "date-time",
      "description": "Restrict report to data from on or after this datetime ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)).\n\n- `VOAI` reports - controls the length of income history\n- Does not apply to `VOA` or `VOI` reports.\n"
    },
    "income_stream_confidence_minimum": {
      "type": "integer",
      "minimum": 0,
      "maximum": 100,
      "description": "Limit income streams used in the report to those above this confidence value (`0-100` accepted).\n\nOnly available for `VOI` and `VOAI` report types.\n"
    },
    "report_custom_fields": {
      "type": "array",
      "maxItems": 5,
      "description": "Include up to `5` custom objects in the report metadata. Often used for identifying information.",
      "items": {
        "$ref": "#/components/schemas/ClientReportCustomField"
      }
    }
  }
}