google/openrtb

Missing Field Values for native bid request

amishra123 opened this issue · 0 comments

Hi There,

OpenRtb-core does not support plcmttype above 4 in bid request.
This is basically an enum:
enum PlacementType {
// In the feed of content - for example as an item inside the organic
// feed/grid/listing/carousel.
IN_FEED = 1;
// In the atomic unit of the content - IE in the article page
// or single image page.
ATOMIC_UNIT = 2;
// Outside the core content - for example in the ads section on the
// right rail, as a banner-style placement near the content, etc.
OUTSIDE = 3;
// Recommendation widget, most commonly presented below
// the article content.
RECOMMENDATION = 4;
}

Is there any workaround to this? OpenRtb spec says this field is a custom field set by SSP's.
I think this should be available to be read as a custom int instead of using pre-defined enums.

Please advise.