Only one tenderer submitted a bid in a competitive procurement procedure.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:- The number of tenderers (
/tender/numberOfTenderers) is 1, AND - The procurement method is competitive (default:
/tender/procurementMethodis ‘open’ or ‘selective’)
Example: The Ministry of Education publishes an open opportunity and receives a single bid. Despite being an open competition, no other suppliers participated.
Output
The indicator’s value is always1.0 when a contracting process is flagged.
Configuration
All configuration is optional.Override the default competitive procurement methods. Provide as a pipe-separated list.
Example Output
Input (OCDS JSONL):Implementation Details
Fromsrc/indicators/r018.rs:24-32:
The indicator:
- Checks if the procurement method matches the configured competitive methods
- Retrieves the
numberOfTenderersfield from the tender - Flags the process if the value equals exactly 1
- Uses a simple boolean check - no complex calculations needed
This indicator relies on accurate reporting of
numberOfTenderers in the OCDS data. If this field is not populated, the indicator will not flag any processes.