Is Subchapter S Corporation
Boolean or coded flag indicating whether the vendor organization associated with the IDV is a Subchapter S corporation. It captures a specific organizational tax status at the vendor site level, not a contract action outcome or award type. A value of 0 generally indicates no, while other observed values should be validated against the FPDS record and code conventions.
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
- Segment vendor population by tax/status indicator
- Filter IDVs for vendor profile analysis
- Cross-tab with size, socioeconomic, or ownership attributes
Common Mistakes
- Interpreting the flag as a contract-level condition instead of a vendor attribute
- Assuming every nonzero or non-null value has the same meaning without checking the code set
Query Guidance
Use explicit boolean logic based on the recorded coding scheme, for example WHERE field = 1 for affirmative records or WHERE field = 0 for negative records if those are the observed conventions. If the dataset includes text or paired description fields, join or inspect them to confirm meaning before aggregating. For reporting, group nulls separately from true/false values to avoid collapsing unknown with negative.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation AS is_subchapter_s_corporation
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation 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.