Is Historically Black College or University
Boolean flag indicating whether the vendor site is identified as a Historically Black College or University (HBCU) in the Other Transaction IDV record. A value such as 1/true means the site is marked as HBCU; 0/false means it is not, or the record does not indicate that status.
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 HBCU vendor sites
- Count or sum obligations tied to HBCU participation
- Segment vendor analysis by educational institution status
Common Mistakes
- Treating a false or null value as proof the vendor is not an HBCU
- Using the flag as a contractor-wide attribute instead of a vendor-site attribute
Query Guidance
Use the field as a boolean filter, e.g. WHERE isHistoricallyBlackCollegeOrUniversity = 1, and handle nulls explicitly if you need to distinguish unknown from no. For rollups, aggregate after normalizing the field to a consistent boolean or numeric representation, and pair it with vendor/site identifiers to avoid double counting.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity AS is_historically_black_college_or_university
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity 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.