Affirm · Schema

NameObject

A person's name split into first and last components.

FintechBNPLLendingPaymentsConsumer

Properties

Name Type Description
first string First name.
last string Last name.
full string Full name as a single string.
View JSON Schema on GitHub

JSON Schema

checkout-name-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-schema/checkout-name-object-schema.json",
  "title": "NameObject",
  "description": "A person's name split into first and last components.",
  "type": "object",
  "properties": {
    "first": {
      "type": "string",
      "description": "First name.",
      "example": "example_value"
    },
    "last": {
      "type": "string",
      "description": "Last name.",
      "example": "example_value"
    },
    "full": {
      "type": "string",
      "description": "Full name as a single string.",
      "example": "example_value"
    }
  }
}