Describe the bug
According to this page in the documentation the format parameter of @query decorator is mapped to the style field of OpenAPI parameters.
However, according to this page deepObject is not a valid value (which kinda makes sense, since it's OpenAPI specific)
I coudln't find any other way to set style on an OpenAPI parameter.
Reproduction
model QueryParams {
@query(#{format: "deepObject"})
filter: Record<string>;
}
Checklist
Describe the bug
According to this page in the documentation the
formatparameter of@querydecorator is mapped to thestylefield of OpenAPI parameters.However, according to this page
deepObjectis not a valid value (which kinda makes sense, since it's OpenAPI specific)I coudln't find any other way to set
styleon an OpenAPI parameter.Reproduction
Checklist