Is Tribally Owned Firm
Boolean or coded indicator showing whether the vendor is identified in FPDS as a tribally owned firm. It represents the presence of this socioeconomic attribute for the vendor site in the IDV record.
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 tribally owned vendors
- Segment socioeconomic spend by vendor type
- Support compliance and reporting on tribal ownership
Common Mistakes
- Assuming null, blank, and false are equivalent without checking source coding rules
- Using the flag as proof of certification status without validating the underlying FPDS source fields
Query Guidance
In SQL, compare against the dataset's true indicator value explicitly, for example where the field = 1 or = 'Y' after confirming the extract convention. Include null handling in filters and joins, and if analyzing across multiple procurement datasets, normalize the flag to a consistent boolean before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS is_tribally_owned_firm
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.