Lunchbox · Schema

PosOrderLocation

PosOrderLocation schema from Lunchbox POS API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
address1 string
address2 string
address3 string
city string
statecode string
zipcode string
province string
country string
phone string
instructions string
View JSON Schema on GitHub

JSON Schema

pos-pos-order-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PosOrderLocation",
  "description": "PosOrderLocation schema from Lunchbox POS API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-pos-order-location-schema.json",
  "type": "object",
  "properties": {
    "address1": {
      "type": "string",
      "example": "1216 Broadway"
    },
    "address2": {
      "type": "string",
      "nullable": true,
      "example": "string"
    },
    "address3": {
      "type": "string",
      "nullable": true,
      "example": "string"
    },
    "city": {
      "type": "string",
      "example": "New York"
    },
    "statecode": {
      "type": "string",
      "example": "NY"
    },
    "zipcode": {
      "type": "string",
      "example": "10001"
    },
    "province": {
      "type": "string",
      "nullable": true,
      "example": "string"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "phone": {
      "type": "string",
      "nullable": true,
      "example": "2125551411"
    },
    "instructions": {
      "type": "string",
      "example": "string"
    }
  }
}