Paytronix · Schema

DeliveryAddress

DeliveryAddress schema from Paytronix Online Ordering API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
address1 string
address2 string
city string
state string
postalCode string
View JSON Schema on GitHub

JSON Schema

online-ordering-api-delivery-address-schema.json Raw ↑
{
  "$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"
    }
  }
}