@Operation(
summary = "${api.product-composite.create-composite-product.description}",
description = "${api.product-composite.create-composite-product.notes}")
@ApiResponses(value = {
@ApiResponse(responseCode = "400", description = "${api.responseCodes.badRequest.description}"),
@ApiResponse(responseCode = "422", description = "${api.responseCodes.unprocessableEntity.description}")
})
@PostMapping(
value = "/product-composite",
consumes = "application/json")
void createProduct(@RequestBody ProductAggregate body);