Is Inter Municipal Local Government
Boolean or coded flag indicating whether the vendor is an intermunicipal local government. It records a specific local government classification within the vendor business type hierarchy for the award record.
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
- Filter awards to intermunicipal local government recipients
- Segment vendor populations by local government subtype
- Support compliance and recipient-type reporting
Common Mistakes
- Assuming the field identifies all local governments rather than only the intermunicipal subtype
- Filtering without verifying the dataset's actual coded values
Query Guidance
Use this field as a categorical filter in WHERE clauses, for example by selecting the affirmative value or non-null coded indicator that represents 'yes'. When aggregating, group it with other vendor business type flags to avoid double-counting recipients that may satisfy multiple classifications.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS is_inter_municipal_local_government
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.