Is Tribal Government

Boolean or coded flag indicating whether the vendor site is identified as a tribal government entity in the Other Transaction IDV record. A value such as 0 typically means the condition is not met, while nonzero or true-like values indicate that it is.

Family: Other Transaction 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__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment
Title
Is Tribal Government
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/isTribalGovernment
Description
Boolean or coded flag indicating whether the vendor site is identified as a tribal government entity in the Other Transaction IDV record. A value such as 0 typically means the condition is not met, while nonzero or true-like values indicate that it is.
Business Meaning
This field helps analysts segment awards and vendor participation involving tribal governments, which can be relevant for policy compliance, socioeconomic analysis, and reporting on government-to-government relationships. It supports identification of awards that may have distinct legal, administrative, or oversight considerations.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/isTribalGovernment
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/isTribalGovernment' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment'.

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 records where the vendor site is a tribal government
  • Segment award populations for compliance or socioeconomic reporting
  • Validate vendor composition and entity-type distributions

Common Mistakes

  • Assuming 0 and null mean the same thing
  • Using the field as a proxy for tribal ownership outside the vendor site classification context

Query Guidance

In SQL, test the actual stored values explicitly, for example WHERE isTribalGovernment = 1 or WHERE isTribalGovernment IN ('Y','1',true) depending on the extract. If the column is nullable or coded, include null handling and verify the dataset’s value mapping before aggregating or filtering.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS is_tribal_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__isTribalGovernment AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.