{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/pos-terminal-address-schema.json", "title": "Address", "description": "Address schema from Adyen API", "type": "object", "properties": { "city": { "type": "string" }, "countryCode": { "type": "string" }, "postalCode": { "type": "string" }, "stateOrProvince": { "type": "string" }, "streetAddress": { "type": "string" }, "streetAddress2": { "type": "string" } } }