Product or Service Code
Coded value that classifies the product or service associated with the IDV award. It is an FPDS reference code, not a narrative description, and usually represents a standard procurement category such as the example 7110.
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
- Spend rollups by product/service category
- Filtering awards for a specific supply or service group
- Trend analysis of buying patterns across fiscal years
Common Mistakes
- Assuming the code is a plain-text description
- Grouping without normalizing to the official code set
Query Guidance
Use this field as a grouping and join key for category analysis, for example in WHERE, GROUP BY, and JOIN clauses. Compare against exact code values or a maintained lookup table; do not use partial-text matching unless the source explicitly stores descriptive text.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__productOrServiceCode AS product_or_service_code
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__productOrServiceCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__productOrServiceCode 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.