Is State Government
Boolean or coded flag indicating whether the vendor site is classified as a state government entity in the Other Transaction Award vendor business types structure. A value such as 0 typically means the condition is not met; nonzero, true, or coded equivalents indicate that it is met, depending on the source encoding.
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 where the vendor site is a state government
- Segment vendor universe by public-sector vs non-public-sector entities
- Support compliance, reporting, or ownership-type analysis
Common Mistakes
- Assuming 0 always means false without checking the dataset encoding
- Using this field as a vendor name or descriptive attribute instead of a classification flag
Query Guidance
In SQL, compare against the actual stored representation used in your dataset, for example WHERE isStateGovernment = 1 or WHERE isStateGovernment IN ('Y','true') depending on encoding. If the feed includes both code and description variants, validate the paired field or inspect distinct values before building joins or filters.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment AS is_state_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isStateGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.