Type of Set Aside Source Description
Human-readable description for the coded field that identifies the source of the set-aside designation on an award. It gives the text label that corresponds to the underlying Type of Set Aside Source value, 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 a readable label for the set-aside source in reports
- Validate or interpret the coded Type of Set Aside Source value
- Group awards by set-aside source description in analysis
Common Mistakes
- Using the description field as if it were the authoritative code
- Filtering on the description without checking the paired source value
Query Guidance
Use this field for presentation or to interpret the paired coded field. For analysis, join or select it alongside the source code field, and filter by the code when possible to avoid issues from spelling differences or textual variants.
SQL Examples
Preview values
SELECT
content__award__competition__typeOfSetAsideSource__description AS type_of_set_aside_source_description
FROM fpds.data
WHERE content__award__competition__typeOfSetAsideSource__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__typeOfSetAsideSource__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__typeOfSetAsideSource__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.