{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Address", "title": "Address", "type": "object", "properties": { "AddressLine": { "type": "array", "items": { "type": "string" }, "description": "Street address lines" }, "City": { "type": "string" }, "StateProvinceCode": { "type": "string", "description": "Two-letter state/province code" }, "PostalCode": { "type": "string" }, "CountryCode": { "type": "string", "description": "Two-letter ISO country code", "example": "US" }, "ResidentialAddressIndicator": { "type": "string", "description": "Presence indicates residential address" } } }