action spoonacular_get_wine_recommendation { label: "Wine Recommendation" description: "Get a specific wine recommendation (concrete product) for a given wine type, e.g. \"merlot\"." provider: spoonacular method: GET path: "/food/wine/recommendation" encoding: json input: { type: "object" properties: { maxPrice: { type: "number" } minRating: { type: "number" } number: { type: "number" } wine: { type: "string" } } required: ["wine"] additionalProperties: false } output: { type: "object" required: ["recommendedWines", "totalFound"] properties: { recommendedWines: { type: "array" items: { type: "object" required: ["id", "title", "averageRating", "description", "imageUrl", "link", "price", "ratingCount", "score"] properties: { averageRating: { type: "number" } description: { type: "string" } id: { type: "integer" } imageUrl: { type: "string" } link: { type: "string" } price: { type: "string" } ratingCount: { type: "integer" } score: { type: "number" } title: { type: "string" } } } } totalFound: { type: "integer" } } } }