Affirm · Schema

ContactObject

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

FintechBNPLLendingPaymentsConsumer

Properties

Name Type Description
name object
address object
email string Email address for the contact.
phone_number string Phone number for the contact in E.164 format.
View JSON Schema on GitHub

JSON Schema

checkout-contact-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-contact-object-schema.json",
  "title": "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": "[email protected]"
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number for the contact in E.164 format.",
      "example": "example_value"
    }
  }
}