SpotOn · JSON Structure

Restaurant Pos Export Address Structure

A mailing address for an employee.

Type: object Properties: 6
RestaurantPoint of SalePaymentsOnline OrderingReservationsReporting

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

Properties

street1 street2 city state zip phone

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/spoton/refs/heads/main/json-structure/restaurant-pos-export-address-structure.json",
  "name": "Address",
  "description": "A mailing address for an employee.",
  "type": "object",
  "properties": {
    "street1": {
      "type": "string",
      "description": "First line of the street address."
    },
    "street2": {
      "type": "string",
      "description": "Second line of the street address."
    },
    "city": {
      "type": "string",
      "description": "City."
    },
    "state": {
      "type": "string",
      "description": "State or province."
    },
    "zip": {
      "type": "string",
      "description": "Postal code."
    },
    "phone": {
      "type": "string",
      "description": "Phone number."
    }
  }
}