Is your feature request related to a problem? Please describe.@api.expect(model) and @api.doc(body=model) want a model which must be at least a {"key":value} pair to be shown in Swagger documentation "payload" field.
Describe the solution you'd like
strings, bare booleans, null, arrays and numbers are valid JSON too.
I would like that things such
@api.expect(fields.Boolean) and/or @api.doc(body=bool) work too in Swagger documentation "payload" field.
Is your feature request related to a problem? Please describe.
@api.expect(model)
and@api.doc(body=model)
want a model which must be at least a{"key":value}
pair to be shown in Swagger documentation "payload" field.Describe the solution you'd like strings, bare booleans, null, arrays and numbers are valid JSON too. I would like that things such
@api.expect(fields.Boolean)
and/or@api.doc(body=bool)
work too in Swagger documentation "payload" field.