Base and Exercised Options Value
Numeric dollar amount representing the value of the base contract plus any exercised options reported for an Other Transaction IDV record. It is a financial measure captured in the FPDS contract detail dollar values section.
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
- Calculate realized award value for Other Transaction IDVs
- Compare contract size across agencies, vendors, or fiscal years
- Build spend and market-sizing summaries
Common Mistakes
- Treating the field as a description or code instead of a numeric dollar amount
- Adding exercised option value again when total award value already includes it
Query Guidance
Cast and aggregate as a numeric dollar field, typically SUM(baseAndExercisedOptionsValue) for portfolio analysis. Filter or coalesce NULLs explicitly, and join with related dollar-value fields only when you need to distinguish base value from option-inclusive value.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue AS base_and_exercised_options_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue) AS min_value,
avg(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue) AS avg_value,
max(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__dollarValues__baseAndExercisedOptionsValue 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.