Last Modified Date
Timestamp showing when the FPDS transaction record was most recently changed. It is a system-maintained audit attribute, not the procurement action date itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- incremental refresh and delta loads
- identifying recently updated FPDS records
- auditing data recency and change windows
Common Mistakes
- using last modified date as the procurement action date
- comparing raw strings without timestamp conversion
Query Guidance
Cast the field to a timestamp and filter or sort on that value when checking recency or change history. Example pattern: WHERE CAST(content__IDV__transactionInformation__lastModifiedDate AS TIMESTAMP) >= :cutoff. Use it for ETL watermarking and record version analysis, not for obligation or award timing.
SQL Examples
Preview values
SELECT
content__IDV__transactionInformation__lastModifiedDate AS last_modified_date
FROM fpds.data
WHERE content__IDV__transactionInformation__lastModifiedDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__transactionInformation__lastModifiedDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.