Congressional District Code
Code identifying the congressional district associated with the vendor location recorded in the award. It is a geographic classification field, not a narrative address, and typically stores a standardized district code such as a state/district combination.
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
- District-level spend summaries
- Geographic joins to congressional district reference tables
- Filtering awards by vendor location geography
Common Mistakes
- Assuming the code is a human-readable district name
- Comparing values without normalizing formatting or handling blanks/non-standard codes
Query Guidance
Use this field as a grouping or join key after normalizing the code format. In SQL, filter with exact matches, aggregate by the district code, and left join to a district lookup table for labels; do not use string parsing unless the dataset documentation confirms the encoding scheme.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode AS congressional_district_code
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__congressionalDistrictCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.