Local Area Set Aside
Boolean or coded indicator showing whether the IDV was restricted to a local-area set-aside. It flags procurement actions reserved for vendors located in a specified local geographic area rather than open competition.
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
- Filter IDVs awarded with local-area preferences
- Compare local set-aside use across agencies or time periods
- Support compliance or policy adoption analysis
Common Mistakes
- Interpreting the flag as proof of competition outcome rather than set-aside intent
- Assuming blank, null, or coded values all mean the same thing without checking source encoding
Query Guidance
Use this field in WHERE clauses to isolate local-area set-aside records, but first confirm the actual stored codes (for example, Y/N, true/false, or other enumerations). If the dataset includes a paired description or code translation, filter on the normalized meaning rather than the raw literal when possible.
SQL Examples
Preview values
SELECT
content__IDV__competition__localAreaSetAside AS local_area_set_aside
FROM fpds.data
WHERE content__IDV__competition__localAreaSetAside IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__competition__localAreaSetAside AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__localAreaSetAside 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.