IDV Type of Set Aside
Human-readable label for the set-aside type associated with an IDV record in the competition data. It indicates how the requirement was designated for participation, such as a full and open case, a specific set-aside category, or another recorded IDV set-aside condition.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Count IDVs by set-aside category
- Compare restricted vs unrestricted procurement patterns
- Filter records for small business or other set-aside analyses
Common Mistakes
- Assuming NONE always means fully unrestricted without checking related competition fields
- Treating blanks or nulls as equivalent to a coded value
Query Guidance
Use this field in WHERE clauses for category filters and in GROUP BY for distribution analysis. Normalize values to a controlled list of observed labels, and join to code lookups or companion fields if your dataset provides them before combining with other competition measures.
SQL Examples
Preview values
SELECT
content__award__competition__idvTypeOfSetAside AS i_d_v_type_of_set_aside
FROM fpds.data
WHERE content__award__competition__idvTypeOfSetAside IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__idvTypeOfSetAside AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__idvTypeOfSetAside IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.