Local Area Set Aside Description
Human-readable description paired with the coded Local Area Set Aside value in the IDV competition record. It identifies the narrative label or explanation used for the local area set-aside indicator rather than the coded flag 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
- Labeling local area set-aside records in reports
- Validating the meaning of the paired coded flag
- Summarizing geographic preference usage across IDVs
Common Mistakes
- Using the description field as if it were the actual set-aside indicator
- Assuming all values are free text rather than short coded labels
Query Guidance
Select this field alongside the paired Local Area Set Aside code when interpreting records. Filter on exact observed values only after confirming the source mapping, and use COALESCE or CASE logic if the description is blank or inconsistent across records.
SQL Examples
Preview values
SELECT
content__IDV__competition__localAreaSetAside__description AS local_area_set_aside_description
FROM fpds.data
WHERE content__IDV__competition__localAreaSetAside__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__localAreaSetAside__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.