Evaluated Preference
Human-readable label for the evaluated preference recorded on the award competition record. It describes the preference status or condition associated with how the offer was evaluated, and may represent a coded value rendered as text.
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
- Classifying awards by preference status in competition reviews
- Identifying whether preference-related evaluation affected award selection
- Segmenting noncompetitive or special-case award records for analysis
Common Mistakes
- Assuming the value itself is the policy outcome rather than a recorded label
- Grouping without checking for alternate coded values or nulls
Query Guidance
Use this field in SELECT and GROUP BY clauses to summarize preference categories, and filter cautiously because value text may vary across records. When available, join or compare against companion coded fields and normalize case/spacing before aggregating.
SQL Examples
Preview values
SELECT
content__award__competition__evaluatedPreference AS evaluated_preference
FROM fpds.data
WHERE content__award__competition__evaluatedPreference IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__evaluatedPreference AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__evaluatedPreference 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.