Last Modified By
Identifies the user account that last changed the FPDS transaction record. It is an audit-style metadata field, typically stored as an email or username string rather than a procurement 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 data lineage checks
- Identifying update patterns by user or office
- Debugging record changes across refreshes
Common Mistakes
- Using it as a measure of contract performance or responsibility
- Assuming one value always equals one individual across systems
Query Guidance
Use it for grouping, filtering, or distinct counts on record maintenance activity, for example `WHERE lastModifiedBy = 'MOORESC@ORO.DOE.GOV'` or `GROUP BY lastModifiedBy`. If matching across datasets, compare normalized values and consider `LOWER(lastModifiedBy)` to avoid case-sensitive mismatches.
SQL Examples
Preview values
SELECT
content__award__transactionInformation__lastModifiedBy AS last_modified_by
FROM fpds.data
WHERE content__award__transactionInformation__lastModifiedBy IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__transactionInformation__lastModifiedBy AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.