IDV Type of Set Aside Description
Human-readable description for the coded field that identifies the IDV type of set-aside. It stores the text label associated with the underlying competition code rather than the code itself.
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
- Display the human-readable set-aside label in reports
- Validate or interpret the paired coded set-aside field
- Group IDVs by set-aside category for competition analysis
Common Mistakes
- Using the description field as the primary analytic key instead of the code
- Assuming the text is standardized without checking observed values and paired codes
Query Guidance
Join or select this field alongside the paired IDV Type of Set Aside code, and group or filter on the code for analysis while using the description for presentation. Normalize values if you need consistent labels, and inspect distinct descriptions for spelling or formatting variation before relying on text-based grouping.
SQL Examples
Preview values
SELECT
content__award__competition__idvTypeOfSetAside__description AS i_d_v_type_of_set_aside_description
FROM fpds.data
WHERE content__award__competition__idvTypeOfSetAside__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__idvTypeOfSetAside__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__idvTypeOfSetAside__description 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.