Split schema to sub files

This commit is contained in:
Nicholas Wallace 2024-03-31 22:47:14 +00:00
parent afe40be957
commit c7ac12a67a
14 changed files with 964 additions and 957 deletions

21
docs/objects/Folder.yaml Normal file
View file

@ -0,0 +1,21 @@
components:
schemas:
folderId:
type: string
description: The ID of the folder.
format: uuid
example: e4bb1afb-4a4f-4dd6-8be0-e615d233185b
folder:
type: object
description: Folder used in library
properties:
id:
$ref: '#/components/schemas/folderId'
fullPath:
description: The path on the server for the folder. (Read Only)
type: string
example: /podcasts
libraryId:
$ref: './Library.yaml#/components/schemas/libraryId'
addedAt:
$ref: '../schemas.yaml#/components/schemas/addedAt'