action bigoven_recipe_auto_complete { label: "Given a query, return recipe titles starting with query. Query must be at least 3 chars in length." provider: bigoven method: GET path: "/recipe/autocomplete" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }