Type of Contract Pricing Description
Human-readable description for the contract pricing type associated with an award. It is the text label that explains the coded 'Type of Contract Pricing' value rather than the code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting contract pricing structure from FPDS award records
- Grouping awards by pricing type for spend or risk analysis
- Validating coded pricing values against the human-readable label
Common Mistakes
- Using the description as a stable join key instead of the underlying code
- Assuming the label is standardized across all records without checking observed values
Query Guidance
Select this field alongside the paired pricing code when reporting or filtering award data. For analysis, aggregate by the code when available and use the description for display, QA checks, and exception review; avoid exact-match logic if the source may contain variant labels or capitalization differences.
SQL Examples
Preview values
SELECT
content__award__contractData__typeOfContractPricing__description AS type_of_contract_pricing_description
FROM fpds.data
WHERE content__award__contractData__typeOfContractPricing__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__typeOfContractPricing__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.