Closed
Description
Is your feature request related to a problem
I have to support getting a structured json string as parameter:
https://localhost:8080/test?moop={"name": "something %26 something else","description": "str" ,"price": 0.2,"tax": 0.2}&foo=bar
I would like to have a easy validation for those fields as well, as this could be automatic
The solution you would like
@routes.api_route('/test', methods=['GET', 'POST'], tags=['official', 'message', 'send'])
async def test(
moop: Json[Item] = Query(..., description='Something something'),
foo: str = Query(...),
):
return {'woop': moop, 'lol': foo}
# end def
Initial version:
This was the initial thought, before I discovered the Json
type.
@routes.api_route('/test', methods=['GET', 'POST'], tags=['official', 'message', 'send'])
async def test(
moop: Item = Query(..., description='Something something'),
foo: str = Query(...),
):
return {'woop': moop, 'lol': foo}
# end def
Bug you face
AssertionError: Param: moop can only be a request body, using Body(...)
Describe alternatives you've considered
moop: str