Type of IDC Description
Human-readable text that describes the coded IDC type stored in the paired 'Type of IDC' field. It is the label version of the underlying code, such as 'INDEFINITE DELIVERY / INDEFINITE QUANTITY,' and is used to make the contract type understandable without decoding abbreviations.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display readable contract type labels in reports and dashboards
- Validate or interpret the paired 'Type of IDC' code
- Group IDVs by contract vehicle description for summary analysis
Common Mistakes
- Using the description as if it were the primary coded key
- Grouping solely on free-text labels without checking the paired code or source variations
Query Guidance
Select this field when you need a readable label for the IDC type, and join or filter on the paired code field when possible. If the dataset contains inconsistent capitalization, spacing, or punctuation, normalize the text or aggregate by the coded field first, then use this description for presentation.
SQL Examples
Preview values
SELECT
content__IDV__contractData__typeOfIDC__description AS type_of_i_d_c_description
FROM fpds.data
WHERE content__IDV__contractData__typeOfIDC__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__typeOfIDC__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__typeOfIDC__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.