Is County Local Government
Boolean or coded flag indicating whether the vendor site is classified as a county local government entity. It is a specific business-type attribute nested under the vendor's local government classification in the Other Transaction IDV record.
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 where the vendor is a county local government
- Segment vendor population by local government subtype
- Support compliance or spend reporting for public-sector suppliers
Common Mistakes
- Assuming the field identifies all local governments rather than only counties
- Treating a 0 value as missing instead of a false/not-applicable indicator without checking the extract's coding rules
Query Guidance
Use this field in WHERE clauses to isolate county local government vendors, but verify whether the dataset stores it as a boolean, numeric flag, or coded text. If the value is not standardized, normalize it first and combine it with related vendor business-type indicators when building vendor classification logic.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment AS is_county_local_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isCountyLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.