From 9d2f6c817292510681c31a81dcb7f06c1369be63 Mon Sep 17 00:00:00 2001 From: Cody Lanier <5515905+codenaugh@users.noreply.github.com> Date: Fri, 16 Feb 2024 12:18:07 -0800 Subject: [PATCH] Update openrtb.go --- openrtb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openrtb.go b/openrtb.go index 4555443..330de38 100644 --- a/openrtb.go +++ b/openrtb.go @@ -831,9 +831,9 @@ type Segment struct { // coppa flag signals whether or not the request falls under the United States Federal Trade Commission's // regulations for the United States Children's Online Privacy Protection Act ("COPPA"). type Regulations struct { - COPPA int `json:"coppa,omitempty"` // Flag indicating if this request is subject to the COPPA regulations established by the USA FTC, where 0 = no, 1 = yes. - GDPR int `json:"gdpr,omitempty"` // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown. - USPrivacy string `json:"us_privacy"` // Communicates signals regarding consumer privacy under US privacy regulation. + COPPA int `json:"coppa,omitempty"` // Flag indicating if this request is subject to the COPPA regulations established by the USA FTC, where 0 = no, 1 = yes. + GDPR int `json:"gdpr,omitempty"` // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown. + USPrivacy string `json:"us_privacy,omitempty"` // Communicates signals regarding consumer privacy under US privacy regulation. Ext json.RawMessage `json:"ext,omitempty"` }