Skip to content

Commit

Permalink
Fix: quote defaults.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Jul 10, 2024
1 parent 45953f0 commit f381a0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions spec/namespaces/transforms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ components:
transforms.search::query.size:
name: size
in: query
description: Specifies the number of transforms to return. Default is 10.
description: Specifies the number of transforms to return. Default is `10`.
required: false
schema:
type: number
style: form
transforms.search::query.from:
name: from
in: query
description: The starting transform to return. Default is 0.
description: The starting transform to return. Default is `0`.
required: false
schema:
type: number
Expand All @@ -257,7 +257,7 @@ components:
transforms.search::query.sortDirection:
name: sortDirection
in: query
description: Specifies the direction to sort results in. Can be ASC or DESC. Default is ASC.
description: Specifies the direction to sort results in. Can be `ASC` or `DESC`. Default is `ASC`.
required: false
schema:
type: string
Expand Down
2 changes: 1 addition & 1 deletion spec/schemas/_common.query_dsl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1890,7 +1890,7 @@ components:
- type: object
properties:
case_insensitive:
description: Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
description: Allows case insensitive matching of the pattern with the indexed field values when set to `true`. Default is `false` which means the case sensitivity of matching depends on the underlying field’s mapping.
type: boolean
rewrite:
$ref: '_common.yaml#/components/schemas/MultiTermQueryRewrite'
Expand Down

0 comments on commit f381a0f

Please sign in to comment.