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.

Family: IDV
Category: Dollar Values
Data Type: numeric
Semantic Type: financial
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__dollarValues__baseAndAllOptionsValue
Title
Base and All Options Value
FPDS Path
IDV/dollarValues/baseAndAllOptionsValue
Description
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.
Business Meaning
This field is important for sizing the potential scope of an IDV, comparing award magnitude across vehicles, and estimating upper-bound obligated capacity in portfolio and market analyses. It is commonly used in trend reporting, vendor concentration reviews, and assessments of the government’s planned buying power.
Example Value
2517945.75
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__dollarValues__baseAndAllOptionsValue
FPDS XML Path
IDV/dollarValues/baseAndAllOptionsValue
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/dollarValues/baseAndAllOptionsValue' into the SQL-ready variable 'content__IDV__dollarValues__baseAndAllOptionsValue'.

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.