IDV Number of Offers Received
Numeric count of how many offers were received for the IDV action. It records the level of response to the solicitation or ordering process associated with the indefinite delivery vehicle.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Measure competition levels for IDVs
- Compare offer counts across agencies or categories
- Flag low-response or single-offer awards
Common Mistakes
- Interpreting null as zero offers
- Using the field without checking whether the record is an IDV-related action
Query Guidance
Use as a numeric measure in aggregations, filters, and distribution analysis. In SQL, cast or validate the column as numeric, exclude nulls when computing averages, and group by competition or award attributes to study patterns; for example, count records with values = 1 to identify single-offer cases and compare median offer counts by agency or PSC.
SQL Examples
Preview values
SELECT
content__award__competition__idvNumberOfOffersReceived AS i_d_v_number_of_offers_received
FROM fpds.data
WHERE content__award__competition__idvNumberOfOffersReceived IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__competition__idvNumberOfOffersReceived) AS total_value
FROM fpds.data
WHERE content__award__competition__idvNumberOfOffersReceived IS NOT NULL
Distribution overview
SELECT
min(content__award__competition__idvNumberOfOffersReceived) AS min_value,
avg(content__award__competition__idvNumberOfOffersReceived) AS avg_value,
max(content__award__competition__idvNumberOfOffersReceived) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__idvNumberOfOffersReceived IS NOT NULL
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.