Is State Controlled Institutionof Higher Learning
Boolean or coded flag indicating whether the vendor site is identified as a state-controlled institution of higher learning. It is stored under vendor site details and represents a specific educational-entity classification for the vendor location in the transaction record.
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 transactions awarded to public universities and similar institutions
- Segment vendor populations by educational entity type
- Support compliance, reporting, and spend analysis by recipient class
Common Mistakes
- Assuming the flag applies to the vendor as a whole rather than the specific vendor site record
- Using the field without checking whether the dataset stores boolean values, numeric codes, or text indicators
Query Guidance
In SQL, filter on the value that represents true in your extract, for example = 1, = 'Y', or = 'true', after confirming the actual encoding in the data. Join or aggregate at the vendor-site level when possible, and consider nulls as unknown rather than false.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS is_state_controlled_institutionof_higher_learning
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isStateControlledInstitutionofHigherLearning AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.