Moov · Schema

IndividualProfile

Profile data for an individual Moov account.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
name object
email string Email address of the individual.
phone object
address object
birthDate string Date of birth in ISO 8601 format (YYYY-MM-DD).
governmentID object
View JSON Schema on GitHub

JSON Schema

moov-individualprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IndividualProfile",
  "title": "IndividualProfile",
  "type": "object",
  "description": "Profile data for an individual Moov account.",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/Name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the individual."
    },
    "phone": {
      "$ref": "#/components/schemas/Phone"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "birthDate": {
      "type": "string",
      "format": "date",
      "description": "Date of birth in ISO 8601 format (YYYY-MM-DD)."
    },
    "governmentID": {
      "$ref": "#/components/schemas/GovernmentID"
    }
  }
}