action goog_search { label: "Search" description: "Perform Google Search\n\nParameters\n----------\nquery : the string query to perform search. supports advance queries. Check out https://moz.com/blog/the-ultimate-guide-to-the-google-search-parameters guide for formating\n\nReturns\n-------\njson: a list of results with the link, description, and title for each result" provider: goog method: GET path: "/v1/search/{query}" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" description: "results" properties: { answer: { type: "string" } results: { type: "array" items: { type: "object" properties: { description: { type: "string" } link: { type: "string" } title: { type: "string" } } } } total: { type: "string" } } } }