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.
FPDS Compare
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.