Affirm · JSON Structure

Checkout Contact Object Structure

Contact information for shipping or billing, including name, address, email, and phone number.

Type: object Properties: 4
FintechBNPLLendingPaymentsConsumer

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

Properties

name address email phone_number

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

JSON Structure

checkout-contact-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-contact-object-structure.json",
  "name": "ContactObject",
  "description": "Contact information for shipping or billing, including name, address, email, and phone number.",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/NameObject"
    },
    "address": {
      "$ref": "#/components/schemas/AddressObject"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address for the contact.",
      "example": "merchant@example.com"
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number for the contact in E.164 format.",
      "example": "example_value"
    }
  }
}