Total Base and Exercised Options Value
Monetary value of the award equal to the base contract amount plus any exercised options. It represents the obligated value of work that is currently in force, excluding unexercised option amounts and other potential future 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
- Total obligated value by agency, vendor, or product/service category
- Award size distributions and percentile analysis
- Filtering large awards for oversight or market research
Common Mistakes
- Treating it as the full potential ceiling value, including unexercised options
- Summing multiple rows for the same award without deduplicating or using the correct transaction grain
Query Guidance
Use this numeric field for SUM, AVG, MIN/MAX, and threshold filters, but first confirm the row grain and whether the table contains one record per award or multiple award actions. When comparing against total potential value, use a separate field for unexercised options; when validating data, inspect nulls and outliers and cast to a numeric type suitable for currency calculations.
SQL Examples
Preview values
SELECT
content__award__totalDollarValues__totalBaseAndExercisedOptionsValue AS total_base_and_exercised_options_value
FROM fpds.data
WHERE content__award__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__totalDollarValues__totalBaseAndExercisedOptionsValue) AS total_value
FROM fpds.data
WHERE content__award__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__award__totalDollarValues__totalBaseAndExercisedOptionsValue) AS min_value,
avg(content__award__totalDollarValues__totalBaseAndExercisedOptionsValue) AS avg_value,
max(content__award__totalDollarValues__totalBaseAndExercisedOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.