Claimant Program Code
Code that identifies the claimant program associated with the product or service in the award record. It is a coded reference value, not a free-text description, and typically appears as an abbreviated program identifier such as "C9E."
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards by claimant program
- Group obligations or counts by program code
- Join to a reference table for program name or description
Common Mistakes
- Interpreting the code as a program name rather than an identifier
- Comparing codes across systems without validating the code set or lookup table
Query Guidance
Use exact matching for code-based filtering and aggregation, e.g. WHERE claimantProgramCode = 'C9E'. When analyzing at scale, group by the code and join to a code reference or description table if available; avoid wildcard matching unless you are intentionally examining code prefixes.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__claimantProgramCode AS claimant_program_code
FROM fpds.data
WHERE content__award__productOrServiceInformation__claimantProgramCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__claimantProgramCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__claimantProgramCode 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.