Created Date
Timestamp indicating when the IDV transaction record was created in FPDS. It captures the system-recorded creation date and time for the transaction, not the award effective date or obligation 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 within a reporting period
- sequencing transaction creation within an IDV
- measuring data timeliness or ingestion lag
Common Mistakes
- treating the value as the contract award date
- grouping by the raw string without parsing to a datetime
Query Guidance
Parse the string to a datetime type before comparison or aggregation. Use it in WHERE clauses for creation-date windows, and in ORDER BY or window functions when analyzing record sequence; if your database stores it as text, normalize the format first to preserve chronological sorting.
SQL Examples
Preview values
SELECT
content__IDV__transactionInformation__createdDate AS created_date
FROM fpds.data
WHERE content__IDV__transactionInformation__createdDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__transactionInformation__createdDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.