Is Minority Institution
Boolean or coded indicator showing whether the vendor site is associated with a minority institution. It is a flag within the educational-entity details for the vendor site, not a general organizational characteristic of the contractor record.
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
- Identify awards involving minority institutions
- Segment educational vendors for compliance or policy analysis
- Filter records for diversity- or institution-status reporting
Common Mistakes
- Assuming the flag applies to the entire vendor instead of the specific site/entity context
- Treating the value as a narrative description rather than a coded indicator
Query Guidance
Use the field as a filter on the expected true/false or code values after confirming the data encoding in your extract. Example pattern: WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isMinorityInstitution IN ('1','Y',1) for true, with the exact predicate adjusted to the observed code set.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isMinorityInstitution AS is_minority_institution
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isMinorityInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isMinorityInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isMinorityInstitution 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.