Paytronix · Schema

RestaurantSearchResults

RestaurantSearchResults 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-restaurant-search-results-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RestaurantSearchResults",
  "description": "RestaurantSearchResults schema from Paytronix Online Ordering API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/online-ordering-api-restaurant-search-results-schema.json",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "example": 12
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Restaurant"
      }
    },
    "facets": {
      "$ref": "#/components/schemas/Facets"
    }
  }
}