Uber · Schema

MenuCategory

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
category_id string Unique identifier for the category.
title object
entities array
View JSON Schema on GitHub

JSON Schema

uber-menucategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MenuCategory",
  "title": "MenuCategory",
  "type": "object",
  "properties": {
    "category_id": {
      "type": "string",
      "description": "Unique identifier for the category."
    },
    "title": {
      "type": "object",
      "properties": {
        "en": {
          "type": "string",
          "description": "Category name in English."
        }
      }
    },
    "entities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuItem"
      }
    }
  }
}