Total Base and All Options Value
Monetary amount representing the total value of the base award plus all exercised or included option amounts for an Other Transaction Award. It reflects the full reported contract value at the time of the FPDS record, not just the initial base amount.
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 sizing and distribution analysis
- trend analysis of total reported contract value
- market sizing and vendor portfolio comparisons
Common Mistakes
- treating the value as only the base amount
- summing it across multiple record versions without de-duplication
Query Guidance
Select and aggregate this numeric field for total-value analysis, typically with SUM, AVG, MIN/MAX, or percentile functions after filtering to the desired award set. When joining to other FPDS tables or records, deduplicate at the award/action grain and confirm whether NULLs, zero values, or amended records should be excluded or separately handled.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue AS total_base_and_all_options_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS min_value,
avg(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS avg_value,
max(content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue 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.