Base and All Options Value
Numeric dollar amount representing the total value of the IDV at award, including the base quantity and all possible option quantities. It reflects the full ceiling value of the indefinite delivery vehicle as recorded in FPDS.
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
- estimate maximum contract value
- compare IDV sizes across vendors or agencies
- support spend and market sizing analyses
Common Mistakes
- treating the value as obligated dollars instead of ceiling value
- summing related records without de-duplicating awards
Query Guidance
Select and aggregate this field as a decimal numeric value, typically with SUM, AVG, MIN, MAX, or percentile functions depending on the analysis. When joining to action-level tables, group by the IDV identifier before summing to prevent duplication, and use COALESCE only when a null should be treated explicitly as zero.
SQL Examples
Preview values
SELECT
content__IDV__dollarValues__baseAndAllOptionsValue AS base_and_all_options_value
FROM fpds.data
WHERE content__IDV__dollarValues__baseAndAllOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__dollarValues__baseAndAllOptionsValue) AS total_value
FROM fpds.data
WHERE content__IDV__dollarValues__baseAndAllOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__IDV__dollarValues__baseAndAllOptionsValue) AS min_value,
avg(content__IDV__dollarValues__baseAndAllOptionsValue) AS avg_value,
max(content__IDV__dollarValues__baseAndAllOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__dollarValues__baseAndAllOptionsValue 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.