File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
springdoc-openapi-starter-common/src/main/java/org/springdoc/core/fn/builders/content Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 6161 <maven-gpg-plugin .version>1.6</maven-gpg-plugin .version>
6262 <maven-release-plugin .version>2.5.3</maven-release-plugin .version>
6363 <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>
6565 <swagger-ui .version>5.2.0</swagger-ui .version>
6666 <gmavenplus-plugin .version>1.13.1</gmavenplus-plugin .version>
6767 <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 {
4848 */
4949 private final Schema additionalPropertiesSchema = org .springdoc .core .fn .builders .schema .Builder .schemaBuilder ().build ();
5050
51+ /**
52+ * The Additional properties array schema.
53+ */
54+ private final ArraySchema additionalPropertiesArraySchema = org .springdoc .core .fn .builders .arrayschema .Builder .arraySchemaBuilder ().build ();
55+
5156 /**
5257 * The schema properties defined for schema provided in @Schema
5358 */
@@ -253,6 +258,11 @@ public Schema additionalPropertiesSchema() {
253258 return additionalPropertiesSchema ;
254259 }
255260
261+ @ Override
262+ public ArraySchema additionalPropertiesArraySchema () {
263+ return additionalPropertiesArraySchema ;
264+ }
265+
256266 @ Override
257267 public ArraySchema array () {
258268 return array ;
You can’t perform that action at this time.
0 commit comments