Returned when an invalid input has been sent.

interface InvalidInputError {
    code: "InvalidInput";
    message: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "InvalidInput"

Error identifier.

message: string

Description of the constraints that are not met by the request. For example, "Invalid $propertyName. It may be a non-empty string up to $maxLength".