Evaluated Preference Description
Human-readable description for the paired coded value in the Evaluated Preference field. It names the preference status or category applied to the IDV competition record, such as "NO PREFERENCE USED".
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
- Decoding preference status in IDV competition records
- Grouping IDVs by preference application for reporting
- Validating coded values against human-readable labels
Common Mistakes
- Using the description as a filter when the underlying coded field is the true join or grouping key
- Assuming the text is standardized across all records without checking for source variations
Query Guidance
Use this field for display, validation, and descriptive grouping. In SQL, select it alongside the paired Evaluated Preference code field, and group or join on the code when consistency is required; use the description for readable output or to inspect distinct observed values.
SQL Examples
Preview values
SELECT
content__IDV__competition__evaluatedPreference__description AS evaluated_preference_description
FROM fpds.data
WHERE content__IDV__competition__evaluatedPreference__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__evaluatedPreference__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__evaluatedPreference__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.