Extent Competed
Human-readable label for the coded value that indicates how much competition was obtained for the IDV. It records the competition extent selected in FPDS, such as whether the requirement was fully competed, partially competed, or not competed.
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
- Classify IDVs by competition status for dashboard reporting
- Measure the share of competed versus noncompeted awards
- Filter or group records by competition category in FPDS SQL queries
Common Mistakes
- Assuming the value is descriptive text rather than a code or label
- Using the field without checking the allowed value set or related competition fields
Query Guidance
Use this field in SELECT, GROUP BY, and WHERE clauses to segment IDVs by competition category. If values are coded, join or map them to their reference labels before reporting, and avoid comparing against loosely matched text unless you have confirmed the exact stored representation.
SQL Examples
Preview values
SELECT
content__IDV__competition__extentCompeted AS extent_competed
FROM fpds.data
WHERE content__IDV__competition__extentCompeted IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__extentCompeted AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.