Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions openrtb-core/src/main/protobuf/openrtb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1991,17 +1991,15 @@ message BidRequest {
// apply, it is up to the buyer and seller to coordinate on which floor is
// applicable.
message DurFloors {
oneof dur_oneof {
// An integer indicating the low end of a duration range. If this value is
// missing, the low end is unbounded. Either mindur or maxdur is required,
// but not both.
int32 mindur = 1;

// An integer indicating the high end of a duration range. If this value
// is missing, the high end is unbounded. Either mindur or maxdur is
// required, but not both.
int32 maxdur = 2;
}
// An integer indicating the low end of a duration range. If this value is
// missing, the low end is unbounded. Either mindur or maxdur is required,
// but not both.
int32 mindur = 1;

// An integer indicating the high end of a duration range. If this value is
// missing, the high end is unbounded. Either mindur or maxdur is required,
// but not both.
int32 maxdur = 2;

// Minimum bid for a given impression opportunity, if bidding with a
// creative in this duration range, expressed in CPM. For any creatives
Expand Down