In the following example, param0 is defined by content with media type application/json. But Tcases for OpenAPI ignores the media type. Input values generated for this parameter are instead serialized in the usual way determined by style and explode.
...
"post": {
"parameters": [
{
"name": "param0",
"in": "query",
"content": {
"application/json": {
"schema": {
"type": "object"
...
}
}
}
}
...