Extent Competed
Human-readable extent-of-competition value recorded for an Other Transaction Award contract detail. It indicates how the requirement was competed or whether it was effectively noncompetitive, as captured in the FPDS record.
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
- Classifying awards by competition status
- Identifying noncompetitive or limited-competition transactions
- Segmenting award volumes and obligations by competition category
Common Mistakes
- Assuming the value is a full narrative explanation rather than a coded label
- Aggregating without first normalizing codes and descriptions
Query Guidance
Use this field in GROUP BY, DISTINCT, or CASE logic to bucket competition categories after normalizing code values and descriptions. In SQL, compare against the actual stored string values observed in the data rather than assuming the example value represents the full code set.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__competition__extentCompeted AS extent_competed
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__competition__extentCompeted IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__competition__extentCompeted AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.