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