Is Tribal College
Boolean or coded flag indicating whether the vendor site is identified as a tribal college within the educational-entity classification. It is a site-level attribute tied to the vendor record in the award data, not a broader organizational status. When populated, it supports identification of vendors associated with tribal colleges.
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 to tribal colleges
- Count or sum obligations to tribal-college vendors
- Segment educational vendors by institution type
Common Mistakes
- Assuming the flag identifies the parent vendor rather than the specific site
- Treating null or blank values as equivalent to false without checking data completeness
Query Guidance
Use the field as a boolean filter or grouped dimension after normalizing coded values, for example WHERE isTribalCollege IN ('1','Y',1,true). For analysis, combine it with award amounts and other vendor-site education flags to avoid misclassification and to separate true tribal-college records from missing or unreported values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS is_tribal_college
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege 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.