Closed Date
The date and time the IDV transaction was formally closed in FPDS. It records when the instrument stopped being active for further procurement action within the reported transaction lifecycle.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering active versus closed IDVs
- calculating time-to-close or instrument lifespan
- grouping closures by month, quarter, or fiscal year
Common Mistakes
- assuming the close date equals award date or expiration date
- casting without accounting for the time portion or null values
Query Guidance
Use this field in date filters, lifecycle joins, and cohort analyses after casting the string to a timestamp or date type appropriate to your SQL dialect. For reporting by period, derive month, quarter, or fiscal year from the parsed value, and exclude nulls explicitly when measuring closure timing.
SQL Examples
Preview values
SELECT
content__IDV__transactionInformation__closedDate AS closed_date
FROM fpds.data
WHERE content__IDV__transactionInformation__closedDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__transactionInformation__closedDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__transactionInformation__closedDate 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.