Referenced IDV Multiple or Single
Indicates whether the referenced IDV is a single-award or multiple-award indefinite delivery vehicle. It is a coded flag field, so observed values such as "S" should be treated as labels for the underlying award structure rather than free text.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Segment obligations tied to single-award versus multiple-award IDVs
- Filter awards for competition and ordering analysis
- Validate reporting on task order and delivery order vehicles
Common Mistakes
- Assuming the field describes the current award instead of the referenced IDV
- Grouping on the displayed label without confirming the underlying code set
Query Guidance
In SQL, filter and group on the stored code value, for example WHERE referencedIDVMultipleOrSingle = 'S' or its equivalent code for single-award vehicles. When comparing across extracts, normalize coded values and join to a lookup table if one exists; do not use this field as a textual description unless you have confirmed the code-to-label mapping.
SQL Examples
Preview values
SELECT
content__award__contractData__referencedIDVMultipleOrSingle AS referenced_i_d_v_multiple_or_single
FROM fpds.data
WHERE content__award__contractData__referencedIDVMultipleOrSingle IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__referencedIDVMultipleOrSingle AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__referencedIDVMultipleOrSingle 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.