Is Local Government Owned
Boolean or coded flag indicating whether the vendor is owned by a local government entity in the Other Transaction Award vendor site record. It identifies the local-government-owned status recorded for the vendor, with 0 commonly representing false/no in observed data.
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 vendors owned by local governments
- Segment vendor populations by ownership type
- Support compliance or policy analysis of non-traditional vendor ownership
Common Mistakes
- Assuming the field is always populated as 0/1 without checking the source values
- Confusing local government ownership with vendor location or place of performance
Query Guidance
Use equality or boolean-style predicates based on the actual stored values, for example `= 1`, `= 'Y'`, or `IS TRUE` depending on the dataset encoding. If the data includes companion label fields or mixed codes, inspect distinct values first and normalize before aggregation.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned AS is_local_government_owned
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isLocalGovernmentOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.