Skip to main content

LogsEventDetails

Represents contextual details for operations associated with a log entry. Each detail is a semantic key-value pair that provides information about what happened, including before/after values, errors, warnings or additional metadata.

type LogsEventDetails {
keyCaption: String!
keyType: LogEventDetailsKeyTypeEnum!
keyValue: String
}

Fields

LogsEventDetails.keyCaption ● String! non-null scalar

A descriptive label related to the log event detail. Represents the context or name of the detail (e.g., 'Previous Price', 'Component Name', 'Validation Error').

LogsEventDetails.keyType ● LogEventDetailsKeyTypeEnum! non-null enum

Defines the semantic type and category of this detail, which determines how it should be interpreted and displayed by consumers. Types include: 'before' (previous value in updates), 'after' (new value in updates), 'error' (failure reason) or 'info' (general information).

LogsEventDetails.keyValue ● String scalar

A value associated with the caption. This value can represent multiple parameters including descriptions, amounts, status values, error messages, or any contextual data relevant to the detail. Can be null if the caption provides sufficient context on its own.

Member Of

SystemLog object