forked from prebid/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regs.go
32 lines (28 loc) · 867 Bytes
/
regs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package adcom1
import "encoding/json"
// Regs object contains any known legal, governmental, or industry regulations that are in effect.
type Regs struct {
// Attribute:
// coppa
// Type:
// integer
// Definition:
// Flag indicating if COPPA regulations apply, where 0 = no, 1 = yes.
// The Children's Online Privacy Protection Act (COPPA) was established by the U.S. Federal Trade Commission.
COPPA int8 `json:"coppa,omitempty"`
// Attribute:
// gdpr
// Type:
// integer
// Definition:
// Flag indicating if GDPR regulations apply, where 0 = no, 1 = yes.
// The General Data Protection Regulation (GDPR) is a regulation of the European Union.
GDPR int8 `json:"gdpr,omitempty"`
// Attribute:
// ext
// Type:
// object
// Definition:
// Optional vendor-specific extensions.
Ext json.RawMessage `json:"ext,omitempty"`
}