Otter · Schema

OverrideRule

Override rule for when to apply price overrides

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
externalServiceSlug string The service slug for which this rule should apply. E.g.: If externalServiceSlug is UberEats, then the priceOverride should be applied to UberEats.
View JSON Schema on GitHub

JSON Schema

public-api-override-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OverrideRule",
  "description": "Override rule for when to apply price overrides",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-override-rule-schema.json",
  "type": "object",
  "properties": {
    "externalServiceSlug": {
      "type": "string",
      "description": "The service slug for which this rule should apply. E.g.: If externalServiceSlug is UberEats, then the priceOverride should be applied to UberEats.",
      "example": "ubereats"
    }
  },
  "required": [
    "externalServiceSlug"
  ]
}