First draft for user / login and logout

This commit is contained in:
Vito0912 2024-07-27 19:45:52 +02:00
parent ee53086444
commit 15136e2562
5 changed files with 274 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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'