-
Notifications
You must be signed in to change notification settings - Fork 2.4k
bug: deepObject is not allowed #5739
Copy link
Copy link
Open
Description
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

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels