mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
29 lines
850 B
Go
29 lines
850 B
Go
package openrtb
|
||
|
||
import "encoding/json"
|
||
|
||
// 3.2.3 Object: Regs
|
||
//
|
||
// This object contains any legal, governmental, or industry regulations that apply to the request.
|
||
// The 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 Regs struct {
|
||
|
||
// Attribute:
|
||
// coppa
|
||
// Type:
|
||
// integer
|
||
// Description:
|
||
// Flag indicating if this request is subject to the COPPA
|
||
// regulations established by the USA FTC, where 0 = no, 1 = yes.
|
||
// Refer to Section 7.5 for more information.
|
||
COPPA int8 `json:"coppa,omitempty"`
|
||
|
||
// Attribute:
|
||
// ext
|
||
// Type:
|
||
// object
|
||
// Description:
|
||
// Placeholder for exchange-specific extensions to OpenRTB.
|
||
Ext json.RawMessage `json:"ext,omitempty"`
|
||
}
|