TheMealDB · Schema

ListResponse

List of available filter values

RecipesMealsFoodCooking

Properties

Name Type Description
meals array Array of list items
View JSON Schema on GitHub

JSON Schema

themealdb-list-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-list-response-schema.json",
  "title": "ListResponse",
  "description": "List of available filter values",
  "type": "object",
  "properties": {
    "meals": {
      "type": "array",
      "description": "Array of list items",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "string"
        }
      }
    }
  }
}