Product or Service Code Description
Human-readable description paired with the Product or Service Code on the award record. It identifies the commodity or service category in plain language rather than the abbreviated PSC code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Market segmentation by industry or PSC
Common Usage
- Translate PSC codes into readable procurement categories
- Group awards by product or service category
- Validate coded PSC values against observed descriptions
Common Mistakes
- Treating the description as the primary key instead of the PSC code
- Assuming identical descriptions always indicate identical underlying codes
Query Guidance
Select this field with the paired Product or Service Code for readable output, but aggregate or filter on the code when building analysis tables. If you must search by text, use case-insensitive pattern matching on the description and compare results against the code to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__productOrServiceCode__description AS product_or_service_code_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__productOrServiceCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__productOrServiceCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__productOrServiceCode__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.