We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8982d commit 0c95c54Copy full SHA for 0c95c54
src/main/java/io/swagger/codegen/v3/generators/DefaultCodegenConfig.java
@@ -1024,7 +1024,7 @@ private static String getTypeOfSchema(Schema schema) {
1024
} else if (schema instanceof BinarySchema) {
1025
return SchemaTypeUtil.BINARY_FORMAT;
1026
} else if (schema instanceof FileSchema) {
1027
- return "file";
+ return "file"; // FIXME: this type does not exist in the OpenAPI 3.0 specification
1028
} else if (schema instanceof BooleanSchema) {
1029
return SchemaTypeUtil.BOOLEAN_TYPE;
1030
} else if (schema instanceof DateSchema) {
0 commit comments