Total Base and Exercised Options Value
Monetary value representing the sum of the base award amount plus any option amounts that have been exercised for an Other Transaction Award. It reflects the obligated or reported value associated with the contract detail at the time of reporting.
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 aggregation
- spend and trend analysis
- comparison of exercised-option value across awards
Common Mistakes
- treating the value as the full potential ceiling instead of exercised value only
- summing it with base award value from the same record and double counting
Query Guidance
Cast or treat as a numeric dollar field and aggregate with SUM only after filtering to the desired award population and reporting period. When comparing contract sizes, use this field alongside base value and other option-related totals to avoid overstating obligations or award magnitude.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue AS total_base_and_exercised_options_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS min_value,
avg(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS avg_value,
max(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.