Referenced IDV Type
Coded value identifying the type of the referenced IDV, or Indefinite Delivery Vehicle, associated with the award. It indicates the contract family of the parent vehicle rather than the award action itself; example values are often abbreviated codes such as "B".
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group obligations by referenced vehicle type
- Filter orders placed against IDVs versus standalone awards
- Analyze procurement patterns by contracting vehicle family
Common Mistakes
- Assuming the field contains a human-readable label rather than a code
- Using it to describe the award action instead of the referenced parent vehicle
Query Guidance
Use the stored code for grouping and filtering, and join to a code lookup or description field when available for readable output. Include null handling explicitly because missing values may indicate the award is not tied to an IDV or the value was not populated.
SQL Examples
Preview values
SELECT
content__award__contractData__referencedIDVType AS referenced_i_d_v_type
FROM fpds.data
WHERE content__award__contractData__referencedIDVType IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__referencedIDVType AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__referencedIDVType 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.