Mod Number
Modification number assigned to the referenced IDV within an Other Transaction Award record. It identifies the specific revision or amendment sequence for that base instrument, such as an incremented award modification code.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify the specific modification of a referenced IDV
- Group or sequence award history for the same base instrument
- Join to other award fields that reference the same IDV and modification
Common Mistakes
- Treating the value as a number and stripping leading zeros or letters
- Assuming it is the award number rather than the modification identifier
Query Guidance
Use exact string matching for joins, filters, and deduplication. In SQL, compare this field as VARCHAR/TEXT, and when determining the latest modification for an IDV, pair it with the base IDV identifier and a date field or parsed sequence logic instead of relying on this field alone.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__modNumber AS mod_number
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__modNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__modNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__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.