Last Modified By
Identifier for the user account that most recently changed the transaction record in FPDS. It captures the last editor’s login or email-style value, not a procurement action or award attribute.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- audit trail and record stewardship review
- identifying recent data maintenance activity
- filtering transactions last edited by a specific user or domain
Common Mistakes
- confusing the editor identifier with the contractor or awarding official
- using it as a procurement performance or award characteristic
Query Guidance
Use exact-match or pattern-based filters on the string value, for example WHERE lastModifiedBy = 'LYDIA.RICHARDS.HR0011@DARPA.MIL' or WHERE lastModifiedBy LIKE '%@DARPA.MIL'. For analysis, group carefully because this is high-cardinality text and may reflect individual accounts rather than stable organizational units.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy AS last_modified_by
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy 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.