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.
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
- 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.