Issue
According to this and this Swagger supports complex parameters, but when I try to describe a json parameter Swagger Editor shows the following issue:
Could not render ParameterRow, see the console.
Expected behavior
Json object as a parameter.
YAML
openapi: "3.0.0"
info:
version: 1.0.0
title: Trackmeeasy API
paths:
/getLabelUrl.action:
post:
parameters:
- in: query
name: filter
content:
application/json:
schema:
type: object
properties:
type:
type: string
color:
type: string
responses:
'200':
description: OK
To reproduce...
- Copy yaml
- Go to http://editor.swagger.io
- Paste yaml
- See error
Screenshot