Cost or Pricing Data Description
Human-readable description associated with the paired cost or pricing data indicator in an IDV record. It identifies, in plain language, how the underlying cost or pricing data value should be interpreted.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpret the paired cost or pricing data indicator in a contract record
- Validate whether procurement documentation reflects cost or pricing data requirements
- Support grouping or auditing of awards by disclosed cost or pricing data status
Common Mistakes
- Using the description field as if it were the authoritative coded value
- Filtering on the description text without checking the paired indicator or actual observed values
Query Guidance
Select this field with its paired cost or pricing data value when reviewing records, and use exact-text comparisons only after confirming the dataset's observed labels. For SQL, prefer filtering on the coded field if available; use this description for display, validation, or text-based reconciliation.
SQL Examples
Preview values
SELECT
content__IDV__contractData__costOrPricingData__description AS cost_or_pricing_data_description
FROM fpds.data
WHERE content__IDV__contractData__costOrPricingData__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__costOrPricingData__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__costOrPricingData__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.