Multi Year Contract Description
Human-readable text describing the value of the paired coded field for whether the award is treated as a multi-year contract. It is the descriptive label associated with the underlying multi-year contract status rather than an independent business attribute.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Displaying the readable label for multi-year contract status
- Validating coded values against source descriptions
- Supporting summary reports on contract structure
Common Mistakes
- Treating the description as the authoritative data element instead of the paired code
- Grouping analytical results by description when the code field should be used
Query Guidance
Select this field with the paired multi-year contract code for readability, but use the code field for joins, filters, and aggregations. When data quality is uncertain, compare distinct description values to observed code values and normalize unexpected labels in a lookup table.
SQL Examples
Preview values
SELECT
content__award__contractData__multiYearContract__description AS multi_year_contract_description
FROM fpds.data
WHERE content__award__contractData__multiYearContract__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__multiYearContract__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.