Is Very Small Business
Boolean or coded indicator showing whether the vendor site is identified as a very small business in the FPDS socio-economic indicators. It is a site-level vendor attribute tied to the IDV record and reflects the recorded status at the time captured in FPDS.
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 IDVs to very small business vendors
- Calculate award or obligation share to very small businesses
- Segment vendor populations by socioeconomic status
Common Mistakes
- Assuming the flag is a current SAM entity size determination
- Confusing vendor-site status with contractor-wide status
Query Guidance
Use explicit value checks in SQL after confirming the observed coding, for example WHERE isVerySmallBusiness IN (1, '1', 'Y', 'true'). If the field is sparsely populated or inconsistently coded, coalesce only after validating the source values, and join to related socioeconomic fields when building small-business analyses.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness AS is_very_small_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVerySmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.