Is Corporate Entity Tax Exempt
Boolean flag indicating whether the vendor site is identified as a corporate entity with tax-exempt status in the FPDS record. It captures the presence of that specific vendor business type attribute rather than the tax-exempt status itself as a standalone legal determination.
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 involving corporate tax-exempt vendor entities
- Segment vendor populations by business structure
- Support compliance, audit, or exception reporting
Common Mistakes
- Assuming the flag proves legal tax-exempt status outside FPDS
- Treating null the same as an explicit false without checking data completeness
Query Guidance
Use direct boolean filtering such as = 1 or = 'Y' depending on the source encoding, and confirm the actual stored values in the dataset before writing predicates. When aggregating, exclude nulls only if you intend to measure asserted cases, and join with related vendor business type fields if you need a fuller organizational profile.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt AS is_corporate_entity_tax_exempt
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt 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.