Is Municipality Local Government
Boolean or coded flag indicating whether the vendor’s local government entity is a municipality. It identifies records where the vendor site is classified as a municipal local government rather than another type of local government.
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 involving municipal local government vendors
- Segment vendor population by local government subtype
- Support compliance or public-sector participation reporting
Common Mistakes
- Assuming any local government vendor is a municipality
- Treating the flag as a vendor name or descriptive text field
Query Guidance
Use explicit equality tests on the observed code values, for example WHERE isMunicipalityLocalGovernment = 1 or = 'Y' depending on the dataset encoding. If the field is nullable or coded, confirm the actual stored values and join to any companion description field only if needed for display.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isMunicipalityLocalGovernment AS is_municipality_local_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isMunicipalityLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isMunicipalityLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isMunicipalityLocalGovernment 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.