Is Township Local Government
Boolean/code flag indicating whether the vendor's local government type is a township. It identifies records where the vendor site is classified as a township local government rather than another local government form.
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 associated with township local governments
- Segment local government vendors by subtype
- Support reporting on sub-federal public-sector recipients
Common Mistakes
- Assuming a non-null value always means the vendor is definitely a township without checking the code set
- Counting this field alongside other local government subtype flags without de-duplicating records
Query Guidance
Use it as a WHERE clause filter or CASE expression, based on the dataset's encoding. For example, filter to records where the flag indicates true, and pair it with other local government subtype fields when building mutually exclusive categories.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS is_township_local_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment 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.