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