Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.07 KB

RuleClause.md

File metadata and controls

37 lines (25 loc) · 1.07 KB

RuleClause

Properties

Name Type Description Notes
attribute String The attribute the rule applies to, for example, last name or email address [optional]
op OpEnum The operator to apply to the given attribute [optional]
negate Boolean Whether the operator should be negated [optional]

Enum: OpEnum

Name Value
IN "in"
ENDSWITH "endsWith"
STARTSWITH "startsWith"
MATCHES "matches"
CONTAINS "contains"
LESSTHAN "lessThan"
LESSTHANOREQUAL "lessThanOrEqual"
GREATERTHAN "greaterThan"
GREATERTHANOREQUAL "greaterThanOrEqual"
BEFORE "before"
AFTER "after"
SEGMENTMATCH "segmentMatch"
SEMVEREQUAL "semVerEqual"
SEMVERLESSTHAN "semVerLessThan"
SEMVERGREATERTHAN "semVerGreaterThan"