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.

Family: Other Transaction IDV
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy
Title
Last Modified By
FPDS Path
OtherTransactionIDV/contractDetail/transactionInformation/lastModifiedBy
Description
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.
Business Meaning
This field helps analysts trace record stewardship, identify who updated a transaction, and support audit or data-quality workflows. It is useful for understanding editing patterns across agencies, reviewing recently touched records, and debugging unexpected changes in FPDS extracts.
Example Value
LYDIA.RICHARDS.HR0011@DARPA.MIL
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy
FPDS XML Path
OtherTransactionIDV/contractDetail/transactionInformation/lastModifiedBy
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/transactionInformation/lastModifiedBy' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__transactionInformation__lastModifiedBy'.

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.