Cost or Pricing Data
Boolean or coded flag indicating whether cost or pricing data was used for the IDV record. It reflects the presence of a yes/no determination in the contract data section rather than a monetary amount or narrative explanation.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify awards where cost or pricing data was used
- Segment procurements for compliance or audit review
- Compare pricing basis across acquisition categories
Common Mistakes
- Reading the flag as evidence that certified cost or pricing data was required
- Treating non-affirmative values and missing values as equivalent without checking the extract
Query Guidance
Use equality filters against the affirmative code in the local extract, for example WHERE content__IDV__contractData__costOrPricingData = 'Y' or the equivalent coded value. If the column is stored as mixed text, normalize values first and validate against the dataset's observed code set before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__contractData__costOrPricingData AS cost_or_pricing_data
FROM fpds.data
WHERE content__IDV__contractData__costOrPricingData IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__costOrPricingData AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__costOrPricingData IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.