Closed By
A string field that identifies the person, office, or system that closed the Other Transaction IDV record. It captures the closing actor or source rather than the closure date or reason.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Audit closeout responsibility by office or user
- Group records by closing entity for workflow analysis
- Filter for system-generated versus manual closures
Common Mistakes
- Using the field as the actual close date or close reason
- Assuming all values are standardized across agencies without validation
Query Guidance
Use as a categorical grouping field in SELECT, GROUP BY, and WHERE clauses when analyzing closure patterns. Compare against companion closeout fields if available, and apply value cleanup or lookup mapping before aggregating because the field may contain mixed codes, abbreviations, or free-text identifiers.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__transactionInformation__closedBy AS closed_by
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__transactionInformation__closedBy IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__transactionInformation__closedBy AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.