Is Veteran Owned
Boolean or coded flag indicating whether the vendor associated with the IDV is reported as veteran-owned in the vendor socio-economic indicators section. A value such as 0 typically means the record does not indicate veteran-owned status, while other observed values should be checked against the source system’s code set.
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 awarded to veteran-owned vendors
- Count or trend veteran-owned participation by agency, vendor, or time period
- Segment socioeconomic analyses across vendor ownership categories
Common Mistakes
- Assuming a 0 value always means false without confirming the source code definition
- Using this field as award-level socioeconomic status instead of vendor-site status
Query Guidance
Use this field in WHERE clauses only after confirming its coding conventions, for example `WHERE isVeteranOwned = 1` or `WHERE isVeteranOwned IN ('Y','Yes','1')` depending on observed values. When aggregating, de-duplicate at the vendor or IDV level as needed because the indicator may repeat across site records.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned AS is_veteran_owned
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isVeteranOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.