Is Hospital
Boolean or coded flag indicating whether the vendor site is a hospital. It describes the vendor's line of business classification at the site level, not the award's place of performance or the contracting agency's healthcare mission.
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 or vendor sites classified as hospitals
- Segment healthcare-related suppliers in spend analysis
- Support compliance or market-concentration reviews involving medical institutions
Common Mistakes
- Confusing vendor site classification with place of performance
- Assuming 0 always means false without checking the dataset encoding
Query Guidance
Use this field in WHERE clauses to isolate hospital sites, for example `WHERE isHospital = 1` if the dataset uses 1/0 flags. If the coding is not confirmed, first profile distinct values and, when available, join to any description field or reference lookup before filtering.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital AS is_hospital
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital 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.