Total Obligated Amount
Monetary amount representing the total dollars obligated on the Other Transaction IDV record. It reflects the reported funding value associated with the vehicle and is stored as a numeric financial field.
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, vendor, or fiscal year
- Compare award size across Other Transaction IDVs
- Support spending and market concentration analysis
Common Mistakes
- Using the field as a proxy for count of awards
- Comparing raw values across datasets without checking nulls, currency, or reporting timing
Query Guidance
Use the field as a numeric measure and aggregate with SUM, AVG, MIN, or MAX depending on the analysis. Filter out nulls explicitly, and join or group by award identifiers, agency, and fiscal period when analyzing obligated dollars at higher levels.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount AS total_obligated_amount
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount) AS min_value,
avg(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount) AS avg_value,
max(content__OtherTransactionIDV__contractDetail__totalDollarValues__totalObligatedAmount) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.