Open
Description
Given a schema:
openapi: 3.0.0
info:
title: test
version: test
description: test
termsOfService: test
paths:
/api/data:
post:
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- value
properties:
value:
nullable: false
oneOf:
- type: string
- type: boolean
responses:
'200':
description: A response
content:
application/json:
schema:
type: string
Validating a POST /api/data
request with a payload like this:
{
"value": null
}
Give a TypeError
error with the message in_array(): Argument #2 ($haystack) must be of type array, null given
message from
Instead of a
InvalidBody
exception.Metadata
Metadata
Assignees
Labels
No labels