Closed Status

Indicates whether the other transaction award record is marked as closed. This is a coded status value, not a narrative description; the example value "N" suggests a yes/no-style flag rather than a free-text field.

Family: Other Transaction Award
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionAward__contractDetail__transactionInformation__closedStatus
Title
Closed Status
FPDS Path
OtherTransactionAward/contractDetail/transactionInformation/closedStatus
Description
Indicates whether the other transaction award record is marked as closed. This is a coded status value, not a narrative description; the example value "N" suggests a yes/no-style flag rather than a free-text field.
Business Meaning
This field helps analysts identify the lifecycle state of an OT award record and separate open transactions from those that are no longer active for reporting, oversight, or trend analysis. It is useful when filtering awards for current portfolio review, closeout analysis, and workflow status checks.
Example Value
N
Observed Non-Null Count
38,894

FPDS Compare

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

Use Cases

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

Common Usage

  • Filter to open or closed awards in portfolio analyses
  • Group records by lifecycle status for reporting
  • Exclude closed records from active pipeline dashboards

Common Mistakes

  • Interpreting the code as a text description instead of a status flag
  • Assuming all closed records are equivalent across agencies or data extracts

Query Guidance

Use this field in WHERE clauses to isolate status values and in GROUP BY aggregations to summarize open versus closed records. When coding logic, map observed values explicitly rather than relying on case or text matching, and validate the code set against the extract you are querying.

SQL Examples

Preview values

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

Top values

SELECT
    content__OtherTransactionAward__contractDetail__transactionInformation__closedStatus AS value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__closedStatus 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.