I have defined my response model like this
@router.post("/test", responses=response.test)
where other responses are defined like this
class Example_200(BaseModel):
class Config:
schema_extra = {
"example": {
"data": {
"id": "918814b7d3934655aafb2c1ade2f5554",
"deleted" : True
}
}
}
test = {
"200": {"model": Example_200},
"400": {"model": Example_400},
"404": {"model": Example_404},
}
but when i import openapi json into postman, i am not getting 200 response printed, it is displaying like this, what is wrong here?
