MealMe · Schema

Product

Product schema from MealMe Food Ordering API

DeliveryFoodGroceryOrderingRestaurants

Properties

Name Type Description
product_id string
name string
price integer Price in cents.
available boolean
store_name string
menu_id string
View JSON Schema on GitHub

JSON Schema

mealme-api-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mealme/refs/heads/main/json-schema/mealme-api-product-schema.json",
  "title": "Product",
  "description": "Product schema from MealMe Food Ordering API",
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "example": "prod_5a3e9d12"
    },
    "name": {
      "type": "string",
      "example": "Tony's Pizza Napoletana"
    },
    "price": {
      "type": "integer",
      "description": "Price in cents.",
      "example": 1299
    },
    "available": {
      "type": "boolean",
      "example": false
    },
    "store_name": {
      "type": "string",
      "example": "Tony's Pizza Napoletana"
    },
    "menu_id": {
      "type": "string",
      "example": "id_7b2c4e"
    }
  }
}