Base and All Options Value

Monetary value representing the total amount of the Other Transaction IDV if all option amounts are included. It is a financial measure stored in the contract detail dollar values section and reflects the full potential value reported in the FPDS record.

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

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue
Title
Base and All Options Value
FPDS Path
OtherTransactionIDV/contractDetail/dollarValues/baseAndAllOptionsValue
Description
Monetary value representing the total amount of the Other Transaction IDV if all option amounts are included. It is a financial measure stored in the contract detail dollar values section and reflects the full potential value reported in the FPDS record.
Business Meaning
Analysts use this field to estimate maximum reported transaction value, support obligation and ceiling analyses, and compare awards on a like-for-like basis when option structure matters. It is useful for market sizing, spending concentration, and assessing the upper bound of a reported IDV rather than only the base commitment.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue
FPDS XML Path
OtherTransactionIDV/contractDetail/dollarValues/baseAndAllOptionsValue
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/dollarValues/baseAndAllOptionsValue' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__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

  • maximum award value analysis
  • market sizing and obligation comparisons
  • trend analysis by dollar value
  • portfolio and supplier concentration analysis

Common Mistakes

  • using it as actual spend instead of reported award value
  • comparing it to base-only values without accounting for options

Query Guidance

Select this field when you need the reported value including options, and filter or coalesce nulls carefully. In SQL, use it as a numeric measure for aggregations such as SUM, AVG, and percentile calculations, but do not mix it with base-only values unless the metric definition explicitly allows it.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue AS base_and_all_options_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue IS NOT NULL
LIMIT 25

Aggregate total

SELECT
    sum(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue IS NOT NULL

Distribution overview

SELECT
    min(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue) AS min_value,
    avg(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue) AS avg_value,
    max(content__OtherTransactionIDV__contractDetail__dollarValues__baseAndAllOptionsValue) AS max_value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.