Skip to content

Commit

Permalink
Merge pull request #4700 from owen4gh/master
Browse files Browse the repository at this point in the history
Missing array type when using @ArraySchema
  • Loading branch information
micryc authored Jun 24, 2024
2 parents 2bd1d85 + 7294c90 commit e6d3fa3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ public static Optional<Schema> getArraySchema(io.swagger.v3.oas.annotations.medi
arraySchemaObject = new ArraySchema();
} else {
if (existingSchema == null) {
arraySchemaObject = new JsonSchema();
arraySchemaObject = new ArraySchema();
} else {
arraySchemaObject = existingSchema;
}
Expand Down

0 comments on commit e6d3fa3

Please sign in to comment.