Number of Offers Source Description
Human-readable text that explains the source associated with the reported Number of Offers value in the IDV competition record. It is the descriptive label for a paired coded or abbreviated field, not the numeric 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
- Interpreting the provenance of offer-count data in IDV competition records
- Validating whether offer-count information came from a specific procurement system or reporting source
- Filtering or grouping records by source description when code values are not self-explanatory
Common Mistakes
- Treating this description as the actual number of offers
- Using the description field alone without checking the paired source code or observed value set
Query Guidance
Select this field with the paired Number of Offers Source code when decoding source values. In SQL, use it as a lookup label or grouping attribute for reporting, not as a measure; if needed, normalize by trimming and comparing distinct description values to the associated code field.
SQL Examples
Preview values
SELECT
content__IDV__competition__numberOfOffersSource__description AS number_of_offers_source_description
FROM fpds.data
WHERE content__IDV__competition__numberOfOffersSource__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__numberOfOffersSource__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.