mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-11 03:41:42 +00:00
* Update: formatting * Fix: libraryItemController `play` endpoint + Endpoints cannot have optional path parameters + Moved schemas to `components` section * Fix: MeController optional path parameters * Fix: Books do not have `episodeId` in `mediaProgress` * Fix: `PlaybackSession` oneOf between book and podcast * Update: bundled spec * Fix: `allowReserved` in LibraryItem include query * Add: tags to AuthController endpoints * Fix: summary of play endpoints * Update: bundled spec
18 lines
548 B
YAML
18 lines
548 B
YAML
components:
|
|
schemas:
|
|
time:
|
|
type: integer
|
|
description: The time (in ms since POSIX epoch) when the bookmark was created.
|
|
example: 1616239000
|
|
bookmark:
|
|
properties:
|
|
libraryItemId:
|
|
$ref: './LibraryItem.yaml#/components/schemas/libraryItemId'
|
|
title:
|
|
type: string
|
|
description: The title of the bookmark.
|
|
example: Chapter 1
|
|
time:
|
|
$ref: '#/components/schemas/time'
|
|
createdAt:
|
|
$ref: '../schemas.yaml#/components/schemas/createdAt'
|