Argyle · Schema

Deduction

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
amount string Amount of the deduction.
name string Name or description of the deduction.
tax_classification string Tax classification. - `pre_tax` - `post_tax`
amount_ytd string Total amount deducted year-to-date, including the amounts from this paystub.
View JSON Schema on GitHub

JSON Schema

deduction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/deduction.json",
  "title": "Deduction",
  "type": "object",
  "properties": {
    "amount": {
      "type": "string",
      "description": "Amount of the deduction."
    },
    "name": {
      "type": "string",
      "description": "Name or description of the deduction."
    },
    "tax_classification": {
      "type": "string",
      "enum": [
        "pre_tax",
        "post_tax"
      ],
      "description": "Tax classification.\n- `pre_tax`\n- `post_tax`\n"
    },
    "amount_ytd": {
      "type": "string",
      "description": "Total amount deducted year-to-date, including the amounts from this paystub."
    }
  }
}