action randomlovecraft_get_books { label: "List all books" description: "" provider: randomlovecraft method: GET path: "/books" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } year: { type: "string" } } } } } } }