Argyle · Schema

PartnerVerificationListResponse

Paginated list of partner 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

partnerverificationlistresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/partnerverificationlistresponse.json",
  "title": "PartnerVerificationListResponse",
  "type": "object",
  "description": "Paginated list of partner 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/PartnerVerification"
      }
    }
  }
}