changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "meals": {
+ "description": "List of meals matching the search query",
+ "items": {
+ "properties": {
+ "area": {
+ "description": "Cuisine area/region (e.g., Italian, Indian)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "category": {
+ "description": "Meal category (e.g., dessert, seafood)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "TheMealDB meal ID",
+ "type": "string"
+ },
+ "ingredients": {
+ "description": "List of ingredients with measurements",
+ "items": {
+ "properties": {
+ "ingredient": {
+ "description": "Ingredient name",
+ "type": "string"
+ },
+ "measure": {
+ "description": "Measurement quantity and unit",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ingredient",
+ "measure"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "instructions": {
+ "description": "Cooking instructions",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Meal name",
+ "type": "string"
+ },
+ "source_url": {
+ "description": "Source website URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tags": {
+ "description": "List of meal tags/keywords",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "thumbnail_url": {
+ "description": "URL to meal thumbnail image",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "youtube_url": {
+ "description": "YouTube video URL for recipe",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "category",
+ "area",
+ "instructions",
+ "thumbnail_url",
+ "youtube_url",
+ "source_url",
+ "tags",
+ "ingredients"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Number of meals matching the search query",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "meals"
+ ],
+ "type": "object"
+}