Last Modified Date

Timestamp showing when the FPDS Other Transaction Award record was last updated in the source system. It reflects the most recent modification to the transaction detail, not necessarily the award date or the date the procurement action occurred.

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

Variable Overview

FPDS Query Variable
content__OtherTransactionAward__contractDetail__transactionInformation__lastModifiedDate
Title
Last Modified Date
FPDS Path
OtherTransactionAward/contractDetail/transactionInformation/lastModifiedDate
Description
Timestamp showing when the FPDS Other Transaction Award record was last updated in the source system. It reflects the most recent modification to the transaction detail, not necessarily the award date or the date the procurement action occurred.
Business Meaning
This field matters because it tells analysts how current a record is and helps identify when award data may have changed after initial entry. It is useful for incremental refreshes, audit trails, and distinguishing newly reported actions from later corrections or repostings.
Example Value
2024-07-31 11:00:04
Observed Non-Null Count
38,894

FPDS Compare

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

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Incremental data loads and refresh logic
  • Identifying amended or corrected award records
  • Filtering records by reporting or update window

Common Mistakes

  • Using it as the award date or transaction date
  • Comparing it as a plain string without datetime conversion

Query Guidance

Convert the string to a timestamp/datetime type before filtering or sorting. Use it in WHERE clauses for update windows, in window functions to keep the latest version of a record, and in GROUP BY only after truncating to the desired time grain.

SQL Examples

Preview values

SELECT
    content__OtherTransactionAward__contractDetail__transactionInformation__lastModifiedDate AS last_modified_date
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__lastModifiedDate IS NOT NULL
LIMIT 25

Top values

SELECT
    content__OtherTransactionAward__contractDetail__transactionInformation__lastModifiedDate AS value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__lastModifiedDate 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.