Local Area Set Aside
Human-readable local area set-aside status recorded for the award competition record. It indicates whether the procurement was designated for local-area sourcing or was otherwise marked in this competition attribute, rather than describing the award outcome 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
- Flag awards with local-area set-aside restrictions
- Segment competition analyses by geographic sourcing constraint
- Review coded values such as N alongside related competition fields
Common Mistakes
- Interpreting the field as the overall competition type
- Assuming a single code value has the same meaning across all records without checking the data dictionary or observed values
Query Guidance
Use this field as a filter or grouping attribute in award-level competition analysis, typically after normalizing coded values and excluding nulls. In SQL, compare against observed codes such as 'N' rather than free-text labels, and join or pair it with other competition fields when classifying set-aside behavior.
SQL Examples
Preview values
SELECT
content__award__competition__localAreaSetAside AS local_area_set_aside
FROM fpds.data
WHERE content__award__competition__localAreaSetAside IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__localAreaSetAside AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__localAreaSetAside 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.