Is Veterinary College
Boolean or coded flag indicating whether the vendor site is a veterinary college. It identifies records where the entity associated with the vendor site is classified as a veterinary school or college under the type-of-educational-entity hierarchy.
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 veterinary college vendors
- Segment higher-education recipients by institution type
- Support compliance or policy analysis for educational entities
Common Mistakes
- Using the flag as proof that the vendor is an educational institution in general
- Assuming 0, false, or null all mean the same thing without checking source coding
Query Guidance
Use this field in WHERE clauses to isolate veterinary college records, but first confirm whether the dataset stores it as a boolean, numeric code, or text flag. When joining or aggregating, normalize values consistently and preserve nulls separately from explicit false values if the source distinguishes them.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege AS is_veterinary_college
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege 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.