Place of Performance Congressional District
Identifies the congressional district associated with the place where the work under the Other Transaction award is performed. It is a geographic attribute that records the district as a string value, often in a short coded format such as "01".
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Map award performance locations to congressional districts
- Aggregate obligations by district for oversight reporting
- Join to district reference tables for geographic rollups
Common Mistakes
- Assuming the value is a district name instead of a code
- Dropping leading zeros or grouping inconsistent code formats together
Query Guidance
Use the field as a string dimension in GROUP BY, JOIN, and filter clauses, and preserve exact formatting when comparing values. If district codes are to be analyzed across datasets, standardize them first and pair them with state or other location fields to avoid ambiguous matches.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceCongressionalDistrict AS place_of_performance_congressional_district
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceCongressionalDistrict IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceCongressionalDistrict AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceCongressionalDistrict 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.