Address schema from Paytronix Server API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Address", "description": "Address schema from Paytronix Server API", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-address-schema.json", "type": "object", "properties": { "address1": { "type": "string" }, "address2": { "type": "string" }, "city": { "type": "string" }, "stateProvince": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string", "example": "US" } } }