Closed By
Identifies the person, office, or entity that performed the closure action on the IDV transaction. In FPDS, this is the actor associated with closing out the record, not the contract awardee or program office. The value is typically a coded or abbreviated identifier rather than a full narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- closeout accountability analysis
- workflow or office-level grouping
- filtering transactions by closure actor
Common Mistakes
- interpreting the value as the contractor or awardee
- assuming free-text descriptions when the field is often coded
Query Guidance
Use the field in SELECT, GROUP BY, and WHERE clauses to isolate or count records by closeout actor. When comparing across time or agencies, standardize the text value with TRIM/UPPER and join to a lookup table if available; do not use it as a surrogate for transaction status unless paired with explicit closeout indicators.
SQL Examples
Preview values
SELECT
content__IDV__transactionInformation__closedBy AS closed_by
FROM fpds.data
WHERE content__IDV__transactionInformation__closedBy IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__transactionInformation__closedBy AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__transactionInformation__closedBy 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.