From f0ffa84e2f33da6022d2faa82335bfbd5583fa84 Mon Sep 17 00:00:00 2001 From: bymyself Date: Sat, 19 Jul 2025 14:32:58 -0700 Subject: [PATCH] Fix first two duplicate content blocks in OpenAPI spec - Fixed duplicate content in /api/queue GET response - Fixed duplicate content in /api/history GET response - Working systematically through all YAML duplicate key errors --- openapi.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index e19f0a910..f8cdde353 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -105,12 +105,6 @@ paths: responses: '200': description: Success - '500': - description: Internal server error - content: - application/json: - schema: - $ref: '#/components/schemas/ErrorResponse' content: application/json: schema: @@ -198,18 +192,18 @@ paths: responses: '200': description: Success - '500': - description: Internal server error - content: - application/json: - schema: - $ref: '#/components/schemas/ErrorResponse' content: application/json: schema: type: array items: $ref: '#/components/schemas/HistoryItem' + '500': + description: Internal server error + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' post: tags: - workflow