Research Description
Human-readable description of the research-related competition value recorded for an IDV action. It is the text label paired with the underlying FPDS Research field, not the 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
- Translating coded competition values into readable labels
- Reviewing research procurement activity for reporting
- Validating whether a record reflects a specific research-related competition type
Common Mistakes
- Using the description as if it were the canonical code
- Grouping records only by text without checking the paired Research value
Query Guidance
Select this field for display or labeling, but use the paired coded Research field for joins, filters, and aggregations when possible. In SQL, normalize on the code field and treat this column as a descriptive attribute; if you must group by it, expect minor text variation across records.
SQL Examples
Preview values
SELECT
content__IDV__competition__research__description AS research_description
FROM fpds.data
WHERE content__IDV__competition__research__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__research__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.