Argyle · Schema

ClientVerificationEmployment

Employment details for the user.

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
employer string Name of the employer.
status string User's current employment status at this employer.
hire_date string Employment start date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
termination_date string Employment end date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. `null` when employment `status` is `active`.
View JSON Schema on GitHub

JSON Schema

clientverificationemployment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientverificationemployment.json",
  "title": "ClientVerificationEmployment",
  "type": "object",
  "description": "Employment details for the user.",
  "properties": {
    "employer": {
      "type": "string",
      "description": "Name of the employer."
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "previous"
      ],
      "description": "User's current employment status at this employer."
    },
    "hire_date": {
      "type": "string",
      "format": "date",
      "description": "Employment start date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
    },
    "termination_date": {
      "type": "string",
      "format": "date",
      "nullable": true,
      "description": "Employment end date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. `null` when employment `status` is `active`."
    }
  }
}