Is Corporate Entity Not Tax Exempt
Boolean flag indicating whether the vendor’s business type is a corporate entity that is not tax exempt. In FPDS, this is a vendor site detail nested under business or organization type and is typically stored as a coded yes/no value.
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 populations for vendor compliance analysis
- Cross-tabulate vendor type against award volume or obligation
Common Mistakes
- Assuming 0 always means false without checking the dataset’s code convention
- Using this field as a substitute for legal tax status verification
Query Guidance
Use the field in WHERE clauses only after confirming its stored encoding, for example `= 1`, `= 'Y'`, or an equivalent true value. When joining or aggregating, group on the normalized boolean interpretation and exclude nulls explicitly if you need a complete yes/no population.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt AS is_corporate_entity_not_tax_exempt
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityNotTaxExempt AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.