Paytronix · JSON Structure

Server Api Address Structure

Address schema from Paytronix Server API

Type: object Properties: 6
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

address1 address2 city stateProvince postalCode country

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/server-api-address-structure.json",
  "name": "Address",
  "description": "Address schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "address1": {
      "type": "string"
    },
    "address2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "stateProvince": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string",
      "example": "US"
    }
  }
}