Item_WrittenBook: {
    type: "compound";
    value: {
        tag?: {
            type: "compound";
            value: {
                author: { type: "string"; value: string };
                generation: { type: "int"; value: number };
                pages: {
                    type: "list";
                    value: {
                        type: "compound";
                        value: {
                            photoname: { type: "string"; value: string };
                            text: { type: "string"; value: string };
                        }[];
                    };
                };
                title: { type: "string"; value: string };
                xuid: { type: "long"; value: [high: number, low: number] };
            };
        };
    };
} & Item_ItemStack

Additional fields for [written book](https://minecraft.wiki/w/written book).