Is Tribally Owned Firm
Boolean or coded indicator showing whether the vendor site is identified as a tribally owned firm in the Other Transaction IDV vendor socio-economic indicators section. A value such as 0 typically means the condition is not met; other observed values should be checked against the dataset's code conventions.
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
- Identify awards or vendors associated with tribally owned firms
- Calculate share of obligations to tribally owned firms
- Filter supplier diversity or small business dashboards
Common Mistakes
- Assuming all non-1 values mean false without validating the code set
- Using the flag as proof of certification status without checking source documentation
Query Guidance
Use this field in WHERE clauses or CASE expressions to isolate tribally owned firms, but first confirm whether the dataset stores literal booleans, numeric flags, or coded strings. Example pattern: CASE WHEN isTriballyOwnedFirm IN (1, '1', 'Y', 'true') THEN 1 ELSE 0 END; then aggregate at the contract, vendor, or action level as needed.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS is_tribally_owned_firm
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.