Is Tribal Government
Boolean or coded flag indicating whether the vendor entity is a tribal government. It identifies vendor site records that represent an eligible tribal government status rather than a generic commercial or nonprofit entity.
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
- Measure contract volume and spend involving tribal governments
- Segment vendor population by business type for compliance reporting
Common Mistakes
- Assuming 0 always means missing rather than false
- Using the flag alone without checking related vendor business type fields
Query Guidance
Use it as a boolean filter in WHERE clauses, after verifying the actual coded values in your dataset. Example: WHERE isTribalGovernment = 1; if the field is stored as a string or nullable code, normalize values first and handle NULLs explicitly in CASE logic.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS is_tribal_government
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.