Base and All Options Value

Monetary amount representing the reported total value of an Other Transaction Award if all options were exercised. It captures the base amount plus the full value of any option periods or quantities tied to the award.

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

Variable Overview

FPDS Query Variable
content__OtherTransactionAward__contractDetail__dollarValues__baseAndAllOptionsValue
Title
Base and All Options Value
FPDS Path
OtherTransactionAward/contractDetail/dollarValues/baseAndAllOptionsValue
Description
Monetary amount representing the reported total value of an Other Transaction Award if all options were exercised. It captures the base amount plus the full value of any option periods or quantities tied to the award.
Business Meaning
This field supports assessment of the maximum potential obligation associated with an award, which is important for spend sizing, pipeline valuation, and comparing awards on a fully loaded basis. Analysts use it to distinguish the reported ceiling of a transaction from smaller base-only values when evaluating procurement scale and exposure.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

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

  • Market sizing and award value ranking
  • Comparing base-only versus maximum potential award amounts
  • Trend analysis of reported award scale over time

Common Mistakes

  • Treating it as the amount currently obligated or spent
  • Assuming zero means no award value rather than missing, not applicable, or no options reported

Query Guidance

Select and aggregate this numeric field when you need maximum potential award value; use SUM for portfolio totals, AVG for typical award size, and filters for non-null/non-zero records. In SQL, pair it with base value or obligated value fields to separate ceiling value from funded value, and cast/handle nulls explicitly in calculations.

SQL Examples

Preview values

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

Aggregate total

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

Distribution overview

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