Argyle · Schema

BankingReportCustomField

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
label string Custom field name.
value string Custom field value.
shown boolean Show custom field on report PDF.
View JSON Schema on GitHub

JSON Schema

bankingreportcustomfield.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/bankingreportcustomfield.json",
  "title": "BankingReportCustomField",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "Custom field name."
    },
    "value": {
      "type": "string",
      "description": "Custom field value."
    },
    "shown": {
      "type": "boolean",
      "description": "Show custom field on report PDF."
    }
  }
}