Is Corporate Entity Not Tax Exempt
Boolean indicator showing whether the vendor site is classified as a corporate entity that is not tax-exempt. It flags a specific business-organization condition within the vendor business type hierarchy for the transaction 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 vendor records by corporate, non-tax-exempt status
- Segment award population for compliance or taxonomy analysis
- Cross-tabulate vendor organization type against award outcomes
Common Mistakes
- Assuming the flag means the vendor is currently taxable or tax-compliant
- Using it without checking for nulls or coded non-boolean values
Query Guidance
In SQL, test for the affirmative value used in your dataset (for example, = 1 or = 'Y') and exclude or separately handle null/unknown values. If the column is stored as a code flag, inspect the source values or any companion description field before hard-coding logic.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt AS is_corporate_entity_not_tax_exempt
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt 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.