Error

Represent a user-facing Error.

JSON representation
{
  "reason": string,
  "errorUuid": string,
  "message": string,
  "errorTime": string,
  "details": {
    string: string,
    ...
  }
}
Fields
reason

string

A title that explains the reason for the error.

errorUuid

string

A unique identifier for this specific error, allowing it to be traced throughout the system in logs and API responses.

message

string

A message containing more information about the error that occurred.

errorTime

string (Timestamp format)

The time when the error occurred.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

details

map (key: string, value: string)

Additional information about the error.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.