Number of Offers Source Description
Human-readable description associated with the coded "Number of Offers Source" value on an award record. It identifies the source label used to explain where the offer-count information came from, rather than storing the source code 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
- Display the human-readable label for the number-of-offers source code
- Validate how offer counts were sourced for competition analysis
- Review distinct source descriptions to understand data quality and coding patterns
Common Mistakes
- Using the description field as if it were the numeric number of offers
- Filtering on the description without checking the paired source code or actual offer-count fields
Query Guidance
Select this field with the paired Number of Offers Source code field for reporting and validation. Use it for descriptive output, grouping only after confirming standardized values, and avoid joining on text unless no coded key is available.
SQL Examples
Preview values
SELECT
content__award__competition__numberOfOffersSource__description AS number_of_offers_source_description
FROM fpds.data
WHERE content__award__competition__numberOfOffersSource__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__numberOfOffersSource__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__numberOfOffersSource__description 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.