Reason Not Competed Description
Human-readable text that explains why an IDV was not competed. It is the descriptive companion to the coded "Reason Not Competed" value and conveys the narrative label recorded in FPDS for the non-competitive justification.
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
- Review noncompetitive justification patterns by agency or office
- Group IDVs by stated reason not competed
- Validate or interpret the coded Reason Not Competed field
Common Mistakes
- Using the description field as if it were the authoritative code
- Counting distinct text values without normalizing equivalent labels or abbreviations
Query Guidance
Use this field for display, validation, and text-based grouping only when code values are unavailable or need interpretation. In SQL, join or group on the paired reason code where possible, and use this description to label results; if filtering on text, normalize case and trim whitespace to reduce duplicate variants.
SQL Examples
Preview values
SELECT
content__IDV__competition__reasonNotCompeted__description AS reason_not_competed_description
FROM fpds.data
WHERE content__IDV__competition__reasonNotCompeted__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__reasonNotCompeted__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.