Is Tribal Government
Boolean or coded indicator showing whether the vendor entity is a tribal government. It captures the vendor site's business type classification in the IDV record, not a contract action status.
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 or vendors associated with tribal governments
- Segment socioeconomic or jurisdiction-based vendor analyses
- Support compliance and reporting queries for tribal entity participation
Common Mistakes
- Confusing this vendor classification with Indian/Native ownership or individual tribal affiliation
- Using the field as a measure of award eligibility or contract set-aside status
Query Guidance
Use the field as a filter or grouping flag in SQL, but first confirm the actual coded values in your dataset (for example, 1/0, Y/N, or TRUE/FALSE). When aggregating, exclude nulls explicitly if you need only classified records, and join to descriptive reference fields if available to validate the code meaning.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS is_tribal_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.