Is1890 Land Grant College
Numeric indicator showing whether the vendor site is an 1890 Land Grant College. In FPDS this is a site-level educational entity attribute stored under Vendor Site Details, with 0 typically indicating no and a positive value indicating yes or another coded representation depending on the extract.
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 1890 Land Grant Colleges
- segment vendor populations by educational entity type
- support compliance and institutional participation reporting
Common Mistakes
- assuming 0 always means false without checking the data extract conventions
- using the field as a vendor-wide attribute when it is stored at the site level
Query Guidance
Filter on the coded value set observed in your dataset, for example WHERE is1890LandGrantCollege = 1 for affirmative records if the extract uses 1/0 coding. If the source includes a companion description field or nonstandard codes, coalesce or map values explicitly before grouping or counting.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege AS is1890_land_grant_college
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS min_value,
avg(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS avg_value,
max(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege 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.