Is Hispanic Servicing Institution
Boolean or coded indicator showing whether the vendor’s line of business is identified as a Hispanic Servicing Institution in the IDV vendor site details. The field captures a specific vendor classification, typically stored as a flag value rather than free text. Example value 0 indicates the condition is not met or not flagged.
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 Hispanic Servicing Institution vendors
- Compute spend or count shares for supplier diversity reporting
- Compare agency usage of this vendor category across programs or time
Common Mistakes
- Assuming 0 always means no when the dataset may use alternate code values or nulls
- Using the flag as proof of legal certification without checking source and timing
Query Guidance
Use explicit value checks based on observed encoding, for example WHERE isHispanicServicingInstitution = 1 or WHERE isHispanicServicingInstitution IN ('Y','Yes'). Add null handling if you need to distinguish unknown from false, and join to description or lookup fields if present to validate coded values.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution AS is_hispanic_servicing_institution
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHispanicServicingInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.