Argyle · Schema

PartnerBirthDate

Date of birth in year-month-day format.

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
year integer Birth year (1900 or later).
month integer Birth month (between 1 and 12).
day integer Birth day (between 1 and 31).
View JSON Schema on GitHub

JSON Schema

partnerbirthdate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/partnerbirthdate.json",
  "title": "PartnerBirthDate",
  "type": "object",
  "description": "Date of birth in year-month-day format.",
  "properties": {
    "year": {
      "type": "integer",
      "description": "Birth year (1900 or later)."
    },
    "month": {
      "type": "integer",
      "description": "Birth month (between 1 and 12)."
    },
    "day": {
      "type": "integer",
      "description": "Birth day (between 1 and 31)."
    }
  }
}