diff --git a/doc/source/usage.rst b/doc/source/usage.rst index 4e811c1bb..607e27b79 100644 --- a/doc/source/usage.rst +++ b/doc/source/usage.rst @@ -61,11 +61,15 @@ Conditions A condition is represented by an object with fields: -``op`` the type of comparison operation, default available operators include : -``eq``, ``le``, ``ge``, ``ne``, ``lt``, ``gt`` (basic comparison operators), -``in-net`` (checks that IP address is in a given network), ``contains``, -``matches`` (check field against a regular expression, matches require a full -match). +``op`` the type of comparison operation, default available operators include: + +* ``eq``, ``le``, ``ge``, ``ne``, ``lt``, ``gt`` - basic comparison operators; + +* ``in-net`` - checks that an IP address is in a given network; + +* ``matches`` - requires a full match against a given regular expression; + +* ``contains`` - requires a value to contain a given regular expression. ``field`` a `JSON path `_ to the field in the introspection data to use in comparison.