bug: `deepObject` is not allowed

Author: vm-001Created Mar 23, 2026Updated Mar 23, 2026

Using the following spec causes a lint error. According to the documentation here, deepObject should be allowed in query parameters.

style must be one of allowed values: form, simpleapilint(5150800)
openapi: 3.0.3
info:
  title: Filter API Demo
  version: 1.0.0

paths:
  /users:
    get:
      summary: List users with filter
      parameters:
        - name: filter
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
            properties:
              name:
                type: string
              age:
                type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        age:
                          type: integer
Image

Source: swagger-api/swagger-editor