From 3ac6d56f2d2116d757402673744e7c91bcf6cf35 Mon Sep 17 00:00:00 2001 From: scott sundahl Date: Mon, 23 Feb 2026 11:28:25 -0700 Subject: [PATCH] improper json --- docs/guides/integration-prebid-client-side.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/guides/integration-prebid-client-side.md b/docs/guides/integration-prebid-client-side.md index bc65e091d..c730dbb6a 100644 --- a/docs/guides/integration-prebid-client-side.md +++ b/docs/guides/integration-prebid-client-side.md @@ -165,16 +165,18 @@ The following example shows the response for a user that has opted out: ```json { - identity: 'optout', - status: 'optout' + "identity": "optout", + "status": "optout" } ``` The following example shows the decoded UID2 userId object: ```json -uid2: { - optout: true +{ + "uid2": { + "optout": true + } } ```