Affirm · JSON Structure

Checkout Name Object Structure

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

Type: object Properties: 3
FintechBNPLLendingPaymentsConsumer

NameObject is a JSON Structure definition published by Affirm, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

first last full

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

checkout-name-object-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-structure/checkout-name-object-structure.json",
  "name": "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"
    }
  }
}