Is Private University or College
Boolean flag indicating whether the vendor’s site is identified as a private university or college in the Other Transaction Award record. A value such as 1/true means the site is classified as a private higher-education institution; 0/false means it is not. This is a coded indicator, not the institution’s name or full organizational type.
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 OT awards to private universities and colleges
- Segment vendor populations by higher-education ownership type
- Support compliance, partner mix, or research-award reporting
Common Mistakes
- Assuming a false value means the vendor is not a university at all
- Confusing the flag with the institution's name or legal entity type
Query Guidance
Use the field as a categorical filter in SQL, for example WHERE isPrivateUniversityOrCollege = 1 (or the equivalent true value in your data). If the dataset stores coded strings, compare against the observed code set and handle NULL separately to distinguish unknown from not-applicable or false.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS is_private_university_or_college
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isPrivateUniversityOrCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.