Created Date
Timestamp indicating when the Other Transaction award transaction record was created in FPDS. It represents the system-created date and time for the transaction entry, not necessarily the award action date or the date the underlying procurement occurred.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- incremental ETL and refresh filters
- data latency and audit trail analysis
- ordering transactions within a reporting window
Common Mistakes
- using it as the award effective date or obligation date
- grouping procurement outcomes by creation timestamp without accounting for time zone or load timing
Query Guidance
Store and compare as a timestamp/datetime. In SQL, use it for range filters, ordering, and change detection (for example, WHERE createdDate >= :start_ts AND createdDate < :end_ts), but do not substitute it for procurement action dates in obligation or award analyses.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__transactionInformation__createdDate AS created_date
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__createdDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__transactionInformation__createdDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.