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.

Family: IDV
Category: Competition
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__competition__extentCompeted
Title
Extent Competed
FPDS Path
IDV/competition/extentCompeted
Description
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.
Business Meaning
This field is central to competition reporting because it helps analysts distinguish competitive from noncompetitive procurement activity at the IDV level. It is used to assess procurement strategies, compliance with competition policies, and trends in the use of limited-competition or sole-source awards.
Example Value
F
Observed Non-Null Count
5,429,040

FPDS Compare

FPDS Query Variable
content__IDV__competition__extentCompeted
FPDS XML Path
IDV/competition/extentCompeted
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/competition/extentCompeted' into the SQL-ready variable 'content__IDV__competition__extentCompeted'.

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.