Is Veteran Owned
Boolean or coded indicator showing whether the vendor associated with the contract detail is identified as veteran-owned. The value reflects the vendor site socioeconomic status captured in the FPDS record, with 0 typically indicating false/no and 1 indicating true/yes, though analysts should confirm the observed code set in the source data.
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 to veteran-owned vendors
- Segment spending by socioeconomic status
- Support compliance and diversity dashboards
Common Mistakes
- Assuming the flag proves current certification without validation
- Treating NULL or missing values as equivalent to not veteran-owned
Query Guidance
Use this field in WHERE clauses or CASE expressions after confirming the actual stored representation. For example, filter for affirmative values only, and explicitly handle NULLs separately so unknown status is not mixed with non-veteran-owned records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned AS is_veteran_owned
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned 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.