Is Local Government
Boolean or coded indicator showing whether the vendor entity recorded on the award is a local government. It is a classification flag within the vendor business type hierarchy, not a narrative description of the award action.
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 made to local government vendors
- Segment vendor population by government entity type
- Support compliance and public-sector sourcing analysis
Common Mistakes
- Assuming the field describes the award recipient name rather than a vendor classification
- Treating a missing or non-1 value as definitively false without checking the dataset’s coding scheme
Query Guidance
Use this field as a boolean filter in SQL after confirming the stored code values, for example `WHERE isLocalGovernment = 1` or the equivalent true-coded value. If the column is text or mixed-coded, normalize the observed values first and validate against related vendor business type fields before aggregating.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment AS is_local_government
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment 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.