action spoonacular_guess_nutrition_by_dish_name { label: "Guess Nutrition by Dish Name" description: "Estimate the macronutrients of a dish based on its title." provider: spoonacular method: GET path: "/recipes/guessNutrition" encoding: json input: { type: "object" properties: { title: { type: "string" } } required: ["title"] additionalProperties: false } output: { type: "object" required: ["calories", "carbs", "fat", "protein", "recipesUsed"] properties: { calories: { type: "object" required: ["confidenceRange95Percent", "standardDeviation", "unit", "value"] properties: { confidenceRange95Percent: { type: "object" required: ["max", "min"] properties: { max: { type: "number" } min: { type: "number" } } } standardDeviation: { type: "number" } unit: { type: "string" } value: { type: "number" } } } carbs: { type: "object" required: ["confidenceRange95Percent", "standardDeviation", "unit", "value"] properties: { confidenceRange95Percent: { type: "object" required: ["max", "min"] properties: { max: { type: "number" } min: { type: "number" } } } standardDeviation: { type: "number" } unit: { type: "string" } value: { type: "number" } } } fat: { type: "object" required: ["confidenceRange95Percent", "standardDeviation", "unit", "value"] properties: { confidenceRange95Percent: { type: "object" required: ["max", "min"] properties: { max: { type: "number" } min: { type: "number" } } } standardDeviation: { type: "number" } unit: { type: "string" } value: { type: "number" } } } protein: { type: "object" required: ["confidenceRange95Percent", "standardDeviation", "unit", "value"] properties: { confidenceRange95Percent: { type: "object" required: ["max", "min"] properties: { max: { type: "number" } min: { type: "number" } } } standardDeviation: { type: "number" } unit: { type: "string" } value: { type: "number" } } } recipesUsed: { type: "integer" } } } }