Commercial Item Test Program
Boolean or coded indicator showing whether the commercial item test program was used for the IDV record. It records the presence of that procurement condition rather than describing the underlying award.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Filter IDVs that used the commercial item test program
- Compare award volumes across procurement authorities
- Support compliance or policy exception analysis
Common Mistakes
- Assuming a blank or false value means the condition was definitively reviewed and rejected
- Using the field as a measure of award value instead of a categorical indicator
Query Guidance
Use the field in WHERE clauses to isolate records where the flag indicates use of the program, typically by checking for values such as 'Y', '1', or an equivalent true code in your dataset. If the source includes coded and descriptive fields, filter on the code value and verify null handling explicitly.
SQL Examples
Preview values
SELECT
content__IDV__competition__commercialItemTestProgram AS commercial_item_test_program
FROM fpds.data
WHERE content__IDV__competition__commercialItemTestProgram IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__competition__commercialItemTestProgram AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__commercialItemTestProgram IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.