{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactInformation", "title": "ContactInformation", "type": "object", "properties": { "default_sender_name": { "description": "This field is used to auto-populate the default sender name on flow and campaign emails.", "type": "string", "example": "Klaviyo Demo" }, "default_sender_email": { "description": "This field is used to auto-populate the default sender email address on flow and campaign emails.", "type": "string", "example": "contact@klaviyo-demo.com" }, "website_url": { "type": "string", "example": "https://www.klaviyo.com", "nullable": true }, "organization_name": { "type": "string", "example": "Klaviyo Demo" }, "street_address": { "description": "Street address for your organization.", "$ref": "#/components/schemas/StreetAddress" } }, "required": [ "default_sender_name", "default_sender_email", "organization_name", "street_address" ] }