mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package adcom1
|
|
|
|
import "encoding/json"
|
|
|
|
// Publisher object describes the publisher of the media in which ads will be displayed.
|
|
type Publisher struct {
|
|
// Attribute:
|
|
// id
|
|
// Type:
|
|
// string, recommended
|
|
// Definition:
|
|
// Vendor-specific unique publisher identifier, as used in ads.txt files.
|
|
ID string `json:"id,omitempty"`
|
|
|
|
// Attribute:
|
|
// name
|
|
// Type:
|
|
// string
|
|
// Definition:
|
|
// Displayable name of the publisher.
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// Attribute:
|
|
// domain
|
|
// Type:
|
|
// string
|
|
// Definition:
|
|
// Highest level domain of the publisher (e.g., “publisher.com”).
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
// Attribute:
|
|
// cat
|
|
// Type:
|
|
// string array
|
|
// Definition:
|
|
// Array of content categories that describe the publisher using IDs from the taxonomy indicated in cattax.
|
|
Cat []string `json:"cat,omitempty"`
|
|
|
|
// Attribute:
|
|
// cattax
|
|
// Type:
|
|
// integer
|
|
// Definition:
|
|
// The taxonomy in use for the cat attribute.
|
|
// Refer to List: Category Taxonomies.
|
|
CatTax CategoryTaxonomy `json:"cattax,omitempty"`
|
|
|
|
// Attribute:
|
|
// ext
|
|
// Type:
|
|
// object
|
|
// Definition:
|
|
// Optional vendor-specific extensions.
|
|
Ext json.RawMessage `json:"ext,omitempty"`
|
|
}
|