Is Township Local Government
Boolean or coded flag indicating whether the vendor's business type includes a township local government entity. It records the local-government classification attached to the vendor site details for an 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 records to township local government counterparties
- Segment vendor populations by local-government subtype
- Support compliance or classification checks for public-entity vendors
Common Mistakes
- Assuming 0 always means no when it may also mean unknown or not reported
- Using this field as a general indicator of all local governments instead of only townships
Query Guidance
Use it as a boolean filter in WHERE clauses only after confirming the dataset's coding conventions, for example `... WHERE isTownshipLocalGovernment = 1` for true values. When analyzing completeness, include nulls or explicit unknown codes separately, and join or compare with other vendorBusinessTypes flags if you need the full local-government profile.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS is_township_local_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isTownshipLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.