Reason Not Competed Description
Human-readable text that explains the reason a requirement was not competed. It is the descriptive label paired with the coded "Reason Not Competed" value in the Award > Competition portion of FPDS data.
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
- Reviewing sole-source or other noncompetitive award justifications
- Grouping awards by exception to competition for spend analysis
- Supporting audit or oversight checks on competition rates
Common Mistakes
- Treating the description as a stable controlled code rather than free-text label text
- Using the description alone without the paired reason code or competition fields
Query Guidance
Select this field with the corresponding reason code and competition indicators. In SQL, use it for display, filtering, or text grouping only when paired values have been normalized; for analysis, prefer grouping by the coded reason and use the description as a label.
SQL Examples
Preview values
SELECT
content__award__competition__reasonNotCompeted__description AS reason_not_competed_description
FROM fpds.data
WHERE content__award__competition__reasonNotCompeted__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__reasonNotCompeted__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__reasonNotCompeted__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.