# Context

A context limits where entities, attributes, or specific properties are considered when fulfillmenttools executes business logic.

The following entities support contexts:

* Listings ([sales prices](/documentation/getting-started/facilities/prices.md#sales-price), [out of stock behavior](/documentation/by-pillar/global-inventory-hub/listing.md#out-of-stock-behaviour))
* [Facility discounts](/documentation/getting-started/facilities/facility-discounts.md)
* [Facility connections](/documentation/by-pillar/advanced-order-routing/complex-routing-with-combinatorics/network-model/facility-connection.md)
* [Roles](https://fulfillmenttools.github.io/fulfillmenttools-api-reference-ui/#get-/api/roles)

These entities contain a `context` field. The system evaluates the context at runtime to determine if the object applies to the current use case. If no context is defined, the system sets no limitations.

The structure of the `context` is as follows:

```json
{
    ...
    "context": [
        {
            "type": "FACILITY",
            "operator": "NOT",     // optional, not available in every entity
            "values": [
                "string"
            ]
        },
        ...
    ]
}
```

* Entries in the `context` array are joined with a logical `AND`.
* Items in the `values` array are joined with a logical `OR`.
* Each entity supports different context types, such as `CATEGORY`, `FACILITY_ID`, and `FACILITY_GROUP`.
* The `operator` field is optional, and the only supported value is `NOT`. Support for this field varies by entity.

### Example <a href="#example" id="example"></a>

This example shows how to create a discount that applies only to certain facility groups and excludes a specific article category.

Adding a `context` to the discount defines the conditions under which the system considers it when routing an order.

See the [facility discounts article](/documentation/getting-started/facilities/facility-discounts.md) for more information related to discounts.

```json
{
    // discount entity
    ...
    "context": [
        {
            "type": "FACILITY_GROUP",
            "values": [
                "uuid-facility-group1",
                "uuid-facility-group2"
            ]
        },
        {
            "type": "CATEGORY",
            "operator": "NOT",
            "values": [
                "uuid-category1"
            ]
        }
    ]
}
```

In this example, the system applies the discount when:

* the facility is in facility group `uuid-facility-group1` **or** `uuid-facility-group2`

**and**

* the article category is **not** `uuid-category1`.

<br>


---

# 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://docs.fulfillmenttools.com/documentation/apis/context.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.
