Total Base and All Options Value
Monetary value representing the total value of the base award plus all option years or option quantities for an Other Transaction IDV record. It reflects the full contractual value as reported in FPDS for the instrument, 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
- Rank Other Transaction IDVs by reported total value
- Filter awards above a spending threshold
- Compare base-plus-options value across agencies, vendors, or time periods
Common Mistakes
- Confusing reported total contract value with obligated dollars
- Summing parent and child records in a way that double counts the same value
Query Guidance
Use as a numeric field in SELECT, WHERE, and ORDER BY clauses for value-based analysis. When aggregating, deduplicate at the appropriate award key or latest-version record, and handle nulls explicitly with COALESCE only when your methodology requires substituting zero for missing values.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue AS total_base_and_all_options_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS min_value,
avg(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS avg_value,
max(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndAllOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.