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.

Family: IDV
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__transactionInformation__closedDate
Title
Closed Date
FPDS Path
IDV/transactionInformation/closedDate
Description
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.
Business Meaning
Closed dates help analysts distinguish active from ended awards, measure instrument duration, and align obligation or modification activity to the correct reporting window. They are useful for lifecycle analysis, period-of-performance checks, and identifying when IDVs can no longer support downstream orders or actions.
Example Value
2025-06-03 07:16:50
Observed Non-Null Count
660,674

FPDS Compare

FPDS Query Variable
content__IDV__transactionInformation__closedDate
FPDS XML Path
IDV/transactionInformation/closedDate
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/transactionInformation/closedDate' into the SQL-ready variable 'content__IDV__transactionInformation__closedDate'.

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.