Replies: 2 comments
-
Seems, you have to change your Open API Schema according to the nesting you are expecting to see generated. parameters:
- in: path
name: Filters
schema:
type: object
properties:
ThemeId:
type: number
# other props... In case your backend responds with the data schema you have provided, and you are not able to change Open API Schema (third party, for example), you have to apply some preprocessing on your source Open API schema and then use it with the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ok, my solution is to change types with TypeScript:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a query and parameters with keys, containing multiples keys inside, take a look at Swagger and result generated scheme:
Please advise, how to get it in the next format with nested objects in a query?
Beta Was this translation helpful? Give feedback.
All reactions