Skip to content

TypeError when trying to validate a "nullable": false property #227

Open
@leNEKO

Description

@leNEKO

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

return ! is_string($this->parentSchema->type) && in_array('null', $this->parentSchema->type);

Instead of a InvalidBody exception.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions