Mod Number
Modification number assigned to an Other Transaction Award contract action. It identifies the specific amendment or change associated with the base award, such as the initial award, incremented modifications, or administrative updates.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Sequence award actions within an Other Transaction record
- Count modifications per award or vendor
- Distinguish base awards from subsequent modifications
Common Mistakes
- Treating the value as a numeric field and dropping leading zeros
- Assuming the highest value always means the latest action without checking record ordering or award lineage
Query Guidance
Use it as a string key in filters, joins, and window functions; do not cast unless you normalize the format first. For modification analysis, partition by the parent award identifier and order by this field alongside action date to identify the sequence of changes.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__OtherTransactionAwardContractID__modNumber AS mod_number
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__OtherTransactionAwardContractID__modNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__OtherTransactionAwardContractID__modNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__OtherTransactionAwardContractID__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.