Is1862 Land Grant College
Boolean or coded flag indicating whether the vendor’s site is identified as an 1862 Land Grant College in the IDV vendor site details. The field records the presence of that specific educational-entity classification rather than a general education status.
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 IDVs associated with 1862 Land Grant Colleges
- Segment vendor universe by institution type
- Support compliance or diversity-style reporting on educational entities
Common Mistakes
- Assuming a 0 value means the vendor is not a college rather than simply not flagged as 1862 land grant
- Using the flag as a proxy for overall vendor type or eligibility without checking related education fields
Query Guidance
In SQL, filter explicitly for the positive coded value used in your extract, such as = 1 or = 'Y', and confirm the dataset’s code set before production use. When available, join or inspect related type-of-educational-entity fields to distinguish this flag from other institutional classifications.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege AS is1862_land_grant_college
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege 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.