changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "caloriesPerServing": {
+ "description": "Calories per serving",
+ "type": "number"
+ },
+ "cookTimeMinutes": {
+ "description": "Cook time in minutes",
+ "type": "number"
+ },
+ "cuisine": {
+ "description": "Cuisine type",
+ "type": "string"
+ },
+ "difficulty": {
+ "description": "Difficulty level",
+ "type": "string"
+ },
+ "id": {
+ "description": "Recipe ID",
+ "type": "number"
+ },
+ "image": {
+ "description": "Recipe image URL",
+ "type": "string"
+ },
+ "ingredients": {
+ "description": "List of ingredients",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "instructions": {
+ "description": "Cooking instructions",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Recipe name",
+ "type": "string"
+ },
+ "prepTimeMinutes": {
+ "description": "Prep time in minutes",
+ "type": "number"
+ },
+ "rating": {
+ "description": "Recipe rating",
+ "type": "number"
+ },
+ "reviewCount": {
+ "description": "Number of reviews",
+ "type": "number"
+ },
+ "servings": {
+ "description": "Number of servings",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Recipe tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "userId": {
+ "description": "User ID of recipe author",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}