Is Hispanic Servicing Institution
Boolean or coded flag indicating whether the vendor’s line-of-business record identifies it as a Hispanic servicing institution. In FPDS, this is a vendor-site attribute stored under vendor line of business details and may appear as a coded value rather than a free-text label. The field represents the recorded condition for the vendor site, not a narrative explanation.
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 to vendors identified as Hispanic servicing institutions
- Segment vendor populations for demographic or socioeconomic analysis
- Validate coded vendor profile attributes against related site details
Common Mistakes
- Assuming the flag describes the award instead of the vendor site
- Treating a numeric code as universally standardized without checking the extract
Query Guidance
Use explicit value tests after confirming the stored representation, for example WHERE isHispanicServicingInstitution = 1 or = 'Y' or = 'true' depending on the feed. If the column is nullable or coded, normalize values in a CASE expression and join only at the intended vendor-site grain to avoid double counting.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution AS is_hispanic_servicing_institution
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution 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.