> For the complete documentation index, see [llms.txt](https://wfsys.gitbook.io/workflow-forms-syntax/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/checkings.md).

# Checkings

## Шаблон Checking <a href="#template" id="template"></a>

```xml
<Checking>
  <Object Name="" />
  <Group Name="" />
  <ConditionExpression>
    <Or>
      <Not>
        <And>
          <Condition Name="" />
          <Condition Name="" />
          <Condition Name="" />
        </And>
      </Not>
      <And>
        <Condition Name="" />
        <Condition Name="" />
      </And>
    </Or>
  </ConditionExpression>
  <AsteriskHint></AsteriskHint>
</Checking>
```

## Описание Checking <a href="#description" id="description"></a>

```xml
<Checking>
  <Object Name="" />
  <ConditionExpression></ConditionExpression>
  <AsteriskHint></AsteriskHint>
</Checking>
```

Когда значение тэга [`<ConditionExpression>`](#condition_expression) будет True, рядом с объектом, указанным в тэге [`<Object>`](#object), будет отображаться "звездочка" или вертикальная полоска, при наведении на которые будет отображаться текст подсказки, заданный в тэге [`<AsteriskHint>`](#asterisk_hint).

{% hint style="info" %}
Через атрибут [`ValidationType`](https://wfsys.gitbook.io/workflow-forms-syntax#validation_type) тэга `<Form>` можно управлять видом `Checking` формы:  "звездочка" или вертикальная полоска.
{% endhint %}

## Тэги, специфичные для Checking <a href="#specific-tags" id="specific-tags"></a>

### Object <a href="#object" id="object"></a>

Объект, значение которого проверяется.

Обязательный тэг. Значение тэга `<Object>`: не ожидается.

### Group <a href="#group" id="group"></a>

Группа, к которой относится `Сhecking`.\
Используется при обращении к get-проперти [CheckingFired](https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/form#get_checking_fired), чтобы проверить сработал ли хоть один `<Checking>` из группы.

Необязательный тэг. Значение тэга `<Group>`: не ожидается.

### ConditionExpression <a href="#condition_expression" id="condition_expression"></a>

Логическое выражение из значений условий.

Обязательный тэг. Ожидается логическое выражение с использованием тэгов `<And>`, `<Or>`, `<Not>` в качестве операций и тэгов `<Condition>` в качестве операндов.

### AsteriskHint <a href="#asterisk_hint" id="asterisk_hint"></a>

Текст подсказки, которая будет отображаться при наведении курсора мыши на "звездочку" или вертикальную полоску, отображаемые рядом с объектом.

Необязательный тэг. Любое значение будет переведено в текстовое.


---

# 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:

```
GET https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/checkings.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.
