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.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm
Title
Is Tribally Owned Firm
FPDS Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isTriballyOwnedFirm
Description
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.
Business Meaning
This field helps analysts identify awards associated with tribally owned businesses, which is important for socioeconomic reporting, set-aside analysis, and assessment of procurement activity directed to tribal enterprises. It can support compliance reviews and spend segmentation across vendor types.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isTriballyOwnedFirm
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isTriballyOwnedFirm' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isTriballyOwnedFirm'.

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.