From b33179c25828d2c0ea0801b95238616396a37ddb Mon Sep 17 00:00:00 2001 From: AC Date: Thu, 30 Apr 2026 04:40:34 -0400 Subject: [PATCH] docs: Fix input value type in not undefined example (#8580) ### Why the changes in this PR are needed? When looking at the docs for the `not` keyword example, I was confused why the `deny` rule wasn't including the "under 18" error if I changed the age in the input. Turns out it was a string so that was never getting triggered. ### What are the changes in this PR? Changes the value of `age` in the input for the `not` example for an undefined value in the docs. Signed-off-by: AC --- .../keywords/_examples/not/undefined/input.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/policy-reference/keywords/_examples/not/undefined/input.json b/docs/docs/policy-reference/keywords/_examples/not/undefined/input.json index 5cd2e420b6..785edf62ee 100644 --- a/docs/docs/policy-reference/keywords/_examples/not/undefined/input.json +++ b/docs/docs/policy-reference/keywords/_examples/not/undefined/input.json @@ -1,4 +1,4 @@ { "e_mail": "oops@example.com", - "age": "20" + "age": 20 }