{ "$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" } } }