Fixed Fee Value
Numeric amount reported as the fixed fee associated with the IDV contract marketing record. It represents the fee value captured in FPDS for that record, not necessarily the total contract obligation or award value.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Spending aggregation and trend analysis
Common Usage
- Filtering IDVs with reported fixed fees
- Comparing fee values across contracts or vendors
- Supporting trend analysis of fee-bearing awards
Common Mistakes
- Using the fee value as the full contract amount
- Comparing rows without checking currency, nulls, or related financial fields
Query Guidance
Use the field as a numeric amount in aggregations, filters, and comparisons, and cast or coalesce only when your SQL engine requires it. When summarizing, group by contract, vendor, or period as needed and avoid mixing it with obligation or base award value fields unless the analysis explicitly requires a combined measure.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__fixedFeeValue AS fixed_fee_value
FROM fpds.data
WHERE content__IDV__contractMarketingData__fixedFeeValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__contractMarketingData__fixedFeeValue) AS total_value
FROM fpds.data
WHERE content__IDV__contractMarketingData__fixedFeeValue IS NOT NULL
Distribution overview
SELECT
min(content__IDV__contractMarketingData__fixedFeeValue) AS min_value,
avg(content__IDV__contractMarketingData__fixedFeeValue) AS avg_value,
max(content__IDV__contractMarketingData__fixedFeeValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__fixedFeeValue IS NOT NULL
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.