Type of Contract Pricing Description
Human-readable description of the contract pricing type reported for an IDV record. This is the descriptive label paired with the coded "Type of Contract Pricing" value, such as "FIXED PRICE."
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Translate coded pricing data into readable reporting categories
- Segment IDVs by pricing structure for analysis
- Validate or audit consistency between code and description fields
Common Mistakes
- Using the description field as if it were the authoritative source code
- Assuming all agencies populate descriptions with identical wording or capitalization
Query Guidance
Use this field for display, filtering, and code-to-label validation, but group analytically by the underlying pricing code when available. In SQL, normalize case and trim whitespace if comparing text values, and expect multiple descriptions to map to the same code or minor wording variations across records.
SQL Examples
Preview values
SELECT
content__IDV__contractData__typeOfContractPricing__description AS type_of_contract_pricing_description
FROM fpds.data
WHERE content__IDV__contractData__typeOfContractPricing__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__typeOfContractPricing__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__typeOfContractPricing__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.