action goog_images { label: "Images" description: "Perform Google Image Search\n\nParameters\n----------\nquery : the string query to perform search. supports advance queries.\n\nReturns\n-------\njson: a list of results with the link, description, and title for each result" provider: goog method: GET path: "/v1/images/{query}" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" properties: { answers: { type: "array" items: { type: "string" } } image_results: { type: "array" items: { type: "object" properties: { image: { type: "object" properties: { alt: { type: "string" } src: { type: "string" } } } link: { type: "object" properties: { domain: { type: "string" } href: { type: "string" } title: { type: "string" } } } } } } results: { type: "array" items: { type: "object" } } total: { type: "integer" } } } }