Created Date
Timestamp showing when the FPDS transaction record was created in the system. It captures the creation date and time for the specific award transaction instance, not the procurement action date or the award’s effective date.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering records created in a reporting window
- ordering transactions by system entry time
- detecting delayed submissions or backfills
Common Mistakes
- treating it as the procurement action date
- sorting or filtering it as a text string without datetime conversion
Query Guidance
Parse to a timestamp/datetime type before filtering, grouping, or sorting. In SQL, use it for `WHERE createdDate >= ... AND createdDate < ...`, and if time zones are not normalized, confirm the dataset’s timestamp convention before comparing records across systems.
SQL Examples
Preview values
SELECT
content__award__transactionInformation__createdDate AS created_date
FROM fpds.data
WHERE content__award__transactionInformation__createdDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__transactionInformation__createdDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__transactionInformation__createdDate 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.