From f84d13281d785503ff79e5f0bfad7cd4a21dc0d1 Mon Sep 17 00:00:00 2001 From: "Jeffrey D." <1289344+verygoodsoftwarenotvirus@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:52:35 -0500 Subject: [PATCH] Fix example JSON so that it's valid I got bit by copy/pasting this blindly in the OPA playground --- authorization/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorization/overview.mdx b/authorization/overview.mdx index 9b3f2e4..c6c70ba 100644 --- a/authorization/overview.mdx +++ b/authorization/overview.mdx @@ -77,7 +77,7 @@ Here is an example of the `input.authentication.metadata` field for a request au ```json { "io.flipt.auth.email": "user@email.com", - "io.flipt.auth.name": "John Doe" + "io.flipt.auth.name": "John Doe", "io.flipt.auth.claims": { "roles": ["admin", "viewer"] }