Multiple or Single Award IDC Description
Human-readable description for the coded field that indicates whether an IDV is a multiple-award or single-award indefinite delivery vehicle. It is the text label paired with the underlying code in FPDS contract data, such as "MULTIPLE AWARD".
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 and single-award groups
- Validate or decode the paired FPDS award-structure code
- Support reporting on procurement vehicle type and competition structure
Common Mistakes
- Using the description field as if it were the source code
- Assuming all free-text variants are standardized without checking distinct observed values
Query Guidance
Select this field with its paired code field when decoding award structure, and group or filter on normalized values rather than raw text when possible. In SQL, use DISTINCT to inspect observed labels and CASE logic to map them to canonical categories such as multiple award and single award.
SQL Examples
Preview values
SELECT
content__IDV__contractData__multipleOrSingleAwardIDC__description AS multiple_or_single_award_i_d_c_description
FROM fpds.data
WHERE content__IDV__contractData__multipleOrSingleAwardIDC__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__multipleOrSingleAwardIDC__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__multipleOrSingleAwardIDC__description 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.