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.

interface InvalidJsonInput {
    code: "InvalidJsonInput";
    message: string;
}

Properties

Properties

code: "InvalidJsonInput"
message: string