Skip to content

Commit

Permalink
Document individual expand wildcard values (#601)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia authored Oct 7, 2024
1 parent 118be4f commit 4d74a49
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions spec/schemas/_common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -406,13 +406,22 @@ components:
items:
$ref: '#/components/schemas/ExpandWildcard'
ExpandWildcard:
type: string
enum:
- all
- closed
- hidden
- none
- open
oneOf:
- type: string
const: all
description: Match any index, including hidden ones.
- type: string
const: closed
description: Match closed, non-hidden indices.
- type: string
const: hidden
description: Match hidden indices. Must be combined with open, closed, or both.
- type: string
const: none
description: Wildcard expressions are not accepted.
- type: string
const: open
description: Match open, non-hidden indices.
VersionString:
type: string
SearchType:
Expand Down

0 comments on commit 4d74a49

Please sign in to comment.