Local Area Set Aside Description
Human-readable description for the Local Area Set Aside code recorded on an award. It is the text label paired with the coded local area set-aside field and is used to show the interpreted value rather than the underlying code. Example values may appear abbreviated, such as "NO".
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 the interpreted label for local area set-aside status in reports
- Validate the coded localAreaSetAside value against its description
- Filter or group awards by local area set-aside status after confirming the paired code
Common Mistakes
- Using the description field alone as if it were the authoritative code
- Assuming abbreviated values always mean the same thing without checking the paired field
Query Guidance
Select this field alongside award/competition/localAreaSetAside and use it as a display or validation column. In SQL, join or group on the coded field when possible, and use the description for labeling results; if values are inconsistent or abbreviated, inspect distinct pairs of code and description before applying logic.
SQL Examples
Preview values
SELECT
content__award__competition__localAreaSetAside__description AS local_area_set_aside_description
FROM fpds.data
WHERE content__award__competition__localAreaSetAside__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__localAreaSetAside__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__localAreaSetAside__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.