Filtered meal list with summary information only
{ "$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" } } } } } }