From b61c38bdd47f0759070c914eda844fab3a7cf689 Mon Sep 17 00:00:00 2001 From: Nicholas Wallace Date: Sat, 18 May 2024 23:53:00 +0000 Subject: [PATCH] Fix: base schemas --- docs/schemas.yaml | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/docs/schemas.yaml b/docs/schemas.yaml index c852bcca8..3002b1c3a 100644 --- a/docs/schemas.yaml +++ b/docs/schemas.yaml @@ -37,25 +37,21 @@ components: example: 100 limit: description: The number of items to return. If 0, no items are returned. - schema: - type: integer - example: 10 - default: 0 + type: integer + example: 10 + default: 0 page: description: The page number (zero indexed) to return. If no limit is specified, then page will have no effect. - schema: - type: integer - example: 1 - default: 0 + type: integer + example: 1 + default: 0 sortDesc: description: Return items in reversed order if true. - schema: - type: boolean - example: true - default: false + type: boolean + example: true + default: false minified: description: Return minified items if true. - schema: - type: boolean - example: true - default: false + type: boolean + example: true + default: false