You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifying type=boolean in the schema always produces type:Object in the resulting json. I have tracked the issue down to PrimitiveType.java in package io.swagger.v3.core.util, line 215
It appears that dms.put("boolean", "boolean");
Should be : dms.put("boolean_", "boolean");
Because of this function
@Schema(
type= "boolean") test_boolean:MyBooleanClass = false
Specifying type=boolean in the schema always produces type:Object in the resulting json. I have tracked the issue down to PrimitiveType.java in package io.swagger.v3.core.util, line 215
It appears that
dms.put("boolean", "boolean");
Should be :
dms.put("boolean_", "boolean");
Because of this function
always formats the string with an underscore.
The text was updated successfully, but these errors were encountered: