Referenced IDV Type
Code identifying the type of referenced indefinite delivery vehicle (IDV) contract associated with the record. The example value suggests this is a coded attribute rather than a free-text description, so it should be interpreted using the corresponding code set or paired description when available.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Grouping IDV records by referenced contract type
- Filtering for specific vehicle types in procurement analyses
- Joining to code/description mappings for reporting
Common Mistakes
- Assuming the value is a full descriptive name instead of a code
- Comparing values without normalizing or validating against the supported code set
Query Guidance
Use this field as a discrete dimension in WHERE, GROUP BY, and JOIN clauses. In SQL, compare against exact coded values and, when building reports, join to the reference table or decode values to avoid misclassification; do not use pattern matching unless the data quality requires exploratory profiling.
SQL Examples
Preview values
SELECT
content__IDV__contractData__referencedIDVType AS referenced_i_d_v_type
FROM fpds.data
WHERE content__IDV__contractData__referencedIDVType IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__referencedIDVType AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.