PSC Code
Code that identifies the product or service classification for an Other Transaction Award contract detail. It is a coded reference value, not a narrative description, and typically appears as an abbreviated identifier such as AJ13.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Classify awards by product or service group
- Join to PSC reference data for label-based reporting
- Filter or segment spend by code family
Common Mistakes
- Using the code as if it were a plain-language description
- Aggregating without checking for nulls, placeholders, or outdated codes
Query Guidance
Use this field in WHERE, GROUP BY, and JOIN clauses as a categorical key. For reporting, map it to a PSC reference table to display descriptions, and compare distinct values carefully because formatting or legacy codes may affect counts.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__PSCCode AS p_s_c_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__PSCCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__PSCCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__PSCCode 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.