Is Local Government
Boolean flag indicating whether the vendor site is classified as a local government entity in the award record. It captures the record's local-government status at the vendor-site level, not a textual explanation. Example value 0 typically means the condition is not met.
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 associated with local government vendor sites
- Segment obligations by public-sector supplier type
- Support compliance or policy reporting on non-federal recipients
Common Mistakes
- Interpreting the flag as the vendor's overall legal form rather than the site classification
- Assuming numeric values are universally standardized without checking the extract
Query Guidance
Use a direct equality filter after confirming the coding scheme, for example WHERE isLocalGovernment = 1 or WHERE isLocalGovernment = 'Y'. When aggregating, group by the raw flag value and verify null handling, since missing or nonstandard codes may appear in some extracts.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment AS is_local_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernment 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.