File tree 2 files changed +11
-1
lines changed
springdoc-openapi-starter-common/src/main/java/org/springdoc/core/fn/builders/content
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 61
61
<maven-gpg-plugin .version>1.6</maven-gpg-plugin .version>
62
62
<maven-release-plugin .version>2.5.3</maven-release-plugin .version>
63
63
<nexus-staging-maven-plugin >1.6.8</nexus-staging-maven-plugin >
64
- <swagger-api .version>2.2.15 </swagger-api .version>
64
+ <swagger-api .version>2.2.17 </swagger-api .version>
65
65
<swagger-ui .version>5.2.0</swagger-ui .version>
66
66
<gmavenplus-plugin .version>1.13.1</gmavenplus-plugin .version>
67
67
<jaxb-impl .version>2.1</jaxb-impl .version>
Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ public class Builder {
48
48
*/
49
49
private final Schema additionalPropertiesSchema = org .springdoc .core .fn .builders .schema .Builder .schemaBuilder ().build ();
50
50
51
+ /**
52
+ * The Additional properties array schema.
53
+ */
54
+ private final ArraySchema additionalPropertiesArraySchema = org .springdoc .core .fn .builders .arrayschema .Builder .arraySchemaBuilder ().build ();
55
+
51
56
/**
52
57
* The schema properties defined for schema provided in @Schema
53
58
*/
@@ -253,6 +258,11 @@ public Schema additionalPropertiesSchema() {
253
258
return additionalPropertiesSchema ;
254
259
}
255
260
261
+ @ Override
262
+ public ArraySchema additionalPropertiesArraySchema () {
263
+ return additionalPropertiesArraySchema ;
264
+ }
265
+
256
266
@ Override
257
267
public ArraySchema array () {
258
268
return array ;
You can’t perform that action at this time.
0 commit comments