mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
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:
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"e_mail": "oops@example.com",
|
||||
"age": "20"
|
||||
"age": 20
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user