Claimant Program Code
Code identifying the claimant program associated with the IDV line of business or product/service classification. It is an internal coded value, not a free-text description, and typically appears as an abbreviated program key 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
- Program-level filtering of IDV awards
- Grouping obligations by claimant organization or mission area
- Validating classification consistency across procurement records
Common Mistakes
- Interpreting the code as a human-readable program name
- Filtering on unvalidated codes without checking the allowed value set
Query Guidance
Use this field as a categorical code in WHERE, GROUP BY, or JOIN clauses, ideally against a maintained lookup of claimant program codes and descriptions. In SQL, compare on exact code values and normalize case/whitespace if source quality is inconsistent; do not use pattern matching unless you are intentionally exploring unknown codes.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__claimantProgramCode AS claimant_program_code
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__claimantProgramCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__claimantProgramCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.