Skip to content

Commit e7a5dd5

Browse files
authored
Merge pull request #3125 from AdrianMF/bugfix/issue-3088-boolean-type-annotation
fix #3088 - fixes boolean @type annotation
2 parents aff7fb0 + 3978220 commit e7a5dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/swagger-core/src/main/java/io/swagger/v3/core/util/PrimitiveType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public Schema createProperty() {
212212
dms.put("string_date-time", "date-time");
213213
dms.put("string_partial-time", "partial-time");
214214
dms.put("string_password", "password");
215-
dms.put("boolean", "boolean");
215+
dms.put("boolean_", "boolean");
216216
dms.put("object_", "object");
217217
datatypeMappings = Collections.unmodifiableMap(dms);
218218

0 commit comments

Comments
 (0)