mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-16 06:56:34 +03:00
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package response
|
|
|
|
// 5.5 Object: Data
|
|
//
|
|
// Corresponds to the Data Object in the request, with the value filled in. The Data Object is to be
|
|
// used for all miscellaneous elements of the native unit such as Brand Name, Ratings, Review
|
|
// Count, Stars, Downloads, Price count etc. It is also generic for future native elements not
|
|
// contemplated at the time of the writing of this document.
|
|
type Data struct {
|
|
// Field:
|
|
// label
|
|
// Scope:
|
|
// optional
|
|
// Type:
|
|
// string
|
|
// Description:
|
|
// The optional formatted string name of the data type to be displayed.
|
|
Label string `json:"label,omitempty"`
|
|
|
|
// Field:
|
|
// value
|
|
// Scope:
|
|
// required
|
|
// Type:
|
|
// string
|
|
// Description:
|
|
// The formatted string of data to be displayed.
|
|
// Can contain a formatted value such as "5 stars" or "$10" or "3.4 stars out of 5".
|
|
Value string `json:"value"`
|
|
|
|
// Field:
|
|
// ext
|
|
// Scope:
|
|
// optional
|
|
// Type:
|
|
// object
|
|
// Description:
|
|
// This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification
|
|
Ext RawJSON `json:"ext,omitempty"`
|
|
}
|