Is Inter Municipal Local Government
Boolean/code flag indicating whether the vendor site is classified as an intermunicipal local government entity in the vendor business type hierarchy. A value such as 0 typically means the classification does not apply; a positive or coded value indicates it does.
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
- Segment awards involving local government vendors
- Support compliance or vendor-type reporting
- Filter out or isolate intermunicipal entities in spend analysis
Common Mistakes
- Assuming the field is a free-text description rather than a coded flag
- Filtering only on a single numeric value without confirming the dataset's coding convention
Query Guidance
Use this field in WHERE clauses to isolate records where the flag is affirmative, but first confirm the actual encoded values in your extract. In SQL, test for the known affirmative code or a non-null truthy value, and combine with other vendor business type fields when building mutually exclusive segments.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS is_inter_municipal_local_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment 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.