Total Obligated Amount
Monetary amount reported as the total obligated dollars associated with an IDV record in FPDS. It reflects the cumulative obligated value captured for the vehicle, not a count or descriptive label.
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
- sum obligated dollars by agency, vendor, or fiscal year
- rank IDVs by financial size
- support market sizing and obligation trend analysis
Common Mistakes
- confusing obligated amount with ceiling, estimated value, or base award amount
- double counting the same IDV when joining to line-item or modification-level tables
Query Guidance
Use this field in numeric aggregations such as SUM, AVG, MIN, and MAX. When joining to other FPDS tables, deduplicate at the IDV record level before summing to avoid inflated totals, and apply explicit NULL handling if you need to distinguish missing from zero-obligation records.
SQL Examples
Preview values
SELECT
content__IDV__totalDollarValues__totalObligatedAmount AS total_obligated_amount
FROM fpds.data
WHERE content__IDV__totalDollarValues__totalObligatedAmount IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__totalDollarValues__totalObligatedAmount) AS total_value
FROM fpds.data
WHERE content__IDV__totalDollarValues__totalObligatedAmount IS NOT NULL
Distribution overview
SELECT
min(content__IDV__totalDollarValues__totalObligatedAmount) AS min_value,
avg(content__IDV__totalDollarValues__totalObligatedAmount) AS avg_value,
max(content__IDV__totalDollarValues__totalObligatedAmount) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__totalDollarValues__totalObligatedAmount 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.