Contract Bundling Description
Human-readable text that explains the contract bundling status recorded for the IDV. It is the descriptive label paired with the coded 'Contract Bundling' field, used to show the interpreted bundling value in plain language.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify whether an IDV was bundled or not bundled
- Support small business impact and competition analysis
- Validate interpretations of the coded contract bundling field
Common Mistakes
- Using the description field as if it were the source code
- Assuming identical wording across all records or time periods
Query Guidance
Use this field for text-based filtering or labeling only. For analytical grouping, prefer the paired coded 'Contract Bundling' field when available, and normalize description values with UPPER/TRIM or a mapping table if you must aggregate by the text label.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__contractBundling__description AS contract_bundling_description
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__contractBundling__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__contractBundling__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__contractBundling__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.