Referenced IDV Multiple or Single
Boolean or coded flag indicating whether the referenced IDV is a multiple-award or single-award vehicle. In FPDS this field classifies the award structure of the IDV tied to the record; the example value "M" suggests a coded value rather than a plain yes/no indicator.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Segment IDVs into multiple-award versus single-award populations
- Filter records for competition or vehicle-structure analysis
- Join to obligation, vendor, or order data to compare award patterns by vehicle type
Common Mistakes
- Assuming the field is always a simple true/false boolean
- Interpreting coded values without confirming the dataset's value map
Query Guidance
Use this field in WHERE clauses to isolate the vehicle structure you need, but first confirm the actual code set in your data source. If a description or lookup field exists, join or decode on the code value and standardize M/S/other variants before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__contractData__referencedIDVMultipleOrSingle AS referenced_i_d_v_multiple_or_single
FROM fpds.data
WHERE content__IDV__contractData__referencedIDVMultipleOrSingle IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__referencedIDVMultipleOrSingle AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.