Is1994 Land Grant College
Boolean flag indicating whether the vendor site is classified as a 1994 Land-Grant College within the IDV vendor site details. A value such as 1 or true means the record is marked as meeting that educational entity condition; 0 or false means it is not.
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 associated with 1994 Land-Grant Colleges
- Segment vendor population for education- and tribal-serving institution analysis
- Measure obligation volume to specific institution types
Common Mistakes
- Assuming the field identifies all land-grant colleges rather than only the 1994 subset
- Treating null, 0, and false as interchangeable without verifying extract conventions
Query Guidance
Use it as a filter flag in WHERE clauses, e.g. `WHERE is1994LandGrantCollege = 1` or the equivalent true value in your dataset. If your source stores mixed encodings, normalize the field first and join to the vendor/site record only when you need institution-level analysis.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege AS is1994_land_grant_college
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege 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.