Product or Service Code Description
Human-readable label for the paired Product or Service Code. It provides the descriptive text that explains the coded procurement classification stored in the related code field.
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
- Labeling PSC-based reports and dashboards
- Grouping obligations by product or service category
- Validating coded PSC values against their descriptions
Common Mistakes
- Treating the description as a unique identifier instead of the underlying code
- Assuming free-text descriptions are standardized across all records and time periods
Query Guidance
Join or select this field with the paired Product or Service Code when reporting classifications. In SQL, use it for display labels, filtering on known descriptions, and quality checks, but rely on the code field for distinct counts and categorical grouping when exact classification control is required.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__productOrServiceCode__description AS product_or_service_code_description
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__productOrServiceCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__productOrServiceCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.