addedInput schema / examples
Added value: +[
+ {
+ "ingredients": [
+ {
+ "name": "chicken breast",
+ "quantity": 2
+ },
+ {
+ "name": "tomato",
+ "quantity": 4
+ }
+ ],
+ "instructions": "Marinate the chicken, then simmer in the spiced tomato sauce for 20 minutes.",
+ "name": "Chicken Tikka Masala",
+ "servings": 4,
+ "url": "https://example.com/recipes/chicken-tikka-masala"
+ }
+]
addedInput schema / properties / ingredients / description
Added value: +"Optional list of ingredients required for the recipe"
addedInput schema / properties / ingredients / items / properties / name / description
Added value: +"Ingredient name"
addedInput schema / properties / ingredients / items / properties / name / examples
Added value: +[
+ "chicken breast"
+]
changedInput schema / properties / ingredients / items / properties / quantity / description
Previous value: -"Minimum: 1"New value: +"Whole-number quantity of the ingredient (no fractional/unit support). Minimum: 1"
addedInput schema / properties / ingredients / items / properties / quantity / examples
Added value: +[
+ 2
+]
addedInput schema / properties / instructions / description
Added value: +"Optional free-text cooking instructions/method"
addedInput schema / properties / name / description
Added value: +"Recipe name/title"
addedInput schema / properties / name / examples
Added value: +[
+ "Chicken Tikka Masala"
+]
changedInput schema / properties / servings / description
Previous value: -"Minimum: 1"New value: +"Number of servings the recipe yields. Minimum: 1"
addedInput schema / properties / servings / examples
Added value: +[
+ 4
+]
addedInput schema / properties / url / description
Added value: +"Optional source URL the recipe was found at (e.g. a link to a blog or recipe site)"
addedInput schema / properties / url / examples
Added value: +[
+ "https://example.com/recipes/chicken-tikka-masala"
+]