Is Township Local Government
Boolean or coded flag indicating whether the vendor site is classified as a township local government. It is a subcategory within vendor business type classification for the vendor site 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 to township local government vendors
- Segment vendor populations by local government subtype
- Support compliance and recipient-type reporting
Common Mistakes
- Assuming the flag is always stored as a literal boolean instead of a coded value
- Using it without checking related vendor business type fields for the broader local government classification
Query Guidance
Use this field as a filter predicate for township local government records, but first inspect the dataset for the actual coded values present. In SQL, test for the observed affirmative value(s) and consider combining it with the parent local government indicator or vendor type fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS is_township_local_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.