Is State Controlled Institutionof Higher Learning
Boolean or coded flag indicating whether the vendor site is a state-controlled institution of higher learning. It captures a specific institutional subtype within vendor site details rather than a performance or award outcome measure.
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
- Segment obligations to state universities and colleges
- Filter vendor records for public higher education recipients
- Support compliance and institutional ownership analyses
Common Mistakes
- Assuming 0 always means false without checking the code definition
- Using this field alone to identify all educational institutions
Query Guidance
Use explicit equality checks against the documented true value or approved code, and include null handling when testing presence or absence. Example pattern: WHERE isStateControlledInstitutionofHigherLearning = 1 OR isStateControlledInstitutionofHigherLearning = 'Y'; validate against observed FPDS values before production use.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS is_state_controlled_institutionof_higher_learning
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.