SpotOn · Schema

OrderType

An order type configured at a location, such as Dine In or Takeout.

RestaurantPoint of SalePaymentsOnline OrderingReservationsReporting

Properties

Name Type Description
id string Unique order type identifier.
locationId string Unique location identifier.
name string Order type name.
deleted boolean Whether the order type is marked as deleted.
enabled boolean Whether the order type is enabled at the location.
wtmId integer Organization-level unique identifier for the order type.
View JSON Schema on GitHub

JSON Schema

restaurant-pos-export-order-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderType",
  "description": "An order type configured at a location, such as Dine In or Takeout.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spoton/refs/heads/main/json-schema/restaurant-pos-export-order-type-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique order type identifier."
    },
    "locationId": {
      "type": "string",
      "description": "Unique location identifier."
    },
    "name": {
      "type": "string",
      "description": "Order type name."
    },
    "deleted": {
      "type": "boolean",
      "description": "Whether the order type is marked as deleted."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the order type is enabled at the location."
    },
    "wtmId": {
      "type": "integer",
      "format": "int64",
      "description": "Organization-level unique identifier for the order type."
    }
  }
}