Research Description
Human-readable label for the coded Research competition value in the award record. It describes the research competition category associated with the procurement action, rather than storing the underlying code 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 research competition categories in reporting
- Grouping awards by research program or phase
- Translating coded Research values into analyst-readable text
Common Mistakes
- Using the description field as a stable code key for joins or filters
- Assuming identical wording across records implies identical underlying codes
Query Guidance
Select this field alongside the paired Research code when reviewing records. In SQL, filter on the code for consistency and use the description for display, validation, or mapping tables; normalize text only if you need deduplication across variant labels.
SQL Examples
Preview values
SELECT
content__award__competition__research__description AS research_description
FROM fpds.data
WHERE content__award__competition__research__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__research__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__research__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.