mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-12-28 06:39:39 +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
33
docs/schemas.yaml
Normal file
33
docs/schemas.yaml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
components:
|
||||
schemas:
|
||||
addedAt:
|
||||
type: integer
|
||||
description: The time (in ms since POSIX epoch) when added to the server.
|
||||
example: 1633522963509
|
||||
createdAt:
|
||||
type: integer
|
||||
description: The time (in ms since POSIX epoch) when was created.
|
||||
example: 1633522963509
|
||||
updatedAt:
|
||||
type: integer
|
||||
description: The time (in ms since POSIX epoch) when last updated.
|
||||
example: 1633522963509
|
||||
size:
|
||||
description: The total size (in bytes) of the item or file.
|
||||
type: integer
|
||||
example: 268824228
|
||||
durationSec:
|
||||
description: The total length (in seconds) of the item or file.
|
||||
type: number
|
||||
example: 33854.905
|
||||
tags:
|
||||
description: Tags applied to items.
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
example: ["To Be Read", "Genre: Nonfiction"]
|
||||
inode:
|
||||
description: The inode of the item in the file system.
|
||||
type: string
|
||||
format: "[0-9]*"
|
||||
example: '649644248522215260'
|
||||
Loading…
Add table
Add a link
Reference in a new issue