Product or Service Type
Human-readable label for the product or service code classification recorded in the award. It indicates whether the obligation is associated with a product, a service, or another coded category used in FPDS reporting.
FPDS Compare
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
- Classify awards as service versus product obligations
- Filter records by product or service category
- Validate coding consistency against related FPDS code fields
Common Mistakes
- Using the label as if it were the authoritative code
- Grouping on this field without checking for alternate spellings or legacy labels
Query Guidance
Use this field in WHERE clauses or GROUP BY only after confirming the underlying coded value set. For durable analysis, join or compare it with the associated code field, and standardize labels with CASE logic when the same concept appears under multiple text variants.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__productOrServiceCode__productOrServiceType AS product_or_service_type
FROM fpds.data
WHERE content__award__productOrServiceInformation__productOrServiceCode__productOrServiceType IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__productOrServiceCode__productOrServiceType AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__productOrServiceCode__productOrServiceType 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.