Is Corporate Entity Tax Exempt
Boolean or coded flag indicating whether the vendor's business type is a corporate entity that is tax exempt. It is stored within vendor site details and captures the FPDS-reported status for the organization.
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 to tax-exempt corporate vendors
- Segment vendor populations by tax status
- Support compliance and policy reporting on exempt entities
Common Mistakes
- Assuming the flag means the entire vendor is nonprofit rather than specifically corporate tax-exempt status
- Ignoring paired business type fields or observed code values when validating the record
Query Guidance
In SQL, filter on the flag value after confirming the dataset's coding convention (for example, 1/true for yes and 0/false for no). When possible, join or inspect related vendor business type fields to validate interpretation, and avoid comparing to text labels unless the source explicitly stores them.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt AS is_corporate_entity_tax_exempt
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isCorporateEntityTaxExempt AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.