Is Veterinary Hospital
Boolean or coded indicator showing whether the vendor’s line of business is a veterinary hospital. It is a classification attribute on the vendor site record under the IDV vendor profile, and should be treated as a flag rather than a narrative description.
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 vendor records to veterinary hospital suppliers
- Segment vendor populations by specialty healthcare line of business
- Support compliance and market analysis for veterinary-related contracting
Common Mistakes
- Treating the flag as a text description instead of a boolean/coded indicator
- Assuming null, blank, or 0 always have the same meaning across all extracts
Query Guidance
Use in WHERE clauses to isolate records where the indicator denotes true, and normalize coded values before analysis. Example pattern: WHERE isVeterinaryHospital IN ('1', 'Y', TRUE) after confirming the dataset’s encoding; if the field is stored as numeric, compare against the true code and document how nulls are handled.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isVeterinaryHospital AS is_veterinary_hospital
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isVeterinaryHospital IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isVeterinaryHospital AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isVeterinaryHospital 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.