Mod Number
Modification number for the referenced IDV associated with the award. It identifies the specific version of the umbrella/interagency vehicle being cited in the award record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Linking awards to the correct IDV version
- Reconstructing modification history for umbrella vehicles
- Filtering or grouping awards by referenced IDV version
Common Mistakes
- Confusing this value with the award's own modification number
- Using it alone without the referenced IDV identifier
Query Guidance
Use this field as a join or grouping key only in combination with the referenced IDV ID. In SQL, compare it as a text/code value rather than a numeric measure unless the source data is consistently numeric; when deduplicating or versioning records, include both the referenced IDV and mod number in the key.
SQL Examples
Preview values
SELECT
content__award__awardID__referencedIDVID__modNumber AS mod_number
FROM fpds.data
WHERE content__award__awardID__referencedIDVID__modNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__awardID__referencedIDVID__modNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__awardID__referencedIDVID__modNumber 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.