Lithic · Schema

AccountHolderIndividualResponse

Information about an individual associated with an account holder. A subset of the information provided via KYC. For example, we do not return the government id.

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
address object Individual's current address
dob string Individual's date of birth, as an RFC 3339 date.
email string Individual's email address.
first_name string Individual's first name, as it appears on government-issued identity documents.
last_name string Individual's last name, as it appears on government-issued identity documents.
phone_number string Individual's phone number, entered in E.164 format.
entity_token string Globally unique identifier for the entity.
View JSON Schema on GitHub

JSON Schema

lithic-accountholderindividualresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountHolderIndividualResponse",
  "title": "AccountHolderIndividualResponse",
  "description": "Information about an individual associated with an account holder. A subset of the information provided via KYC. For example, we do not return the government id.",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/Address",
      "description": "Individual's current address"
    },
    "dob": {
      "description": "Individual's date of birth, as an RFC 3339 date.",
      "example": "1991-03-08 08:00:00",
      "type": "string"
    },
    "email": {
      "description": "Individual's email address.",
      "example": "[email protected]",
      "type": "string"
    },
    "first_name": {
      "description": "Individual's first name, as it appears on government-issued identity documents.",
      "example": "Tom",
      "type": "string"
    },
    "last_name": {
      "description": "Individual's last name, as it appears on government-issued identity documents.",
      "example": "Bombadil",
      "type": "string"
    },
    "phone_number": {
      "description": "Individual's phone number, entered in E.164 format.",
      "example": "+15555555555",
      "type": "string"
    },
    "entity_token": {
      "description": "Globally unique identifier for the entity.",
      "type": "string",
      "format": "uuid"
    }
  },
  "type": "object",
  "required": [
    "address",
    "dob",
    "email",
    "first_name",
    "last_name",
    "phone_number",
    "entity_token"
  ]
}