From e30b16d91d94320f74b30907c88f7f539f9d9865 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 24 Oct 2020 19:39:34 +0200 Subject: [PATCH] Public API: Cleanup history schemas Signed-off-by: David Mehren Co-authored-by: Yannick Bungers --- docs/dev/public_api.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/dev/public_api.yml b/docs/dev/public_api.yml index 012422b32..e3fb3ebf7 100644 --- a/docs/dev/public_api.yml +++ b/docs/dev/public_api.yml @@ -47,7 +47,9 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/History" + type: array + items: + "$ref": "#/components/schemas/History" '401': "$ref": "#/components/responses/UnauthorizedError" /me/history/{note}: @@ -60,11 +62,11 @@ paths: description: JSON Object which contains id, title, tags, last visit time and pinned status responses: '200': - description: The list of recently viewed notes and pinned notes. + description: Information about the history entry content: application/json: schema: - "$ref": "#/components/schemas/HistoryObject" + "$ref": "#/components/schemas/History" '401': "$ref": "#/components/responses/UnauthorizedError" '404': @@ -88,7 +90,7 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/HistoryUpdateObject" + "$ref": "#/components/schemas/HistoryUpdate" responses: '200': description: The new history. @@ -881,7 +883,7 @@ components: type: boolean disconnectSocketQueueLength: type: integer - HistoryObject: + History: type: object properties: metadata: @@ -889,7 +891,7 @@ components: pinned: type: boolean description: Whether the user has pinned this note. - HistoryUpdateObject: + HistoryUpdate: type: object properties: pinned: