Award Number

Award Number 8900 / DEAC0909SR22505 Federal Contract Action Summary (Last 10 Years)

Award number DEAC0909SR22505 for agency 8900 shows 319 actions and $3.39 billion obligated over the last 10 years.

This page summarizes federal procurement activity for award number DEAC0909SR22505 within agency 8900 over the last 10 years. The record shows 319 award actions and total obligated funding of $3,392,223,222.23.

Generated at 03/20/2026

Analysis period: Last 10 years

The totals shown reflect the stated analysis window and may differ from other reporting periods or extracts.

Agency ID
8900
PIID
DEAC0909SR22505
Type
Award
Total Obligated
3.39 billion
3,392,223,222.23
Actions
319
Average Action Value
10,633,928.60

Overview

Award number DEAC0909SR22505 is associated with agency 8900 and has 319 recorded actions in the last 10 years. Total obligated funding is $3,392,223,222.23, with an average action value of $10,633,928.60.

How to use this page

Use this page to review the scale and cadence of obligation activity tied to DEAC0909SR22505. The action count and average action value provide a quick view of how spending is distributed across the analysis window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0909SR22505'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
8900 ENERGY, DEPARTMENT OF 3,392,223,222.23 3.39 billion 319

Insight

Over the 10-year window, all reported obligations for PIID DEAC0909SR22505 are concentrated within the Department of Energy, which accounts for $3.39 billion across 319 awards. This indicates a fully concentrated funding profile with no cross-agency distribution in the provided data. The award history suggests sustained activity within a single agency relationship rather than a dispersed award base.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0909SR22505'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
SAVANNAH RIVER REMEDIATION LLC 4XQS6 2,763,920,919.08 2.76 billion 268
SAVANNAH RIVER REMEDIATION LLC 628,302,303.15 628.30 million 51

Insight

Award obligations are highly concentrated in SAVANNAH RIVER REMEDIATION LLC, which accounts for the dominant share of funding in this 10-year window. The vendor appears twice in the results: one record with CAGE 4XQS6 totals $2.76 billion across 268 awards, and a separate record without a CAGE code totals $628.30 million across 51 awards. This distribution indicates sustained reliance on the same vendor name across multiple award records, with the majority of obligated value concentrated in the identified CAGE-coded entity.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0909SR22505'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 3,392,223,222.23 3.39 billion 319

Insight

Over the 10-year window, this award is fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal. The category accounts for $3.39 billion in obligated funding across 319 awards, indicating a sustained and highly concentrated procurement profile. No other NAICS codes are present in the provided rows, so there is no observable diversification within this view.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0909SR22505'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
M294 OPER OF GOVT WASTE TRMT-STORE FAC 3,392,223,222.23 3.39 billion 319

Insight

Award obligations for PIID DEAC0909SR22505 are entirely concentrated in PSC M294, OPER OF GOVT WASTE TRMT-STORE FAC, over the 10-year window. This PSC accounts for $3.39 billion across 319 actions, indicating a highly focused obligation profile with no other PSCs represented in the provided data. The distribution suggests this award has been consistently used for a single primary service category rather than spread across multiple product or service lines.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0909SR22505'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 621,092,303.15 621.09 million 49
2017 334,186,699.12 334.19 million 45
2018 545,653,772.53 545.65 million 62
2019 552,934,535.12 552.93 million 29
2020 647,076,052.73 647.08 million 56
2021 728,054,165.76 728.05 million 64
2022 -36,626,867.30 -36.63 million 11
2024 -70,734.17 -70.73 thousand 1
2025 -76,704.71 -76.70 thousand 2

Insight

Obligations for PIID DEAC0909SR22505 were concentrated in 2016 through 2021, with annual totals ranging from $334.19 million to $728.05 million and award counts generally between 29 and 64. The highest obligation level occurred in 2021 at $728.05 million across 64 awards, following sustained activity in 2020 and 2018–2019. Activity then declined sharply, with negative net obligations in 2022, 2024, and 2025 and materially fewer awards in those years, indicating a substantial downward shift in recent annual obligations.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.