Is Service Related Disabled Veteran Owned Business
Boolean or coded flag indicating whether the vendor is identified as a service-disabled veteran-owned business in the FPDS record. It is stored under vendor socio-economic indicators for the IDV vendor site, and the observed value may be a binary indicator or a coded representation depending on the source extract.
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 or vendors to service-disabled veteran-owned businesses
- Calculate socioeconomic participation rates and spend shares
- Segment IDVs by veteran-owned business status for compliance reporting
Common Mistakes
- Assuming 0 always means false without confirming the dataset's code set
- Using the field as a spend measure instead of a vendor classification flag
Query Guidance
Use this field in WHERE clauses only after confirming the affirmative code in your extract. For example, filter on the value that represents true/yes and join or aggregate at the vendor site level; handle nulls and nonstandard codes explicitly rather than relying on implicit boolean casting.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness AS is_service_related_disabled_veteran_owned_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isServiceRelatedDisabledVeteranOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.