Fee Range Upper Value
Upper bound of the fee range recorded for the contract marketing record on an IDV. It represents the maximum fee amount associated with the range, typically stored as a string-formatted monetary value.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs by maximum fee band
- Group contract marketing records by fee range
- Compare fee ceilings across award cohorts
Common Mistakes
- Interpreting the upper value as the actual charged fee
- Casting the string directly to numeric without cleaning formatting
Query Guidance
Use this field as the upper endpoint of a range and cast to a numeric type only after validating the string format. In SQL, trim and normalize the value before conversion, and pair it with the lower fee field when analyzing the complete range or testing threshold conditions.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__feeRangeUpperValue AS fee_range_upper_value
FROM fpds.data
WHERE content__IDV__contractMarketingData__feeRangeUpperValue IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractMarketingData__feeRangeUpperValue AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__feeRangeUpperValue 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.