Obligated Amount
Monetary amount obligated on the IDV record, as reported in FPDS dollar values. It reflects the financial commitment associated with the indefinite delivery vehicle and is captured as a numeric value.
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
- Summing obligated dollars by agency, vendor, or fiscal year
- Filtering out zero-dollar IDVs in spend analyses
- Comparing obligation amounts across IDV vehicles or award groups
Common Mistakes
- Treating this as the ceiling or maximum possible value of the IDV
- Assuming all records contain nonzero or cumulative obligations
Query Guidance
Use as a numeric measure in SUM, AVG, MIN/MAX, and trend queries, typically grouped by fiscal year, agency, NAICS, or vendor. Include NULL and zero checks explicitly, and join to award or action tables only when you need broader obligation context.
SQL Examples
Preview values
SELECT
content__IDV__dollarValues__obligatedAmount AS obligated_amount
FROM fpds.data
WHERE content__IDV__dollarValues__obligatedAmount IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__dollarValues__obligatedAmount) AS total_value
FROM fpds.data
WHERE content__IDV__dollarValues__obligatedAmount IS NOT NULL
Distribution overview
SELECT
min(content__IDV__dollarValues__obligatedAmount) AS min_value,
avg(content__IDV__dollarValues__obligatedAmount) AS avg_value,
max(content__IDV__dollarValues__obligatedAmount) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.