TheMealDB · Schema

MealsResponse

Response containing a list of meals

RecipesMealsFoodCooking

Properties

Name Type Description
meals array Array of meal objects; null if no results found
View JSON Schema on GitHub

JSON Schema

themealdb-meals-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/themealdb/refs/heads/main/json-schema/themealdb-meals-response-schema.json",
  "title": "MealsResponse",
  "description": "Response containing a list of meals",
  "type": "object",
  "properties": {
    "meals": {
      "type": "array",
      "description": "Array of meal objects; null if no results found",
      "nullable": true,
      "items": {
        "$ref": "#/components/schemas/Meal"
      }
    }
  }
}