Type of Set Aside Source
Human-readable source label for the set-aside type recorded on the IDV competition element. It identifies how the set-aside was represented in FPDS for the award, typically as a coded or abbreviated value rather than a free-text explanation.
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
- Classify IDVs by set-aside category
- Compare competition outcomes across set-aside groups
- Filter awards with coded set-aside sourcing indicators
Common Mistakes
- Assuming the value is a full-text explanation instead of a code or label
- Using the field alone to infer legal authority or eligibility without confirming related competition fields
Query Guidance
Use this field in WHERE, GROUP BY, or CASE logic after validating the code set in your dataset. When possible, join or map it to a reference table or decode list, and avoid comparing against guessed text values unless you have confirmed the stored code semantics.
SQL Examples
Preview values
SELECT
content__IDV__competition__typeOfSetAsideSource AS type_of_set_aside_source
FROM fpds.data
WHERE content__IDV__competition__typeOfSetAsideSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__typeOfSetAsideSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__typeOfSetAsideSource 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.