> For the complete documentation index, see [llms.txt](https://docs.jentis.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jentis.com/jentis-dcp-elements/triggers/available-condition-operators.md).

# Available Condition Operators

Trigger conditions can be any complex logic of combined AND or OR statements, where parameters are checked with comparison operators against predefined values.

The input parameters for any condition to be checked are Variables you previously created in your DCP (or any system-predefined existing variables).

Various operators are available to help you precisely target when defining conditional logic or filtering rules. Below is a list of supported operators, along with explanations of their usage and behavior:

| Exactly matches        | True if the value is exactly equal to the specified string (case-sensitive). |
| ---------------------- | ---------------------------------------------------------------------------- |
| Does not exactly match | True if the value is not exactly equal to the specified string.              |
| Contains               | True if the value contains the specified substring.                          |
| Does not contain       | True if the value does not contain the specified substring.                  |
| Starts with            | True if the value begins with the specified string.                          |
| Does not start with    | True if the value does not begin with the specified string.                  |
| Ends with              | True if the value ends with the specified string.                            |
| Does not end with      | True if the value does not end with the specified string.                    |
| Matches regex          | True if the value matches the provided regular expression pattern.           |
| Does not match regex   | True if the value does not match the provided regular expression pattern.    |
| Bigger                 | True if the value is greater than the specified number.                      |
| Bigger-equal           | True if the value is greater than or equal to the specified number.          |
| Lower                  | True if the value is less than the specified number.                         |
| Lower-equal            | True if the value is less than or equal to the specified number.             |

Use AND or OR statements to combine multiple condition checks.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.jentis.com/jentis-dcp-elements/triggers/available-condition-operators.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
