Is Sole Propreitorship
Boolean/code flag indicating whether the vendor's business type is a sole proprietorship. In FPDS, it is part of the vendor site business-type attributes and records the presence of that ownership form for the vendor associated with the transaction.
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 sole proprietorship vendors
- Compare award distribution by vendor ownership type
- Support vendor profile and compliance segmentation
Common Mistakes
- Assuming a 0 value means the vendor is not a sole proprietorship without checking whether the field is null, false, or a coded 'no'
- Using this field as a standalone proxy for small business status
Query Guidance
Use it in WHERE clauses as a boolean/coded filter after confirming the observed values in your extract. For example, test for the vendor-owned indicator value that corresponds to true/yes in your data, and validate null handling before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSolePropreitorship AS is_sole_propreitorship
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSolePropreitorship IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSolePropreitorship AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSolePropreitorship 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.