Is1890 Land Grant College
Numeric indicator showing whether the vendor site is identified as an 1890 Land Grant College. It is a coded yes/no attribute within Vendor Site Details rather than a free-text description. A value of 1 typically indicates true and 0 indicates false; inspect observed values if the feed includes other codes or nulls.
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
- Flag awards to 1890 Land Grant College vendors
- Group obligations by educational institution status
- Support compliance or socioeconomic reporting checks
Common Mistakes
- Assuming 0 means the vendor is definitively not an 1890 Land Grant College when the record may actually be missing or incomplete
- Using the field as a text label instead of a numeric indicator
Query Guidance
Filter with `WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege = 1` for affirmative cases. Use `COUNT(*)`, `SUM(CASE WHEN ... = 1 THEN 1 ELSE 0 END)`, or `GROUP BY` to measure frequency, and include `IS NULL` checks when distinguishing unknown from false.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege AS is1890_land_grant_college
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS total_value
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege IS NOT NULL
Distribution overview
SELECT
min(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS min_value,
avg(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS avg_value,
max(content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__is1890LandGrantCollege) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.