Skip to content

Commit 83e0caa

Browse files
committed
Update Spec for Style Values
1 parent cd2a3a4 commit 83e0caa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

versions/3.2.0.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,10 +1054,10 @@ In order to support common ways of serializing simple parameters, a set of `styl
10541054
----------- | ------ | -------- | --------
10551055
matrix | `primitive`, `array`, `object` | `path` | Path-style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.7)
10561056
label | `primitive`, `array`, `object` | `path` | Label style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.5)
1057-
simple | `array` | `path`, `header` | Simple style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.2). This option replaces `collectionFormat` with a `csv` value from OpenAPI 2.0.
1057+
simple | `primitive`, `array`, `object` | `path`, `header` | Simple style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.2). This option replaces `collectionFormat` with a `csv` value from OpenAPI 2.0.
10581058
form | `primitive`, `array`, `object` | `query`, `cookie` | Form style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.8). This option replaces `collectionFormat` with a `csv` (when `explode` is false) or `multi` (when `explode` is true) value from OpenAPI 2.0.
1059-
spaceDelimited | `array`, `object` | `query` | Space separated array or object values. This option replaces `collectionFormat` equal to `ssv` from OpenAPI 2.0.
1060-
pipeDelimited | `array`, `object` | `query` | Pipe separated array or object values. This option replaces `collectionFormat` equal to `pipes` from OpenAPI 2.0.
1059+
spaceDelimited | `primitive`, `array`, `object` | `query` | Space separated array or object values. This option replaces `collectionFormat` equal to `ssv` from OpenAPI 2.0.
1060+
pipeDelimited | `primitive`, `array`, `object` | `query` | Pipe separated array or object values. This option replaces `collectionFormat` equal to `pipes` from OpenAPI 2.0.
10611061
deepObject | `object` | `query` | Provides a simple way of rendering nested objects using form parameters.
10621062

10631063

@@ -1082,8 +1082,8 @@ simple | false | n/a | blue | blue,black,brown | R,100,G,200,B,150
10821082
simple | true | n/a | blue | blue,black,brown | R=100,G=200,B=150
10831083
form | false | color= | color=blue | color=blue,black,brown | color=R,100,G,200,B,150
10841084
form | true | color= | color=blue | color=blue&color=black&color=brown | R=100&G=200&B=150
1085-
spaceDelimited | false | n/a | n/a | blue%20black%20brown | R%20100%20G%20200%20B%20150
1086-
pipeDelimited | false | n/a | n/a | blue\|black\|brown | R\|100\|G\|200\|B\|150
1085+
spaceDelimited | false | n/a | blue | blue%20black%20brown | R%20100%20G%20200%20B%20150
1086+
pipeDelimited | false | n/a | blue | blue\|black\|brown | R\|100\|G\|200\|B\|150
10871087
deepObject | true | n/a | n/a | n/a | color[R]=100&color[G]=200&color[B]=150
10881088

10891089
This object MAY be extended with [Specification Extensions](#specificationExtensions).

0 commit comments

Comments
 (0)