Congressional District Code
Coded congressional district for the primary consortia member's location in the Other Transaction IDV record. It identifies the district associated with the primary member’s address rather than the award-wide location.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Geo-spatial analysis of consortium member locations
- Aggregation of awards by congressional district
- Filtering records by legislative district
Common Mistakes
- Assuming the code describes the entire award location rather than the primary consortia member location
- Grouping without handling null, blank, or nonstandard district codes
Query Guidance
Use the field as a categorical code in WHERE, GROUP BY, and JOIN logic after normalizing blanks and nulls. If district labels are needed, join to a reference table or decode the code externally; do not assume numeric formatting alone is stable across all records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__congressionalDistrictCode AS congressional_district_code
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__congressionalDistrictCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__congressionalDistrictCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__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.