Is1862 Land Grant College
Numeric indicator showing whether the vendor’s site is associated with an 1862 Land Grant College. It captures a specific education-related classification within Vendor Site Details and is typically stored as a coded yes/no value rather than free text.
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 associated with 1862 Land Grant Colleges
- Group vendors by higher-education institution subtype
- Support segmentation of education-related procurement and OT awards
Common Mistakes
- Assuming 0 always means missing rather than a valid coded response
- Using the field as a text label instead of a numeric flag
Query Guidance
Use the field as a boolean-style filter after confirming coding conventions in the source data, for example `WHERE is1862LandGrantCollege = 1` for affirmative records. If the dataset uses multiple coded states, join or inspect adjacent educational-entity fields and avoid comparing to descriptive text.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege AS is1862_land_grant_college
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege) AS min_value,
avg(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege) AS avg_value,
max(content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1862LandGrantCollege 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.