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 8392eba commit c4102d3Copy full SHA for c4102d3
library/src/main/scala/za/co/absa/springdocopenapiscala/OpenAPIModelRegistration.scala
@@ -272,7 +272,9 @@ class OpenAPIModelRegistration(
272
case t if t =:= typeOf[BigDecimal] =>
273
new NumberSchema()
274
case t if t =:= typeOf[BigInt] =>
275
- new IntegerSchema()
+ val s = new IntegerSchema()
276
+ s.setFormat(null)
277
+ s
278
}
279
280
private def registerAsReference(name: String, schema: Schema[_]): Schema[_] = {
0 commit comments