Paytronix · Schema

MenuItemSearchResults

MenuItemSearchResults schema from Paytronix Online Ordering API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
count integer
results array
facets object
View JSON Schema on GitHub

JSON Schema

online-ordering-api-menu-item-search-results-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MenuItemSearchResults",
  "description": "MenuItemSearchResults schema from Paytronix Online Ordering API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/online-ordering-api-menu-item-search-results-schema.json",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "example": 34
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuItem"
      }
    },
    "facets": {
      "$ref": "#/components/schemas/Facets"
    }
  }
}