Reason Not Competed
Coded reason recorded when an award was not competed. It identifies the specific noncompetitive rationale captured in the FPDS competition section, such as a statutory exception or other documented basis for using a noncompetitive approach.
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
- Identify and count sole-source or otherwise noncompetitive awards
- Group noncompetitive awards by stated justification code
- Compare competition patterns across agencies, offices, or contract types
Common Mistakes
- Reading the code as a plain-language explanation without checking the corresponding label or codebook
- Using the field alone to judge whether an award was properly justified
Query Guidance
Filter on non-null values to isolate records where a noncompetitive rationale was reported, and aggregate by the code to analyze patterns. Example: SELECT reason_not_competed, COUNT(*) FROM awards WHERE reason_not_competed IS NOT NULL GROUP BY reason_not_competed; if descriptions are available in another table, join them to translate codes before reporting.
SQL Examples
Preview values
SELECT
content__award__competition__reasonNotCompeted AS reason_not_competed
FROM fpds.data
WHERE content__award__competition__reasonNotCompeted IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__reasonNotCompeted AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__reasonNotCompeted 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.