Extent Competed
Human-readable value that records the extent to which an award action was competed. It is the descriptive label associated with the competition status captured in FPDS, such as a coded indication of full, partial, or no competition.
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
- Calculate competed versus noncompeted award counts
- Segment awards by competition level for trend analysis
- Support compliance and justification reviews
Common Mistakes
- Assuming the raw string is self-explanatory without a code lookup
- Mixing this field with separate synopsis or rationale fields that describe why competition was limited
Query Guidance
Use exact-value filters or a CASE statement after mapping codes to business meanings. When joining or aggregating, normalize the coded values to standard competition categories first, and do not compare against descriptive text unless you have confirmed the stored value format.
SQL Examples
Preview values
SELECT
content__award__competition__extentCompeted AS extent_competed
FROM fpds.data
WHERE content__award__competition__extentCompeted IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__extentCompeted AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__extentCompeted 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.