Lunchbox · JSON Structure

Pos Pos Contact Structure

PosContact schema from Lunchbox POS API

Type: object Properties: 11
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

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

Properties

active address1 address2 address3 city state postal_code country phone latitude longitude

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/lunchbox/refs/heads/main/json-structure/pos-pos-contact-structure.json",
  "name": "PosContact",
  "description": "PosContact schema from Lunchbox POS API",
  "type": "object",
  "properties": {
    "active": {
      "type": "boolean",
      "example": true
    },
    "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"
    },
    "state": {
      "type": "string",
      "example": "NY"
    },
    "postal_code": {
      "type": "string",
      "example": "10001"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "phone": {
      "type": "string",
      "example": "2125551411"
    },
    "latitude": {
      "type": "double",
      "example": 40.74661
    },
    "longitude": {
      "type": "double",
      "example": -73.98833
    }
  }
}