Claimant Program Code Description
Human-readable description for the paired Claimant Program Code on an IDV record. It labels the coded value with a text description such as SUBSISTENCE, allowing the program code to be understood without referencing the source code list.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Translate coded claimant program values into readable report labels
- Group awards by claimant program for portfolio analysis
- Validate that a code-description pair is internally consistent
Common Mistakes
- Using the description as a unique identifier instead of the underlying code
- Assuming the text is standardized across all records or reporting periods
Query Guidance
Select this field alongside the claimant program code for display and validation. Use the code for joins and distinct counts; use the description for presentation or grouping only after confirming it matches the expected code set.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__claimantProgramCode__description AS claimant_program_code_description
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__claimantProgramCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__claimantProgramCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.