Total Base and Exercised Options Value

Monetary value for the base contract amount plus the dollar value of exercised options on an Other Transaction IDV record. It represents the reported total value for the base award and any options that have already been exercised, excluding unexercised option value unless separately captured elsewhere.

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

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue
Title
Total Base and Exercised Options Value
FPDS Path
OtherTransactionIDV/contractDetail/totalDollarValues/totalBaseAndExercisedOptionsValue
Description
Monetary value for the base contract amount plus the dollar value of exercised options on an Other Transaction IDV record. It represents the reported total value for the base award and any options that have already been exercised, excluding unexercised option value unless separately captured elsewhere.
Business Meaning
This field is useful for sizing awards, comparing obligated value across agreements, and tracking how much value has actually been brought under contract authority for an OT IDV. Analysts use it to support spend analysis, portfolio sizing, and trend reporting on award growth over time.
Example Value
32587819.12
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue
FPDS XML Path
OtherTransactionIDV/contractDetail/totalDollarValues/totalBaseAndExercisedOptionsValue
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/totalDollarValues/totalBaseAndExercisedOptionsValue' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • Spending aggregation and trend analysis

Common Usage

  • award value and portfolio sizing
  • trend analysis of contract value over time
  • market and vendor concentration analysis

Common Mistakes

  • treating it as total potential value including unexercised options
  • double counting it alongside other base or option value fields

Query Guidance

Use this numeric field directly in SUM, AVG, MIN, MAX, and threshold filters after confirming the unit is dollars. In SQL, cast only if needed for your warehouse, and join/group by award identifiers before aggregating to prevent duplicate counting from multiple line or modification records.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue AS total_base_and_exercised_options_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalBaseAndExercisedOptionsValue IS NOT NULL
LIMIT 25

Aggregate total

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

Distribution overview

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