Is1994 Land Grant College
Numeric indicator showing whether the vendor site is identified as a 1994 Land Grant College. In FPDS this is a vendor-site attribute tied to the educational-entity classification for the award record, typically represented as a coded yes/no value such as 1 or 0.
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 1994 Land Grant College vendors
- Group procurement activity by educational institution type
- Support reporting on awards to Tribal-serving colleges
Common Mistakes
- Assuming 0 means the value is missing rather than explicitly negative
- Using the field alone without checking related educational-entity flags
Query Guidance
Use direct equality tests on the coded value, for example WHERE is1994LandGrantCollege = 1 for affirmative records, and confirm whether 0, NULL, or other codes represent non-applicable or unknown cases in your extract. When joining or aggregating, combine this field with the broader vendor-site education classification to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege AS is1994_land_grant_college
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS min_value,
avg(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS avg_value,
max(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.