Is Service Related Disabled Veteran Owned Business
Boolean or coded flag indicating whether the vendor is identified as a service-disabled veteran-owned business (SDVOSB) on the award record. It is a vendor socio-economic indicator captured under vendor site details for the Other Transaction Award contract detail.
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 SDVOSB vendors
- Calculate obligation or count shares by veteran-owned status
- Compare award patterns across socioeconomic categories
Common Mistakes
- Assuming 0 means the vendor is not certified in all external systems
- Treating NULL as the same as false or 0
Query Guidance
Use explicit logic for coded values, for example `WHERE isServiceRelatedDisabledVeteranOwnedBusiness IN (1, '1', 'Y', 'TRUE')` after validating the actual data domain. If you need a clean indicator, normalize the field with CASE expressions and preserve NULL as unknown rather than false.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness AS is_service_related_disabled_veteran_owned_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness 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.