Contracting Office Id Name
Human-readable name of the contracting office associated with the Other Transaction IDV record. This is the label counterpart to the contracting office ID code and identifies the office that issued or managed the instrument.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group awards by contracting office for reporting
- Display office labels in dashboards and exports
- Validate or reconcile office IDs to readable names
Common Mistakes
- Using the name as a unique key instead of the office ID
- Assuming abbreviated text always matches a standardized organization name
Query Guidance
Use this field for presentation, filtering, or aggregate labels, but join and deduplicate on the contracting office ID when possible. In SQL, normalize case and trim whitespace if comparing names, and prefer selecting the ID plus name together to preserve both the code and its readable label.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeID__name AS contracting_office_id_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeID__name 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.