Number of Offers Source
Human-readable source indicator for the number of offers recorded on an award. This field identifies how the offer count was captured or represented in FPDS and is commonly used as the descriptive companion to a coded competition value.
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
- Validate how offer-count information was recorded for an award
- Group awards by source/label used to describe competition evidence
- Support data quality checks against competition and offer-count fields
Common Mistakes
- Assuming the field is the actual number of offers received
- Using the code or label alone to infer degree of competition without checking related fields
Query Guidance
Use this field as a categorical descriptor in SELECT, GROUP BY, and data quality filters. In SQL, pair it with the competition code and any numeric offer-count field, and handle coded values explicitly with CASE or lookup logic instead of treating the value as a free-text description.
SQL Examples
Preview values
SELECT
content__award__competition__numberOfOffersSource AS number_of_offers_source
FROM fpds.data
WHERE content__award__competition__numberOfOffersSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__numberOfOffersSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.