Congressional District Code
Code identifying the congressional district associated with the vendor location recorded on the Other Transaction Award. It is a coded geographic identifier, not a free-text place name; values are typically abbreviated and should be treated as reference codes.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Count awards or obligations by congressional district
- Map vendor locations to district-level spending
- Join to district reference or geography tables for reporting
Common Mistakes
- Interpreting the code as a city, county, or state
- Aggregating without accounting for null, invalid, or outdated district codes
Query Guidance
Use this field in GROUP BY, JOIN, and filter clauses as a categorical geographic code. For district reporting, standardize values first, then join to a congressional district lookup table; if the code is sparse or inconsistent, test for NULLs, blanks, and nonstandard formats before analysis.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode AS congressional_district_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode 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.