Is Tribal College
Boolean or coded flag indicating whether the vendor site is identified as a tribal college within the typeOfEducationalEntity grouping. It records the presence of that specific educational-entity attribute on the vendor site 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 vendor records for tribal college participation
- Segment awards by educational-entity subtype
- Support diversity and institutional reporting
Common Mistakes
- Assuming 0 always means explicitly no rather than unknown or not captured
- Using the field without checking related typeOfEducationalEntity indicators
Query Guidance
In SQL, filter on the stored true value used by the extract and handle nulls separately, for example with WHERE field = 1 or WHERE field IN ('Y','1','true') depending on encoding. Include companion fields from typeOfEducationalEntity when validating classification, and do not treat null as equivalent to false unless the business rule explicitly defines it that way.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS is_tribal_college
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isTribalCollege AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.