ErrorResponse Model

General purpose error response that will be included in responses that return a 4XX or 5XX error

Required MaxLength(64)
name : string

A general purpose string classifier for the error response

Nullable MaxLength(4096)
message : string

Optional human readable message including a bit of diagnostic information about the failure

Nullable
data : object

Optional metadata that some endpoint may return relating to the error response

Example
{
  "name": "string value",
  "message": "string value",
  "data": {}
}