Type of Set Aside Description
Human-readable description of the IDV set-aside type recorded in the competition section. It is the descriptive label paired with the coded "Type of Set Aside" field, such as showing the plain-language meaning of a value like "NO SET ASIDE USED."
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
- Decode the meaning of the paired Type of Set Aside code
- Classify awards by set-aside status for reporting
- Validate source-system descriptions against coded procurement data
Common Mistakes
- Using the description field as if it were the authoritative code
- Grouping on raw text without normalizing variants or checking the paired code
Query Guidance
Use this field mainly for display, validation, or text-based fallback when the coded set-aside field is unavailable. In SQL, join or compare it with the paired code field where possible, and aggregate on normalized code values rather than the description text.
SQL Examples
Preview values
SELECT
content__IDV__competition__typeOfSetAside__description AS type_of_set_aside_description
FROM fpds.data
WHERE content__IDV__competition__typeOfSetAside__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__typeOfSetAside__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__typeOfSetAside__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.