Is Tribal Government
Boolean or coded flag indicating whether the vendor site is identified as a tribal government entity in the Other Transaction IDV record. A value such as 0 typically means the condition is not met, while nonzero or true-like values indicate that it is.
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 records where the vendor site is a tribal government
- Segment award populations for compliance or socioeconomic reporting
- Validate vendor composition and entity-type distributions
Common Mistakes
- Assuming 0 and null mean the same thing
- Using the field as a proxy for tribal ownership outside the vendor site classification context
Query Guidance
In SQL, test the actual stored values explicitly, for example WHERE isTribalGovernment = 1 or WHERE isTribalGovernment IN ('Y','1',true) depending on the extract. If the column is nullable or coded, include null handling and verify the dataset’s value mapping before aggregating or filtering.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS is_tribal_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.