Is1890 Land Grant College
Boolean flag indicating whether the vendor site is identified as an 1890 Land Grant College. In FPDS, this field records a specific educational-entity status for the vendor location associated with the transaction. The example value 0 typically means the condition is not met.
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 associated with 1890 Land Grant Colleges
- Segment vendor population by educational institution type
- Support compliance or socioeconomic reporting
Common Mistakes
- Assuming all non-null values mean yes
- Using the flag without checking whether the vendor site record is current or complete
Query Guidance
Use explicit comparisons against the affirmative code in SQL, for example WHERE is1890LandGrantCollege = 1. If the field is stored as text or mixed codes, normalize it first and inspect the source data dictionary or distinct values before filtering or aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege AS is1890_land_grant_college
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege 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.