Contracting Office Id Name
Human-readable name of the contracting office associated with the Other Transaction Award record. It is the label for the contracting office ID rather than the ID code itself, and it identifies the office that handled the award action.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Office-level award summaries
- Validation of coded contracting office identifiers
- Reporting and dashboard labels for procurement office attribution
Common Mistakes
- Using the name as a unique key for joins
- Assuming the label is standardized across all records or agencies
Query Guidance
Use this field for grouping only when the coded office ID is unavailable; otherwise join and aggregate on the office ID and select this field for display. In SQL, expect abbreviated or inconsistent values, so consider normalizing text or using DISTINCT to inspect observed labels before building filters.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__name AS contracting_office_id_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.