Is Tribal College
Boolean or coded flag indicating whether the vendor's educational entity is a tribal college at the vendor site level. It captures the yes/no status associated with the vendor's typeOfEducationalEntity classification in the Other Transaction IDV record.
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 involving tribal colleges
- Count or trend vendor participation by tribal college status
- Segment compliance or outreach analyses for tribal educational institutions
Common Mistakes
- Assuming 0 always means false without checking the observed coding scheme
- Using the field alone without confirming related educational entity fields or null handling
Query Guidance
In SQL, filter on the observed affirmative value for the dataset, for example WHERE isTribalCollege IN ('1','Y',1,TRUE) after validating the code set. Include explicit null handling and, when needed, join or filter with sibling educational entity fields to ensure the record represents a tribal college rather than another education type.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS is_tribal_college
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.