Closed Status
Indicates whether the award transaction is marked as closed. It is a string flag in the transaction information area, with values such as "Y" typically meaning closed and the absence of that indicator or a different value meaning not closed or not reported as closed.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards that are still open versus closed
- Segment lifecycle analyses by transaction closure status
- Exclude closed transactions from active pipeline reports
Common Mistakes
- Assuming any non-null value means closed
- Using the field as a substitute for final contract completion or physical completion
Query Guidance
Use explicit value checks, such as closedStatus = 'Y', and include null handling in WHERE clauses when defining open vs. closed populations. When aggregating, group by normalized status logic rather than raw text alone, and confirm whether your dataset stores uppercase, lowercase, blank, or alternate coded values.
SQL Examples
Preview values
SELECT
content__award__transactionInformation__closedStatus AS closed_status
FROM fpds.data
WHERE content__award__transactionInformation__closedStatus IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__transactionInformation__closedStatus AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.