mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-12-25 21:29:37 +00:00
Split schema to sub files
This commit is contained in:
parent
afe40be957
commit
c7ac12a67a
14 changed files with 964 additions and 957 deletions
126
docs/objects/metadata/BookMetadata.yaml
Normal file
126
docs/objects/metadata/BookMetadata.yaml
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
components:
|
||||
schemas:
|
||||
narrators:
|
||||
description: The narrators of the audiobook.
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
example: Sam Tsoutsouvas
|
||||
bookMetadataBase:
|
||||
type: object
|
||||
description: The base book metadata object for minified, normal, and extended schemas to inherit from.
|
||||
properties:
|
||||
title:
|
||||
description: The title of the book. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
example: Wizards First Rule
|
||||
subtitle:
|
||||
description: The subtitle of the book. Will be null if there is no subtitle.
|
||||
type: string
|
||||
nullable: true
|
||||
genres:
|
||||
description: The genres of the book.
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
example: ["Fantasy", "Sci-Fi", "Nonfiction: History"]
|
||||
publishedYear:
|
||||
description: The year the book was published. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
example: '2008'
|
||||
publishedDate:
|
||||
description: The date the book was published. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
publisher:
|
||||
description: The publisher of the book. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
example: Brilliance Audio
|
||||
description:
|
||||
description: A description for the book. Will be null if empty.
|
||||
type: string
|
||||
nullable: true
|
||||
example: >-
|
||||
The masterpiece that started Terry Goodkind's New York Times bestselling
|
||||
epic Sword of Truth In the aftermath of the brutal murder of his father,
|
||||
a mysterious woman, Kahlan Amnell, appears in Richard Cypher's forest
|
||||
sanctuary seeking help...and more. His world, his very beliefs, are
|
||||
shattered when ancient debts come due with thundering violence. In a
|
||||
dark age it takes courage to live, and more than mere courage to
|
||||
challenge those who hold dominion, Richard and Kahlan must take up that
|
||||
challenge or become the next victims. Beyond awaits a bewitching land
|
||||
where even the best of their hearts could betray them. Yet, Richard
|
||||
fears nothing so much as what secrets his sword might reveal about his
|
||||
own soul. Falling in love would destroy them - for reasons Richard can't
|
||||
imagine and Kahlan dare not say. In their darkest hour, hunted
|
||||
relentlessly, tormented by treachery and loss, Kahlan calls upon Richard
|
||||
to reach beyond his sword - to invoke within himself something more
|
||||
noble. Neither knows that the rules of battle have just changed...or
|
||||
that their time has run out. Wizard's First Rule is the beginning. One
|
||||
book. One Rule. Witness the birth of a legend.
|
||||
isbn:
|
||||
description: The ISBN of the book. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
asin:
|
||||
description: The ASIN of the book. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
example: B002V0QK4C
|
||||
language:
|
||||
description: The language of the book. Will be null if unknown.
|
||||
type: string
|
||||
nullable: true
|
||||
explicit:
|
||||
description: Whether the book has been marked as explicit.
|
||||
type: boolean
|
||||
example: false
|
||||
bookMetadataMinified:
|
||||
type: object
|
||||
description: The minified metadata for a book in the database.
|
||||
allOf:
|
||||
- $ref : '#/components/schemas/bookMetadataBase'
|
||||
- type: object
|
||||
properties:
|
||||
titleIgnorePrefix:
|
||||
description: The title of the book with any prefix moved to the end.
|
||||
type: string
|
||||
authorName:
|
||||
description: The name of the book's author(s).
|
||||
type: string
|
||||
example: Terry Goodkind
|
||||
authorNameLF:
|
||||
description: The name of the book's author(s) with last names first.
|
||||
type: string
|
||||
example: Goodkind, Terry
|
||||
narratorName:
|
||||
description: The name of the audiobook's narrator(s).
|
||||
type: string
|
||||
example: Sam Tsoutsouvas
|
||||
seriesName:
|
||||
description: The name of the book's series.
|
||||
type: string
|
||||
example: Sword of Truth
|
||||
bookChapter:
|
||||
type: object
|
||||
description: A book chapter. Includes the title and timestamps.
|
||||
properties:
|
||||
id:
|
||||
description: The ID of the book chapter.
|
||||
type: integer
|
||||
example: 0
|
||||
start:
|
||||
description: When in the book (in seconds) the chapter starts.
|
||||
type: integer
|
||||
example: 0
|
||||
end:
|
||||
description: When in the book (in seconds) the chapter ends.
|
||||
type: number
|
||||
example: 6004.6675
|
||||
title:
|
||||
description: The title of the chapter.
|
||||
type: string
|
||||
example: Wizards First Rule 01 Chapter 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue