BookRecommendation
v2 · 7 objects
Fields
TypeScript
/** A recommended book with author, year, and why it fits the theme */
interface BookRecommendation {
year?: number;
/** The angle it was recommended for */
theme: string;
title: string;
author: string;
/** Why it fits */
reason: string;
subgenre?: string;
length?: string;
}Version history
v22026-07-05 · by user · 7 objects
- + length?: string
v12026-07-05 · by ai · 0 objects
- Created with 6 field(s)