Obligated Amount
Monetary amount obligated on the Other Transaction Award contract detail. It represents the amount currently recorded as committed in FPDS for the award, not necessarily the total ceiling or final outlay.
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 obligations by agency, fiscal year, or recipient
- Compare award magnitude across Other Transaction Awards
- Filter for nonzero obligated amounts in spending analyses
Common Mistakes
- Treating obligated amount as the contract ceiling or total potential value
- Double-counting obligations by summing duplicate or modified award records
Query Guidance
Cast or store as a numeric/decimal field and aggregate with SUM after de-duplicating at the appropriate award grain. Join to award identifiers and date fields for period analysis, and screen for NULLs, zeros, and possible negative adjustments before reporting totals.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount AS obligated_amount
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount) AS min_value,
avg(content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount) AS avg_value,
max(content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__obligatedAmount 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.