Multiple or Single Award IDC
Boolean-or-coded flag indicating whether the IDV was awarded as a single-award or multiple-award instrument. In many FPDS extracts this is represented by a coded value rather than a full text description, so the stored value should be interpreted as the award-type indicator for the IDV.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Split IDVs into single-award versus multiple-award cohorts
- Filter records for competition and sourcing analysis
- Support KPI reporting on contract vehicle mix
Common Mistakes
- Assuming the field is free text rather than a code flag
- Comparing values without normalizing code meanings across extracts
Query Guidance
Use it as a categorical filter in SQL, for example WHERE multipleOrSingleAwardIDC IN ('S','M') after confirming the local code meanings. If the extract stores a boolean or integer representation, map the raw values to single-award and multiple-award categories before aggregating or joining.
SQL Examples
Preview values
SELECT
content__IDV__contractData__multipleOrSingleAwardIDC AS multiple_or_single_award_i_d_c
FROM fpds.data
WHERE content__IDV__contractData__multipleOrSingleAwardIDC IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__multipleOrSingleAwardIDC AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__multipleOrSingleAwardIDC 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.