Fix whitespace

This commit is contained in:
2025-07-15 08:29:28 -05:00
parent dd67ed317c
commit 2548725be2

View File

@ -628,11 +628,11 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
.withResponse(HttpStatus.CREATED.getCode(), new Response() .withResponse(HttpStatus.CREATED.getCode(), new Response()
.withDescription("Successfully created the requested " + tableLabel) .withDescription("Successfully created the requested " + tableLabel)
.withContent(MapBuilder.of("application/json", new Content() .withContent(MapBuilder.of("application/json", new Content()
.withSchema(new Schema() .withSchema(new Schema()
.withType(Type.OBJECT) .withType(Type.OBJECT)
.withProperties(MapBuilder.of(primaryKeyApiName, new Schema() .withProperties(MapBuilder.of(primaryKeyApiName, new Schema()
.withType(getFieldType(primaryKeyField)) .withType(getFieldType(primaryKeyField))
.withExample("47"))))))) .withExample("47")))))))
.withTags(ListBuilder.of(tableLabel)) .withTags(ListBuilder.of(tableLabel))
.withSecurity(getSecurity(apiInstanceMetaData, tableInsertPermissionName)); .withSecurity(getSecurity(apiInstanceMetaData, tableInsertPermissionName));