From 441c0580d1db3d0f66b596e6596fb10aa2e35c20 Mon Sep 17 00:00:00 2001 From: philippepons Date: Tue, 24 Sep 2024 12:25:35 +0200 Subject: [PATCH] add description for query parameters in openapi.json --- docs/openapi.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/openapi.json b/docs/openapi.json index 6021460..3b50949 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -193,6 +193,7 @@ "name": "ref", "in": "query", "required": false, + "description": "NOT used with start and end", "schema": { "type": "string" } @@ -201,6 +202,7 @@ "name": "start", "in": "query", "required": false, + "description": "NOT used if a ref is specified, requires end as well", "schema": { "type": "string" } @@ -209,6 +211,7 @@ "name": "end", "in": "query", "required": false, + "description": "NOT used if a ref is specified, requires start as well", "schema": { "type": "string" }