The winning bid was received after the submission deadline.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/open-contracting/cardinal-rs/llms.txt
Use this file to discover all available pages before exploring further.
Methodology
A contracting process is flagged if:- A valid bid’s received date (
/bids/details/date) is after the submission deadline (/tender/tenderPeriod/endDate), AND - At least one tenderer of that valid bid is the supplier of an active award
Example: The submission deadline is March 15. The Public Works Department leaks information from the received bids to CorruptX Solutions, to give it a competitive advantage. CorruptX Solutions submits a bid on April 1. The Public Works Department accepts the bid and awards the contract to CorruptX Solutions.
Output
The indicator’s value is always1.0 for both the contracting process and flagged tenderers.
If the --map command-line flag is set, the Maps key contains:
ocid_tenderer_r030: The flagged tenderers for each flagged OCID
Configuration
This indicator is not configurable through the settings file.Assumptions
This indicator assumes that the tenderer didn’t submit another valid bid before the submission deadline; in other words, the late bid is the winning bid.Is this assumption not true for your data? Does your data set the
/awards[]/relatedBid field to link awards to specific bids? Please create an issue on GitHub - with this field, the indicator could be more precise.Example Output
Input (OCDS JSONL showing late bid):Implementation Details
Fromsrc/indicators/r030.rs:15-57:
The indicator:
- Extracts the submission deadline from
tender.tenderPeriod.endDate - Builds a set of supplier IDs from all active awards
- For each valid bid:
- Checks if the bid date is after the deadline (string comparison)
- Checks if any of the bid’s tenderers won an award
- Flags both the process and the matching tenderers
- Uses simple string comparison for dates (ISO 8601 format is lexicographically sortable)
Legitimate exceptions: Some jurisdictions allow extensions or accept late bids under specific circumstances (e.g., technical issues with submission systems). Organizations should:
- Document when late bids are accepted legitimately
- Consider implementing a grace period threshold if minor delays are acceptable
- Review flagged cases for valid business reasons
Related Indicators
Consider using R030 alongside:- R003 (Short submission period) - May indicate rushed procurement with lax deadline enforcement
- R058 (Winner close to submission deadline) - Contrast with early submissions vs. late submissions
