Subcontract Plan
Boolean or coded flag indicating whether a subcontracting plan is required for the IDV. In FPDS, this is part of Preference Programs and captures the presence of a subcontract plan requirement rather than the full narrative of the plan itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify IDVs subject to subcontracting-plan requirements
- Filter awards for small business and compliance analysis
- Compare obligation patterns across contract vehicles and agencies
Common Mistakes
- Assuming the field is always a simple true/false flag
- Interpreting a code value without checking the dataset’s code meanings
Query Guidance
Use this field in WHERE clauses only after confirming the valid code values and their meanings. If multiple representations exist, map them to a standardized indicator such as required/not required before aggregating or joining to compliance metrics.
SQL Examples
Preview values
SELECT
content__IDV__preferencePrograms__subcontractPlan AS subcontract_plan
FROM fpds.data
WHERE content__IDV__preferencePrograms__subcontractPlan IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__preferencePrograms__subcontractPlan AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__preferencePrograms__subcontractPlan IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.