action spoonacular_get_meal_plan_template { label: "Get Meal Plan Template" description: "Get information about a meal plan template." provider: spoonacular method: GET path: "/mealplanner/{username}/templates/{id}" encoding: json input: { type: "object" properties: { id: { type: "number" } username: { type: "string" } } required: ["id", "username"] additionalProperties: false } output: { type: "object" required: ["days", "id", "name"] properties: { days: { type: "array" items: { type: "object" required: ["day"] properties: { day: { type: "string" } items: { type: "array" items: { type: "object" required: ["id", "slot", "position", "type"] properties: { id: { type: "integer" } position: { type: "integer" } slot: { type: "integer" } type: { type: "string" } value: { type: "object" required: ["id", "title", "imageType"] properties: { id: { type: "number" } imageType: { type: "string" } title: { type: "string" } } } } } } nutritionSummary: { type: "object" required: ["nutrients"] properties: { nutrients: { type: "array" items: { type: "object" required: ["name", "amount", "unit", "percentDailyNeeds"] properties: { amount: { type: "number" } name: { type: "string" } percentDailyNeeds: { type: "number" } unit: { type: "string" } } } } } } nutritionSummaryBreakfast: { type: "object" required: ["nutrients"] properties: { nutrients: { type: "array" items: { type: "object" required: ["name", "amount", "unit", "percentDailyNeeds"] properties: { amount: { type: "number" } name: { type: "string" } percentDailyNeeds: { type: "number" } unit: { type: "string" } } } } } } nutritionSummaryDinner: { type: "object" required: ["nutrients"] properties: { nutrients: { type: "array" items: { type: "object" required: ["name", "amount", "unit", "percentDailyNeeds"] properties: { amount: { type: "number" } name: { type: "string" } percentDailyNeeds: { type: "number" } unit: { type: "string" } } } } } } nutritionSummaryLunch: { type: "object" required: ["nutrients"] properties: { nutrients: { type: "array" items: { type: "object" required: ["name", "amount", "unit", "percentDailyNeeds"] properties: { amount: { type: "number" } name: { type: "string" } percentDailyNeeds: { type: "number" } unit: { type: "string" } } } } } } } } } id: { type: "integer" } name: { type: "string" } } } }