Is Private University or College
Boolean or coded flag indicating whether the vendor site is identified as a private university or college. It is part of the vendor site’s type-of-educational-entity information and reflects the specific entity classification stored in the FPDS 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 awards involving private universities or colleges
- Segment vendor spend by educational institution type
- Support compliance and eligibility analysis for education-related vendors
Common Mistakes
- Assuming a 0 value always means the vendor is definitely not a private university or college when it may also reflect missing or unreported data
- Using the flag without checking whether the record contains a paired description or other educational-entity fields that clarify the classification
Query Guidance
Use this field as a boolean filter when the values are normalized, for example `= 1`, `= 'Y'`, or the dataset-specific true code. When writing SQL, inspect actual stored values and combine with `IS NOT NULL` or the paired description field if needed to distinguish false from missing; avoid text matching unless the field is stored as a coded label.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS is_private_university_or_college
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege 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.