Multi Year Contract
Boolean/coded indicator showing whether the award is designated as a multi-year contract. The example value "N" indicates the award is not multi-year; other observed values, if present, should be interpreted according to the FPDS code set for this flag.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards that are multi-year versus not multi-year
- Segment obligation and award counts by contract structure
- Support compliance or budget-duration analyses
Common Mistakes
- Assuming every non-N value means yes without checking the code set
- Using the field as a contract length measure instead of a binary/coded indicator
Query Guidance
Use it as a categorical filter, for example WHERE multiYearContract = 'Y' or WHERE multiYearContract = 'N', after confirming the observed coding in your data. If the extract contains mixed encodings, normalize values in a CASE expression before aggregating.
SQL Examples
Preview values
SELECT
content__award__contractData__multiYearContract AS multi_year_contract
FROM fpds.data
WHERE content__award__contractData__multiYearContract IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__multiYearContract AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__multiYearContract 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.