Multi Year Contract Description
Human-readable description for the paired coded field indicating whether the IDV is a multi-year contract. It records the explanatory label for the multi-year contract status rather than the underlying code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Translate the multi-year contract indicator into readable output for reports
- Validate whether an IDV is reported as multi-year when analyzing award terms
- Join with the coded multi-year field to present code plus description in dashboards
Common Mistakes
- Using the description field as if it were the authoritative code for filtering
- Assuming a short value like NO is the full business rule rather than the label for the paired indicator
Query Guidance
Use this field for display and validation, not primary filtering. In SQL, filter on the paired coded multi-year indicator when possible, and select this description alongside it for readability; when values are inconsistent or abbreviated, review distinct values and pair them with the source code before analysis.
SQL Examples
Preview values
SELECT
content__IDV__contractData__multiYearContract__description AS multi_year_contract_description
FROM fpds.data
WHERE content__IDV__contractData__multiYearContract__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__multiYearContract__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__multiYearContract__description 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.