Is Local Government Owned
Boolean or coded flag indicating whether the vendor entity is owned by a local government. It represents the FPDS-recorded classification at the vendor site details level, not a broader organizational attribute inferred from the contractor name or address.
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-owned vendors
- Segment supplier population by ownership type
- Validate compliance or diversity reporting by vendor ownership class
Common Mistakes
- Assuming 0 always means no without checking the code set
- Using this field as a proxy for vendor legal structure or public purpose
Query Guidance
In SQL, filter on the stored boolean/code value only after confirming the encoding in your extract, and include null handling explicitly. Example pattern: WHERE isLocalGovernmentOwned = 1 for affirmative records, with separate logic for 0 and NULL if the feed uses coded states rather than a pure boolean.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned AS is_local_government_owned
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned 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.