# Concepts

## Technical concept

Computed fields are defined in the schema at the UserPoint level.

The plugin behind it performs computations on a regular basis of a function's result, based on the user activities and profile updates.

## Definitions

### Computed Field

A computed field is an instance of a Datamart function applied within a specific context. To use it, it must be declared in your schema.

### Computed Field Function

A Computed Field Function is a [plugin](/advanced-usages/plugins.md) of type `COMPUTED_FIELD_FUNCTION`, which can be created via the API following the standard [process](/advanced-usages/plugins/creation.md) or through the computing console interface.

## Notions

A computed field is defined by these elements:

1. **State**: The **data stored** to build the result. It is the history. Each new activity updates the **State**.

   → the state is closely related to the *Lookback Window* - i.e. the historical depth of events to be analyzed.
2. **Logic**: The logic can be very simple (*like a formula, a sum, a count…*) or more complex (*like a logical operation*).
3. **Result**: The **data calculated and stored**. It contains the score(s) to be used.

   The result can be either a single variable or an object, depending on the complexity of the computation. It is computed from the **State**

Other interesting concepts to take into consideration:

* **Input Data**: Either new userActivities, either userProfile update, either both.
* **Period Update**: The regularity of updates (every x days - by default x=1).

## Lifecycle

1. **INITIAL** – The instance is created with this status.
2. **INITIAL\_LOADING** – Once declared in the schema and successfully validated, an initial loading job is triggered.
3. **ACTIVE** – The computed field becomes active if the job is completed successfully.

<img src="/files/tWgw8XsX8AHsrVJMaccW" alt="Computed field lifecycle" class="gitbook-drawing">

## Technical flow

To better understand how a computed field works, here are the technical steps and the relation with the methods:

1. **Initialization**: The computed field is declared in the schema.
2. **State Updates**: Triggered by new user activities or profile updates.
3. **Result Calculation**: The result is computed based on the current state.
4. **Storage**: The result is stored for querying.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.mediarithmics.io/schema/computed-fields/concepts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
