ItsaCheckmate · Schema

Location

A restaurant location served by ItsaCheckmate.

RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Properties

Name Type Description
id string Unique location identifier.
name string Location display name.
timezone string Location time zone in TZ database format.
verified boolean Whether the location has been verified.
pos_system string Name of the connected POS system.
address object Postal address of a location.
View JSON Schema on GitHub

JSON Schema

marketplace-api-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/itsacheckmate/refs/heads/main/json-schema/marketplace-api-location-schema.json",
  "title": "Location",
  "description": "A restaurant location served by ItsaCheckmate.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique location identifier."
    },
    "name": {
      "type": "string",
      "description": "Location display name."
    },
    "timezone": {
      "type": "string",
      "description": "Location time zone in TZ database format."
    },
    "verified": {
      "type": "boolean",
      "description": "Whether the location has been verified."
    },
    "pos_system": {
      "type": "string",
      "description": "Name of the connected POS system."
    },
    "address": {
      "title": "Address",
      "type": "object",
      "description": "Postal address of a location.",
      "properties": {
        "street": {
          "type": "string",
          "description": "Street address."
        },
        "city": {
          "type": "string",
          "description": "City."
        },
        "state": {
          "type": "string",
          "description": "State or region code."
        },
        "zip": {
          "type": "string",
          "description": "Postal code."
        },
        "country": {
          "type": "string",
          "description": "ISO country code."
        }
      }
    }
  }
}