Is Tribally Owned Firm
Boolean or coded indicator showing whether the vendor is identified as a tribally owned firm in the award record. It is a socioeconomic status flag attached to the vendor site details for an Other Transaction Award.
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 for tribally owned vendors
- Calculate spend or award counts for tribal-owned businesses
- Compare tribal participation across agencies, periods, or award types
Common Mistakes
- Assuming 0 always means false without confirming the system's code mapping
- Using this field as definitive legal proof of tribal ownership rather than reported status
Query Guidance
Use this field in WHERE clauses to isolate tribally owned vendors after confirming the code values in your dataset, e.g. `WHERE isTriballyOwnedFirm = 1` or the equivalent true value. When aggregating, pair it with obligation amount, action date, and award identifiers; if the field is sparsely populated, account for NULLs separately from explicit false values.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS is_tribally_owned_firm
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm 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.