Is Veterinary College
Boolean or coded indicator showing whether the vendor site is identified as a veterinary college. It is a specific subtype within the vendor's educational-entity classification in the award record.
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 colleges
- Segment educational vendors by institution type
- Support compliance or eligibility checks for specialized procurement categories
Common Mistakes
- Assuming a missing value means the vendor is not a veterinary college
- Using the flag without checking the broader educational-entity classification
Query Guidance
Use this field as a boolean filter or coded equality test, for example `WHERE is_veterinary_college = 1` or the dataset-specific equivalent. If the field stores coded text, first verify the actual observed values and include null handling explicitly when identifying non-matches.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege AS is_veterinary_college
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isVeterinaryCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.