{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ShortAddress", "type": "object", "description": "Address.", "properties": { "addressLine1": { "type": "string", "description": "The street detail for the address." }, "addressLine2": { "type": "string", "description": "The secondary street detail for the address." }, "regionCode": { "type": "string", "description": "Region where merchant's legal office is located" }, "city": { "type": "string", "description": "City where merchant's legal office is located" }, "postalCode": { "type": "string", "description": "The zip/postal detail for the merchant's legal address" } } }