action spoonacular_add_to_meal_plan { label: "Add to Meal Plan" description: "Add an item to the user's meal plan." provider: spoonacular method: POST path: "/mealplanner/{username}/items" encoding: json input: { type: "object" properties: { date: { type: "number" } position: { type: "integer" } slot: { type: "integer" } type: { type: "string" } username: { type: "string" } value: { type: "object" required: ["ingredients"] properties: { ingredients: { type: "array" items: { type: "object" required: ["name"] properties: { name: { type: "string" } } } } } } } required: ["date", "position", "slot", "type", "username", "value"] additionalProperties: false } output: { type: "object" } }