From 4921946fe4326ecb812288c315d5e0f492cf1c7b Mon Sep 17 00:00:00 2001 From: Jeremy Fiel <32110157+jeremyfiel@users.noreply.github.com> Date: Wed, 1 Mar 2023 17:00:13 +0000 Subject: [PATCH] fix(docs): update invalid schema property in Encoding Object example --- versions/3.0.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.0.4.md b/versions/3.0.4.md index e15a2071b0..921da95393 100644 --- a/versions/3.0.4.md +++ b/versions/3.0.4.md @@ -1569,7 +1569,7 @@ requestBody: # default Content-Type for arrays is based on the `inner` type (object shown, so `application/json` in this example) type: array items: - type: '#/components/schemas/Address' + $ref: '#/components/schemas/Address' ``` An `encoding` attribute is introduced to give you control over the serialization of parts of `multipart` request bodies. This attribute is _only_ applicable to `multipart` and `application/x-www-form-urlencoded` request bodies.