Claimant Program Code Description
Human-readable description for the claimant program code recorded for the product or service line item. It is the text label paired with the coded 'Claimant Program Code' value, used to identify the program or procurement category associated with the award record.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decoding claimant program categories in line-item analysis
- Grouping awards by procurement program or product/service classification
- Validating code-to-description consistency in FPDS extracts
Common Mistakes
- Using the description as a unique identifier instead of the paired code
- Assuming the text value is standardized across all records or agencies
Query Guidance
Select and group this field only when you need a readable label for reporting; for joins, distinct counts, and logic filters, use the paired claimant program code. In SQL, keep the code and description together, and check for nulls or mismatches between them when validating data quality.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__claimantProgramCode__description AS claimant_program_code_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__claimantProgramCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__claimantProgramCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__claimantProgramCode__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.