forked from bsm/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Adikteev/arnaud/add-metric
Add metric object to impression
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package openrtb | ||
|
||
import "encoding/json" | ||
|
||
// 3.2.5 Object: Metric | ||
// | ||
// This object is associated with an impression as an array of metrics. | ||
// These metrics can offer insight into the impression to assist with decisioning such as average recent viewability, click-through rate, etc. | ||
// Each metric is identified by its type, reports the value of the metric, and optionally identifies the source or vendor measuring the value. | ||
type Metric struct { | ||
|
||
// Attribute: | ||
// type | ||
// Type: | ||
// string; required | ||
// Description: | ||
// Type of metric being presented using exchange curated string | ||
// names which should be published to bidders a priori. | ||
Type string `json:"type"` | ||
|
||
// Attribute: | ||
// value | ||
// Type: | ||
// float; required | ||
// Description: | ||
// Number representing the value of the metric. Probabilities | ||
// must be in the range 0.0 – 1.0. | ||
Value float64 `json:"value,omitempty"` | ||
|
||
// Attribute: | ||
// vendor | ||
// Type: | ||
// string; recommended | ||
// Description: | ||
// Source of the value using exchange curated string names | ||
// which should be published to bidders a priori. If the exchange | ||
// itself is the source versus a third party, “EXCHANGE” is | ||
// recommended. | ||
Vendor string `json:"vendor,omitempty"` | ||
|
||
// Attribute: | ||
// ext | ||
// Type: | ||
// object | ||
// Description: | ||
// Placeholder for exchange-specific extensions to OpenRTB. | ||
Ext json.RawMessage `json:"ext,omitempty"` | ||
} |