[docs/chore] Swagger fixes for filters (#2730)

* Swagger: filtersV1Get should return an array

* Swagger: context must use multi format
This commit is contained in:
Vyr Cossont 2024-03-07 02:28:57 -08:00 committed by GitHub
parent 5159664a51
commit 74e84cf8fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 9 deletions

View File

@ -5296,7 +5296,9 @@ paths:
"200":
description: Requested filters.
schema:
$ref: '#/definitions/filterV1'
items:
$ref: '#/definitions/filterV1'
type: array
"400":
description: bad request
"401":
@ -5329,7 +5331,8 @@ paths:
name: phrase
required: true
type: string
- description: |-
- collectionFormat: multi
description: |-
The contexts in which the filter should be applied.
Sample: home, public
@ -5343,7 +5346,7 @@ paths:
items:
type: string
minItems: 1
name: context
name: context[]
required: true
type: array
uniqueItems: true
@ -5477,7 +5480,8 @@ paths:
name: phrase
required: true
type: string
- description: |-
- collectionFormat: multi
description: |-
The contexts in which the filter should be applied.
Sample: home, public
@ -5491,7 +5495,7 @@ paths:
items:
type: string
minItems: 1
name: context
name: context[]
required: true
type: array
uniqueItems: true

View File

@ -55,7 +55,7 @@ import (
// maxLength: 40
// type: string
// -
// name: context
// name: context[]
// in: formData
// required: true
// description: |-
@ -72,6 +72,7 @@ import (
// items:
// type:
// string
// collectionFormat: multi
// minItems: 1
// uniqueItems: true
// -

View File

@ -61,7 +61,7 @@ import (
// maxLength: 40
// type: string
// -
// name: context
// name: context[]
// in: formData
// required: true
// description: |-
@ -78,6 +78,7 @@ import (
// items:
// type:
// string
// collectionFormat: multi
// minItems: 1
// uniqueItems: true
// -

View File

@ -43,10 +43,12 @@ import (
//
// responses:
// '200':
// name: filter
// name: filters
// description: Requested filters.
// schema:
// "$ref": "#/definitions/filterV1"
// type: array
// items:
// "$ref": "#/definitions/filterV1"
// '400':
// description: bad request
// '401':