action spoonacular_analyze_arecipe_search_query { label: "Analyze a Recipe Search Query" description: "Parse a recipe search query to find out its intention." provider: spoonacular method: GET path: "/recipes/queries/analyze" encoding: json input: { type: "object" properties: { q: { type: "string" } } required: ["q"] additionalProperties: false } output: { type: "object" required: ["cuisines", "dishes", "ingredients", "modifiers"] properties: { cuisines: { type: "array" items: { type: "string" } } dishes: { type: "array" items: { type: "object" required: ["image", "name"] properties: { image: { type: "string" } name: { type: "string" } } } } ingredients: { type: "array" items: { type: "object" required: ["image", "include", "name"] properties: { image: { type: "string" } include: { type: "boolean" } name: { type: "string" } } } } modifiers: { type: "array" items: { type: "string" } } } } }