Skip to main content

3. Evaluation Context

Status: Experimental

Overview

The evaluation context provides ambient information for the purposes of flag evaluation. Contextual data may be used as the basis for targeting, including rule-based evaluation, overrides for specific subjects, or fractional flag evaluation.

The context might contain information about the end-user, the application, the host, or any other ambient data that might be useful in flag evaluation. For example, a flag system might define rules that return a specific value based on the user's email address, locale, or the time of day. The context provides this information. The context can be optionally provided at evaluation, and mutated in before hooks.

3.1 Fields

NOTE: Field casing is not specified, and should be chosen in accordance with language idioms.

see: types

Requirement 3.1.1

The evaluation context structure MUST define an optional targeting key field of type string, identifying the subject of the flag evaluation.

The targeting key uniquely identifies the subject (end-user, or client service) of a flag evaluation. Providers may require this field for fractional flag evaluation, rules, or overrides targeting specific users. Such providers may behave unpredictably if a targeting key is not specified at flag resolution.

Requirement 3.1.2

The evaluation context MUST support the inclusion of custom fields, having keys of type string, and values of type boolean | string | number | datetime | structure.

see: structure, datetime

Requirement 3.1.3

The evaluation context MUST support fetching the custom fields by key and also fetching all key value pairs.

Requirement 3.1.4

The evaluation context fields MUST have an unique key.

The key uniquely identifies a field in the evaluation context and it should be unique across all types to avoid any collision when marshalling the evaluation context by the provider.

3.2 Merging Context

Requirement 3.2.1

The API, Client and invocation MUST have a method for supplying evaluation context.

API (global) evaluation context can be used to supply static data to flag evaluation, such as an application identifier, compute region, or hostname. Client and invocation evaluation context are ideal for dynamic data, such as end-user attributes.

Requirement 3.2.2

Evaluation context MUST be merged in the order: API (global; lowest precedence) -> client -> invocation -> before hooks (highest precedence), with duplicate values being overwritten.

Any fields defined in the client evaluation context will overwrite duplicate fields defined globally, and fields defined in the invocation evaluation context will overwrite duplicate fields defined globally or on the client. Any resulting evaluation context from a before hook will overwrite duplicate fields defined globally, on the client, or in the invocation.

flowchart LR global("API (global)") client("Client") invocation("Invocation") hook("Before Hooks") global --> client client --> invocation invocation --> hook