Is1994 Land Grant College
Numeric indicator showing whether the vendor site is identified as a 1994 Land Grant College. In FPDS this is a site-level vendor attribute, typically used as a yes/no flag rather than a continuous measure. Expected values are usually coded, such as 1 for yes and 0 for no, so the observed value should be interpreted against the record's coding conventions.
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
- Identify awards to 1994 Land Grant Colleges
- Segment vendor analysis by educational entity type
- Validate vendor classification flags in FPDS extracts
Common Mistakes
- Assuming the field is descriptive text instead of a numeric flag
- Treating nulls as false without checking data quality or coding rules
Query Guidance
Use equality filters on the coded value, such as WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege = 1, and include explicit handling for NULL or nonstandard values if needed. For summaries, group by the field only after confirming its coding and distribution.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege AS is1994_land_grant_college
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS total_value
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege IS NOT NULL
Distribution overview
SELECT
min(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS min_value,
avg(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS avg_value,
max(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1994LandGrantCollege) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.