Argyle · Schema

ClientVerificationListResponse

Paginated list of client verification objects.

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
next string URL for the next page of results, if available.
previous string URL for the previous page of results, if available.
results array
View JSON Schema on GitHub

JSON Schema

clientverificationlistresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientverificationlistresponse.json",
  "title": "ClientVerificationListResponse",
  "type": "object",
  "description": "Paginated list of client verification objects.",
  "properties": {
    "next": {
      "type": "string",
      "format": "uri",
      "nullable": true,
      "description": "URL for the next page of results, if available."
    },
    "previous": {
      "type": "string",
      "format": "uri",
      "nullable": true,
      "description": "URL for the previous page of results, if available."
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClientVerification"
      }
    }
  }
}