Is Very Small Business
Boolean or coded indicator showing whether the vendor is classified as a very small business for the associated vendor site. A value such as 1/true typically means the record is flagged as very small business, while 0/false means it is not; analysts should verify the actual stored codes in the dataset.
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
- Count awards or vendors flagged as very small business
- Measure spend or obligations associated with very small business vendors
- Segment procurement activity by socioeconomic status
Common Mistakes
- Assuming 0 always means verified non-small-business instead of simply not flagged
- Using this field as a substitute for vendor size or NAICS-based eligibility
Query Guidance
Filter on the stored true/false or code value after confirming the dataset’s encoding, and coalesce only when you intentionally want missing values treated as false. Example pattern: WHERE isVerySmallBusiness = 1, with a separate check for NULLs when assessing data completeness.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness AS is_very_small_business
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness 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.