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 <menma1234@users.noreply.github.com>
This commit is contained in:
AC
2026-04-30 04:40:34 -04:00
committed by GitHub
parent 3d602ca6a3
commit b33179c258
@@ -1,4 +1,4 @@
{
"e_mail": "oops@example.com",
"age": "20"
"age": 20
}