Is Small Business
Boolean or coded indicator showing whether the vendor associated with the award is classified as a small business. It is a vendor socioeconomic flag at the vendor site level, not a monetary or performance measure.
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
- Identify awards to small business vendors
- Measure small business share of obligations or counts
- Support compliance and socioeconomic reporting
Common Mistakes
- Using the field as a proxy for vendor revenue or firm size beyond the binary classification
- Assuming all extracts use the same code mapping without checking observed values
Query Guidance
Filter explicitly on the coded value that represents small business in your extract, then verify against sample records before using in aggregates. In SQL, group by this flag for counts or sums, and join to vendor identifiers if you need vendor-level analysis rather than award-line analysis.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isSmallBusiness AS is_small_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isSmallBusiness 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.