Is County Local Government
Boolean or coded flag indicating whether the vendor’s business type includes a county local government at the vendor site level. It is a classification attribute attached to the vendor’s local government type, not a measure of contract performance or obligation value.
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 county local governments
- Segment vendor counts by local government subtype
- Support compliance or policy reporting on public-entity vendors
Common Mistakes
- Interpreting the flag as contract type or award instrument rather than vendor classification
- Assuming 0 always means false without checking the dataset’s coded value conventions
Query Guidance
Use this field as a boolean filter in SQL, e.g. WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment = 1, but verify the actual stored code values in your extract. If the field is nullable or coded, test distinct values and combine it with adjacent vendor business type fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment AS is_county_local_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment 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.