action randomlovecraft_get_sentences_from_book { label: "Random sentences from a specific book" description: "" provider: randomlovecraft method: GET path: "/books/{id}/sentences" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { book: { type: "object" properties: { id: { type: "string" } name: { type: "string" } year: { type: "string" } } } id: { type: "string" } sentence: { type: "string" } } } } } } }