Total Obligated Amount
Monetary amount the government has obligated under the Other Transaction Award as recorded in the FPDS contract detail totals. It represents the total dollars committed against the award in the reported record, not necessarily the ceiling, awarded amount, or ultimate final spend.
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 awards by financial magnitude
- compare obligation trends across procurement categories
Common Mistakes
- confusing obligated amount with total contract value or ceiling
- double counting multiple modification records without deduplication logic
Query Guidance
Use numeric aggregation such as SUM(totalObligatedAmount) with appropriate filters for award type, fiscal year, and record status. If the table includes multiple rows per award, deduplicate on the award identifier before summarizing, and inspect negative values separately to identify deobligations or corrections.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount AS total_obligated_amount
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount) AS min_value,
avg(content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount) AS avg_value,
max(content__OtherTransactionAward__contractDetail__totalDollarValues__totalObligatedAmount) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.