Is Private University or College
Boolean or coded flag indicating whether the vendor site record identifies the educational entity as a private university or college. In FPDS, this sits under vendor site details and classifies a specific type of educational institution rather than describing award terms or performance.
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 to private universities or colleges
- Profile educational vendors by institution type
- Support compliance or sector-specific recipient analysis
Common Mistakes
- Using the flag as a proxy for all educational institutions
- Assuming null, blank, and false mean the same thing
Query Guidance
Use explicit boolean or code comparisons in WHERE clauses, for example `= 1`, `= 'Y'`, or the extract-specific coded value. When possible, join or inspect the paired description field and validate null handling so you do not exclude records with missing or unreported vendor classification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS is_private_university_or_college
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.