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.

Family: IDV
Category: Contract Marketing
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__contractMarketingData__feeRangeUpperValue
Title
Fee Range Upper Value
FPDS Path
IDV/contractMarketingData/feeRangeUpperValue
Description
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.
Business Meaning
This field helps analysts understand the fee structure associated with a contract marketing entry and supports comparison across awards, IDVs, and marketing-related reporting. It is useful when evaluating fee ceilings, segmenting deals by fee band, and identifying records with potentially high-cost or unusual fee arrangements.
Example Value
7500.00
Observed Non-Null Count
46,814

FPDS Compare

FPDS Query Variable
content__IDV__contractMarketingData__feeRangeUpperValue
FPDS XML Path
IDV/contractMarketingData/feeRangeUpperValue
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/contractMarketingData/feeRangeUpperValue' into the SQL-ready variable 'content__IDV__contractMarketingData__feeRangeUpperValue'.

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.