Total Base and Exercised Options Value
Monetary value for the base contract amount plus the dollar value of exercised options on an Other Transaction IDV record. It represents the reported total value for the base award and any options that have already been exercised, excluding unexercised option value unless separately captured elsewhere.
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
- award value and portfolio sizing
- trend analysis of contract value over time
- market and vendor concentration analysis
Common Mistakes
- treating it as total potential value including unexercised options
- double counting it alongside other base or option value fields
Query Guidance
Use this numeric field directly in SUM, AVG, MIN, MAX, and threshold filters after confirming the unit is dollars. In SQL, cast only if needed for your warehouse, and join/group by award identifiers before aggregating to prevent duplicate counting from multiple line or modification records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue AS total_base_and_exercised_options_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS min_value,
avg(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS avg_value,
max(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue 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.