Is State Government
Boolean/code flag indicating whether the vendor site is classified as a state government entity in the Other Transaction IDV vendor business type hierarchy. A value such as 1 typically means the condition is true; 0 means it is not, though analysts should confirm the local code set in the dataset.
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 or vendor sites involving state government entities
- Segment vendor population by public-sector ownership or status
- Support compliance, reporting, and intergovernmental analysis
Common Mistakes
- Treating the flag as award type rather than vendor classification
- Assuming all non-1 values mean missing data instead of false or alternate codes
Query Guidance
Use this field in WHERE clauses to isolate state government vendor sites, for example `= 1` or the dataset’s true code. If the extract stores booleans as strings or mixed codes, inspect distinct values first and join or co-filter with the vendor business type description fields when available.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment AS is_state_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment 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.