{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amberflo/refs/heads/main/json-schema/billing-address-schema.json", "title": "Address", "description": "Tax address for a customer", "type": "object", "properties": { "verified": { "type": "boolean", "description": "Whether the address has been verified" }, "line1": { "type": "string", "description": "Address line 1", "example": "123 Main Street" }, "state": { "type": "string", "description": "State or province", "example": "CA" }, "city": { "type": "string", "description": "City", "example": "San Francisco" }, "postalCode": { "type": "string", "description": "Postal or ZIP code", "example": "94105" }, "country": { "type": "string", "description": "ISO country code", "example": "US" } }, "required": [ "line1", "city", "country" ] }