Type of Set Aside
Indicates the set-aside type associated with the award’s competition record. In FPDS this may function as a coded flag or human-readable value identifying whether the procurement was reserved for a specific socioeconomic or statutory category, or marked as none.
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
- Identify awards competed under a set-aside program
- Calculate obligated dollars by set-aside type
- Exclude non-set-aside awards from small business analysis
Common Mistakes
- Assuming blank values mean the same as explicit NONE without checking source conventions
- Using the field alone as proof of small business eligibility or awardee status
Query Guidance
Use this field in WHERE clauses to filter awards by set-aside category, and group by it to summarize counts or obligations by procurement segment. If the database includes both code and description columns, join or coalesce them carefully and preserve explicit NONE versus NULL to distinguish no set-aside from missing data.
SQL Examples
Preview values
SELECT
content__award__competition__typeOfSetAside AS type_of_set_aside
FROM fpds.data
WHERE content__award__competition__typeOfSetAside IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__competition__typeOfSetAside AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__typeOfSetAside IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.