diff --git a/documentation/writing-policies-validate.md b/documentation/writing-policies-validate.md
index 1e42e954a8..61175c2c81 100644
--- a/documentation/writing-policies-validate.md
+++ b/documentation/writing-policies-validate.md
@@ -37,8 +37,10 @@ There is no operator for `equals` as providing a field value in the pattern requ
| Anchor | Tag | Behavior |
|------------- |----- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conditional | () | If tag with the given value is specified, then following resource elements must satisfy the conditions.
e.g.
(image):"*:latest"
imagePullPolicy: "!IfNotPresent"
If image has tag latest then, imagePullPolicy cannot be IfNotPresent. |
-| Equality | =() | if tag is specified, then it should have the provided value.
e.g.
=(hostPath):
path: "!/var/lib"
If hostPath is defined then the path cannot be /var/lib |
+| Equality | =() | If tag is specified, then it should have the provided value.
e.g.
=(hostPath):
path: "!/var/lib"
If hostPath is defined then the path cannot be /var/lib |
| Existance | ^() | It can be specified on the list/array type only. If there exists at least one resource in the list that satisfies the pattern.
e.g.
^(containers):
- image: nginx:latest
There must exist at least one container with image nginx:latest. |
+| Negation | X() | A tag with negation anchor cannot be present in the resource. The value of the tag is never evaulated as the tag is not expected to be there.
e.g.
X(hostPath):
Hostpath tag cannot be defined. |
+
## Example
The next rule prevents the creation of Deployment, StatefuleSet and DaemonSet resources without label 'app' in selector:
````yaml