Is Inter Municipal Local Government
Boolean or coded flag indicating whether the vendor site is classified as an intermunicipal local government within the vendor business type hierarchy. A value such as 0 generally indicates the condition is not met, while other observed values may indicate yes/true or a coded representation depending on the source extract.
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 local government vendor types
- Segment vendor populations by public-sector organizational form
- Support compliance or eligibility checks tied to entity type
Common Mistakes
- Assuming 0/1 semantics without checking the source encoding
- Using the field as a proxy for award size, competition, or geography
Query Guidance
Use explicit value checks based on the dataset's encoding, for example `WHERE field = 1` for true if the extract uses numeric booleans, or join to a lookup/description table if the value is coded. When aggregating, count distinct awards or vendors after applying the flag to avoid double counting across vendor-site records.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS is_inter_municipal_local_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isInterMunicipalLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.