Is City Local Government
Boolean indicator showing whether the vendor site is classified as a city local government. It represents a specific local-government subtype within the vendor business type hierarchy and is typically stored as a flag or coded value rather than free text.
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 or vendors to city local government entities
- Segment procurement totals by local-government subtype
- Support compliance and reporting on public-sector vendor participation
Common Mistakes
- Assuming 0 always means no without checking whether the field is missing or not applicable
- Using this field alone to classify all government vendors instead of checking related vendor type flags
Query Guidance
Use it in WHERE clauses as a boolean or coded flag, for example `... WHERE isCityLocalGovernment = 1` or the equivalent true code in your dataset. If the field is nested or sparsely populated, pair it with sibling vendor-business-type fields and null checks to distinguish true, false, and unknown values.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment AS is_city_local_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment 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.