Argyle · Schema

PartnerReportCustomField

Custom field returned in report JSON as a pass-through value.

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

partnerreportcustomfield.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/partnerreportcustomfield.json",
  "title": "PartnerReportCustomField",
  "type": "object",
  "description": "Custom field returned in report JSON as a pass-through value.",
  "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."
    }
  }
}