As [discovered by @nosan](https://github.com/spring-projects/spring-boot/pull/43086#discussion_r1846815848) the Jersey implementation of actuator endpoints accepts complex types in the body whereas Spring Weblux and Spring MVC do not. An operation is meant to accept a `Map<String,String>` so the following should fail as it has a nested attribute: ```json { "jobData": { "key": "value" } } ``` To make things consistent, we should update the Jersey implementation so that it fails in a similar fashion.