Is Historically Black College or University
Boolean or coded flag indicating whether the vendor site is identified as a Historically Black College or University (HBCU). It applies within the vendor site details for an Other Transaction Award and represents the system’s recorded classification for that site.
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
- Count awards involving HBCU vendor sites
- Segment OT awards by educational institution type
- Support diversity and supplier participation reporting
Common Mistakes
- Assuming the flag applies to the full vendor entity rather than the specific site record
- Filtering on the raw value without confirming whether the dataset uses boolean, numeric, or coded representations
Query Guidance
Use this field as a categorical filter in WHERE clauses, typically for true/false or 1/0 logic depending on the dataset encoding. When aggregating, group by the flag value to separate HBCU from non-HBCU records, and validate any nulls or nonstandard codes before reporting.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity AS is_historically_black_college_or_university
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isHistoricallyBlackCollegeOrUniversity AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.