DeliveryAddress schema from Paytronix Online Ordering API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "DeliveryAddress", "description": "DeliveryAddress schema from Paytronix Online Ordering API", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/online-ordering-api-delivery-address-schema.json", "type": "object", "properties": { "address1": { "type": "string", "example": "456 Elm St" }, "address2": { "type": "string" }, "city": { "type": "string", "example": "Boston" }, "state": { "type": "string", "example": "MA" }, "postalCode": { "type": "string", "example": "02110" } } }