Total Base and All Options Value
Numeric contract value representing the reported total dollar amount for the base award plus all option periods or quantities. It is a monetary measure of the full potential award value as recorded in FPDS for the award action.
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
- Award size analysis
- Agency or vendor spend trend comparison
- Market sizing and competitive landscape analysis
Common Mistakes
- Treating the value as actual obligations or expenditures
- Double-counting multiple versions of the same award action without deduplication
Query Guidance
Select, cast, and aggregate this field as a numeric amount after filtering to the desired award version or latest action. Use it for sums, averages, percentiles, and value thresholds, but apply de-duplication logic when records include amendments or repeated award rows.
SQL Examples
Preview values
SELECT
content__award__totalDollarValues__totalBaseAndAllOptionsValue AS total_base_and_all_options_value
FROM fpds.data
WHERE content__award__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__totalDollarValues__totalBaseAndAllOptionsValue) AS total_value
FROM fpds.data
WHERE content__award__totalDollarValues__totalBaseAndAllOptionsValue IS NOT NULL
Distribution overview
SELECT
min(content__award__totalDollarValues__totalBaseAndAllOptionsValue) AS min_value,
avg(content__award__totalDollarValues__totalBaseAndAllOptionsValue) AS avg_value,
max(content__award__totalDollarValues__totalBaseAndAllOptionsValue) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__totalDollarValues__totalBaseAndAllOptionsValue 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.