Is Subchapter S Corporation
Boolean flag indicating whether the vendor is a Subchapter S corporation in the vendor organization factors for an Other Transaction Award record. The value identifies the vendor's corporate tax/status classification as captured in FPDS, typically represented as a coded indicator such as 0/1 or false/true.
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 vendors classified as Subchapter S corporations
- Segment vendor populations by organizational tax status
- Analyze award patterns by entity type
Common Mistakes
- Assuming the field is a textual description instead of a coded boolean flag
- Filtering on 0/1 without confirming the dataset's actual true/false encoding
Query Guidance
Use explicit code handling in SQL, for example `WHERE isSubchapterSCorporation = 1` only after confirming that 1 represents true in your extract. If values are stored as character codes or nullable flags, normalize them with CASE logic and inspect distinct values before analysis.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation AS is_subchapter_s_corporation
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isSubchapterSCorporation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.