github.com/prebid/prebid-server/v2@v2.18.0/openrtb_ext/publisher.go (about)

     1  package openrtb_ext
     2  
     3  // ExtPublisher defines the contract for ...publisher.ext (found in both bidrequest.site and bidrequest.app)
     4  type ExtPublisher struct {
     5  	Prebid *ExtPublisherPrebid `json:"prebid"`
     6  }
     7  
     8  // ExtPublisherPrebid defines the contract for publisher.ext.prebid
     9  type ExtPublisherPrebid struct {
    10  	// parentAccount would define the legal entity (publisher owner or network) that has the direct relationship with the PBS
    11  	// host. As such, the definition depends on the PBS hosting entity.
    12  	ParentAccount *string `json:"parentAccount,omitempty"`
    13  }