TheMealDB · JSON Structure

Themealdb Meals Response Structure

Response containing a list of meals

Type: object Properties: 1
RecipesMealsFoodCooking

MealsResponse is a JSON Structure definition published by TheMealDB, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

meals

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/themealdb/refs/heads/main/json-structure/themealdb-meals-response-structure.json",
  "name": "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"
      }
    }
  }
}