Interface InvalidJsonInput

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidJsonInputImpl

public interface InvalidJsonInput extends ErrorObject

An invalid JSON input has been sent to the service. Either the JSON is syntactically incorrect or the JSON has an unexpected shape, for example, a required field is missing. The client application should validate the input according to the constraints described in the error message before sending the request again.


Example to create an instance using the builder pattern

     InvalidJsonInput invalidJsonInput = InvalidJsonInput.builder()
             .message("{message}")
             .build()