Is City Local Government
Boolean or coded flag indicating whether the vendor site is classified as a city local government entity within the vendor business type hierarchy. A value such as 1/true typically means the record meets that condition; 0/false means it does not. If the source stores codes rather than plain booleans, inspect the observed values and any paired description fields before filtering.
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
- Segment awards to city government vendors
- Exclude or include municipal entities in supplier analysis
- Support compliance and reporting checks on vendor type
Common Mistakes
- Assuming 0 always means a true negative rather than unknown or unreported
- Using this field as a proxy for all local government types
Query Guidance
Use a direct predicate on the positive flag value, for example `WHERE isCityLocalGovernment = 1` or the equivalent true code in your extract. Combine with related vendor business type fields when you need the full local-government subset, and guard for NULLs if the source is sparsely populated.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment AS is_city_local_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCityLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.