Is Private University or College
Boolean or coded flag indicating whether the vendor site is identified as a private university or college in the Other Transaction IDV record. It captures a specific educational-entity classification at the vendor-site level, not a general vendor ownership or mission attribute.
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 Other Transaction IDVs involving private universities or colleges
- Segment awards to higher-education performers for compliance or portfolio analysis
- Compare private versus public educational recipients across FPDS records
Common Mistakes
- Using it to infer that the entire vendor is a university rather than the specific vendor site classification
- Assuming the field applies to all award types or is equivalent to nonprofit status
Query Guidance
Use explicit value checks appropriate to the extract, such as = 1, = 'Y', or = 'true', after confirming the stored coding. When possible, join or inspect related educational-entity fields to validate the classification and avoid misreading nulls or nonstandard codes as false.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS is_private_university_or_college
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.