action spoonacular_add_meal_plan_template { label: "Add Meal Plan Template" description: "Add a meal plan template for a user." provider: spoonacular method: POST path: "/mealplanner/{username}/templates" encoding: json input: { type: "object" properties: { hash: { type: "string" } username: { type: "string" } } required: ["hash", "username"] additionalProperties: false } output: { type: "object" required: ["items", "name", "publishAsPublic"] properties: { items: { type: "array" items: { type: "object" required: ["day", "slot", "position", "type"] properties: { day: { type: "integer" } position: { type: "integer" } slot: { type: "integer" } type: { type: "string" } value: { type: "object" properties: { id: { type: "integer" } imageType: { type: "string" } servings: { type: "number" } title: { type: "string" } } } } } } name: { type: "string" } publishAsPublic: { type: "boolean" } } } }