Is Hospital
Boolean or coded flag indicating whether the vendor site is identified as a hospital in the IDV vendor line-of-business details. In this path, the field marks the vendor classification rather than describing the contract action itself.
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 IDV vendors classified as hospitals
- Segment healthcare-related procurement by vendor type
- Support compliance or market-analysis reporting
Common Mistakes
- Interpreting the flag as contract performance or facility ownership
- Assuming coding is standardized without checking the extract values
Query Guidance
Use this field in WHERE clauses to isolate hospital vendors, but first verify the actual coding scheme in your extract. Example pattern: WHERE isHospital IN (1, '1', 'Y', 'true') after confirming observed values; join to vendor or IDV tables only when you need award-level context.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital AS is_hospital
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isHospital AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.