TheMealDB · Schema

FilterResponse

Filtered meal list with summary information only

RecipesMealsFoodCooking

Properties

Name Type Description
meals array Array of meal summaries
View JSON Schema on GitHub

JSON Schema

themealdb-filter-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-filter-response-schema.json",
  "title": "FilterResponse",
  "description": "Filtered meal list with summary information only",
  "type": "object",
  "properties": {
    "meals": {
      "type": "array",
      "description": "Array of meal summaries",
      "nullable": true,
      "items": {
        "type": "object",
        "properties": {
          "strMeal": {
            "type": "string",
            "description": "Meal name"
          },
          "strMealThumb": {
            "type": "string",
            "description": "Thumbnail URL"
          },
          "idMeal": {
            "type": "string",
            "description": "Meal ID"
          }
        }
      }
    }
  }
}