action bigoven_recipe_auto_complete_all_recipes { label: "Automatics the complete all recipes." provider: bigoven method: GET path: "/recipe/autocomplete/all" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } query: { type: "string" } } required: ["limit", "query"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { ImageURL: { type: "string" } QualityScore: { type: "integer" format: "int32" } RecipeID: { type: "integer" format: "int32" } Servings: { type: "number" format: "double" } Title: { type: "string" } } } } }