Closed Status

Boolean or coded flag indicating whether the IDV transaction is closed. It captures the closure status of the award record rather than the financial completion of the underlying work.

Family: IDV
Category: General
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__transactionInformation__closedStatus
Title
Closed Status
FPDS Path
IDV/transactionInformation/closedStatus
Description
Boolean or coded flag indicating whether the IDV transaction is closed. It captures the closure status of the award record rather than the financial completion of the underlying work.
Business Meaning
This field helps analysts separate open vehicles from terminated or fully closed instruments when reviewing award lifecycle, competition exposure, and obligation activity. It is useful for compliance checks, portfolio aging, and filtering records that should no longer be considered active in performance or opportunity analyses.
Example Value
N
Observed Non-Null Count
3,462,178

FPDS Compare

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

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Filter to active IDVs versus closed IDVs
  • Identify awards for lifecycle or expiration analysis
  • Support compliance and records management reporting

Common Mistakes

  • Assuming closed status means all orders under the IDV are complete
  • Treating blank or null values as equivalent to open without checking source encoding

Query Guidance

Use explicit comparisons against the documented closed indicator values in SQL, and verify whether the column stores boolean values, Y/N codes, or other coded text. For example, filter on the closed value only after confirming the dataset's encoding, and handle nulls separately if they represent missing rather than open status.

SQL Examples

Preview values

SELECT
    content__IDV__transactionInformation__closedStatus AS closed_status
FROM fpds.data
WHERE content__IDV__transactionInformation__closedStatus IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__IDV__transactionInformation__closedStatus AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__transactionInformation__closedStatus IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC

Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.