Is State Controlled Institutionof Higher Learning
Boolean indicator showing whether the vendor site is a state-controlled institution of higher learning. In FPDS, this flag identifies a specific type of educational entity associated with the vendor record rather than a general vendor classification.
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 is a state-controlled university or college
- Segment spend by educational institution type
- Support compliance or reporting queries involving public higher education vendors
Common Mistakes
- Assuming a 0 value always means false without checking source encoding or null handling
- Using this field alone to identify all educational vendors instead of combining it with related education-entity indicators
Query Guidance
In SQL, filter explicitly on the encoded true value used in your extract and handle nulls separately, for example WHERE field = 1. If you need a broader university grouping, combine this flag with other educational-entity flags and test distinct observed values before building logic.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS is_state_controlled_institutionof_higher_learning
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning 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.