Paytronix · JSON Structure

Online Ordering Api Delivery Address Structure

DeliveryAddress schema from Paytronix Online Ordering API

Type: object Properties: 5
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

DeliveryAddress is a JSON Structure definition published by Paytronix, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address1 address2 city state postalCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/online-ordering-api-delivery-address-structure.json",
  "name": "DeliveryAddress",
  "description": "DeliveryAddress schema from Paytronix Online Ordering API",
  "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"
    }
  }
}