book-catalog.example.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. [
  2. {
  3. "id": "your-book-id",
  4. "title": "你的作品名",
  5. "author": "作者名",
  6. "category": "分类",
  7. "description": "作品简介",
  8. "wordCount": "约 12 万字",
  9. "coverStyle": "linear-gradient(135deg, #7b5c44, #2e405a)",
  10. "sections": [
  11. {
  12. "id": "lore-world",
  13. "title": "世界观设定",
  14. "kind": "lore",
  15. "order": 1,
  16. "entries": [
  17. {
  18. "id": "lore-world-1",
  19. "title": "资料一 世界规则",
  20. "kind": "lore",
  21. "order": 1,
  22. "content": [
  23. "这里放第一段设定资料。",
  24. "这里放第二段设定资料。"
  25. ]
  26. }
  27. ]
  28. },
  29. {
  30. "id": "lore-roles",
  31. "title": "人物档案",
  32. "kind": "lore",
  33. "order": 2,
  34. "entries": [
  35. {
  36. "id": "lore-roles-1",
  37. "title": "资料二 主角档案",
  38. "kind": "lore",
  39. "order": 1,
  40. "content": [
  41. "这里放角色资料。",
  42. "也可以拆成多条资料。"
  43. ]
  44. }
  45. ]
  46. },
  47. {
  48. "id": "novel-volume-1",
  49. "title": "正文 第一卷",
  50. "kind": "novel",
  51. "order": 100,
  52. "entries": [
  53. {
  54. "id": "novel-volume-1-1",
  55. "title": "第一章 章节名",
  56. "kind": "novel",
  57. "order": 1,
  58. "content": [
  59. "这里放正文第一段。",
  60. "这里放正文第二段。"
  61. ]
  62. },
  63. {
  64. "id": "novel-volume-1-2",
  65. "title": "第二章 下一节",
  66. "kind": "novel",
  67. "order": 2,
  68. "content": [
  69. "这里继续放正文内容。"
  70. ]
  71. }
  72. ]
  73. }
  74. ]
  75. }
  76. ]