PSC Code Description
Human-readable description associated with the procurement product or service code in an Other Transaction Award record. It is the descriptive label for the coded PSC value, translating the abbreviated code into a plain-language category such as a research-and-development service type.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display the meaning of a PSC code in reports and dashboards
- Review and validate product or service category assignments
- Aggregate awards by procurement category for spend analysis
Common Mistakes
- Treating the description as a stable identifier instead of the code
- Grouping solely on the text description and ignoring code-level distinctions
Query Guidance
Select this field with the paired PSC code for reporting or QA, but use the code for joins, filters, and aggregation keys. When deduplicating or summarizing, normalize on the code and treat the description as a display attribute that may vary in capitalization or wording.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__PSCCode__description AS p_s_c_code_description
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__PSCCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__PSCCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__PSCCode__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.