Number of Offers Source
Human-readable source indicator for the number of offers received on an IDV award record. It identifies how FPDS says the offer count was recorded, rather than the offer count itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Flag records where competition data source needs review
- Segment awards by how offer counts were reported
- Support validation of competition metrics and completeness
Common Mistakes
- Confusing the source code with the actual number of offers
- Using the field alone to infer level of competition without checking related offer fields
Query Guidance
Use this as a categorical filter or grouping field in SQL, and join or compare it with the associated number-of-offers field(s) to interpret competition reporting. When analyzing distributions, group by the code values and inspect nulls or rare codes separately; if a description table or label mapping exists, decode the value before reporting.
SQL Examples
Preview values
SELECT
content__IDV__competition__numberOfOffersSource AS number_of_offers_source
FROM fpds.data
WHERE content__IDV__competition__numberOfOffersSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__numberOfOffersSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__numberOfOffersSource IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.