Is1862 Land Grant College
Boolean or coded flag indicating whether the vendor’s site is an 1862 Land Grant College. It is a vendor education-status indicator stored under vendor site details and should be treated as a categorical compliance/classification field, not a measure of performance or award value.
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
- Filtering awards tied to 1862 Land Grant Colleges
- Segmenting vendor populations by educational institution type
- Supporting compliance, oversight, or research-sponsor analysis
Common Mistakes
- Treating the field as vendor performance or eligibility instead of classification
- Assuming all datasets use the same coding scheme for true/false or yes/no values
Query Guidance
Use this field as a filter on the affirmative code for 1862 Land Grant College status, and validate the exact stored values before writing predicates. If the record includes a paired description field or multiple education-type flags, check those alongside this field to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege AS is1862_land_grant_college
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.