-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathextended_identifier.go
33 lines (29 loc) · 1.01 KB
/
extended_identifier.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
33
package adcom1
import "encoding/json"
// ExtendedIdentifier support in the OpenRTB specification allows buyers to use audience data in real-time bidding.
// The exchange should ensure that business agreements allow for the sending of this data.
// Note, it is assumed that exchanges and DSPs will collaborate with the appropriate regulatory agencies and ID vendor(s) to ensure compliance.
type ExtendedIdentifier struct {
// Attribute:
// source
// Type:
// string
// Definition:
// Source or technology provider responsible for the set of included IDs.
// Expressed as a top-level domain.
Source string `json:"source,omitempty"`
// Attribute:
// uids
// Type:
// object array
// Definition:
// Array of extended ID UID objects from the given source. Refer to Object: Extended Identifier UIDs.
UIDs []ExtendedIdentifierUID `json:"uids,omitempty"`
// Attribute:
// ext
// Type:
// object
// Definition:
// Optional vendor-specific extensions.
Ext json.RawMessage `json:"ext,omitempty"`
}