Mod Number
A modification number assigned to the Other Transaction IDV contract action. It identifies the specific amendment or change order within the contract’s transaction history, usually as an alphanumeric sequence such as P00007.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Ordering contract actions within an award history
- Identifying the latest modification for a given agreement
- Separating base actions from follow-on changes in analysis
Common Mistakes
- Using the modification number as a unique award identifier
- Assuming numeric order without checking the full coded value format
Query Guidance
Use this field in ORDER BY, DISTINCT, and window functions to sequence contract actions within an award key, but do not rely on it alone for uniqueness. In SQL, pair it with the parent award identifier and action date, and compare the raw text values exactly because leading zeros and prefixes such as P00007 may be meaningful.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__modNumber AS mod_number
FROM fpds.data
WHERE content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__modNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__modNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__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.