SpotOn · Schema

Address

A mailing address for an employee.

RestaurantPoint of SalePaymentsOnline OrderingReservationsReporting

Properties

Name Type Description
street1 string First line of the street address.
street2 string Second line of the street address.
city string City.
state string State or province.
zip string Postal code.
phone string Phone number.
View JSON Schema on GitHub

JSON Schema

restaurant-pos-export-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Address",
  "description": "A mailing address for an employee.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spoton/refs/heads/main/json-schema/restaurant-pos-export-address-schema.json",
  "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."
    }
  }
}