Is Tribal Government
Boolean or coded flag indicating whether the vendor entity is a tribal government. It identifies the vendor site as belonging to a tribal government within the Other Transaction Award contract detail structure.
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 government vendors
- Segment spend by vendor government type
- Support compliance and socio-economic reporting
Common Mistakes
- Assuming a 0 value means the vendor is not tribal when it may also represent missing or unreported data
- Using this flag alone to classify the full legal entity without checking related vendor business type fields
Query Guidance
Use this field in WHERE clauses to select tribal government vendors, but confirm the stored representation first; for example, test whether true values are represented as 1, 'Y', or another code. When aggregating, group by this flag and pair it with null checks to separate explicit false values from missing records.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS is_tribal_government
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment 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.