{ "$schema": "https://json-structure.org/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/block/main/json-structure/block-customer-structure.json", "title": "Customer", "description": "Represents a customer profile in a Square seller account.", "type": "object", "members": [ { "name": "id", "type": "string", "description": "Unique ID for this customer." }, { "name": "given_name", "type": "string", "description": "Customer's first name." }, { "name": "family_name", "type": "string", "description": "Customer's last name." }, { "name": "email_address", "type": "string", "description": "Customer's email address." }, { "name": "phone_number", "type": "string", "description": "Customer's phone number." }, { "name": "created_at", "type": "string", "description": "Timestamp when customer profile was created." }, { "name": "updated_at", "type": "string", "description": "Timestamp when customer profile was last updated." } ] }