MealMe · JSON Structure

Mealme Api Product Structure

Product schema from MealMe Food Ordering API

Type: object Properties: 6
DeliveryFoodGroceryOrderingRestaurants

Product is a JSON Structure definition published by MealMe, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

product_id name price available store_name menu_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mealme/refs/heads/main/json-structure/mealme-api-product-structure.json",
  "name": "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": "int32",
      "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"
    }
  }
}