| Operation | Syntax | Description | Example |
|---|---|---|---|
| object existence | object_name | 检查对象是否存在。 | Root.Group 检查是否找到 Group 搜索元素。 |
| variable | : | 冒号用于为其后面的对象指定名称。**注意:**变量仅在同一条规则内可用,即直到该规则右侧部分以分号结束为止。 | t: Root.Group 检查是否找到 Group 搜索元素,并将其赋值给一个新变量 t。 |
| object absence | ~ | 波浪号用于对条件取反或指定对象不存在。请注意,当对象被指定为不存在时,不能为其指定名称。// INVALID STATEMENT: t: ~Root.Element | ~Root.Element1 检查是否未找到 Element1 搜索元素。 |
| logical AND | , | 逗号用作逻辑与(AND)运算符。 | Borrower.Name, Borrower.Address 检查在 Borrower 组中是否同时找到了 Name 和 Address 搜索元素。 |
