Description
The validator does not appear to accept JSON objects as "properties" of a multipart payload. For example, in this trimmed-down schema:
openapi: 3.1.0
paths:
/intake:
post:
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Intake'
multipart/form-data:
schema:
type: object
required:
- data
properties:
data:
$ref: '#/components/schemas/Intake'
patternProperties:
"^doc_.*$":
type: string
format: binary
description: |-
This is a document that will be attached to the intake request. You may
provide additional metadata about this document in the `documents` property of
the intake object.
required: true
When sending an application/json
request, the validator accepts the request:
curl -X POST https://dev-server/api/intake -H "Authorization: Bearer $token" -H "Content-Type: application/json" -d '{...data here...}'
However, if I wrap the exact same data in a multipart/form-data
payload, it fails by throwing a \League\OpenAPIValidation\Schema\Exception\TypeMismatch
exception on the data
property with the message "Value expected to be 'object', but 'string' given."
curl -X POST https://dev-server/api/intake -H "Authorization: Bearer $token" -F 'data={...data here...};type=application/json'
According to this link, I should be able to have a JSON part in a multipart payload by specifying type: object
. The 3.1 spec also states that JSON should be the default encoding for "object" properties in a multipart payload. The validator, however, seems to only interpret the content as a string.