Files
openrtb/adcom1/publisher.go
T
2018-12-28 13:51:31 +02:00

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"`
}