Award Number

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

FPDS award number DEAC0909SR22505 for agency 8900 shows 78 award actions in the last 5 years with $691.28 million obligated.

This page summarizes federal award activity for award number DEAC0909SR22505 under agency ID 8900. Over the last 5 years, the award records 78 actions and $691,279,859.58 in total obligations.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may differ from current FPDS records if the underlying data changes.

Agency ID
8900
PIID
DEAC0909SR22505
Type
Award
Total Obligated
691.28 million
691,279,859.58
Actions
78
Average Action Value
8,862,562.30

Overview

The award number DEAC0909SR22505 is tied to agency ID 8900 in the provided FPDS context. In the last 5 years, the award has 78 actions and total obligations of $691,279,859.58, with an average action value of $8,862,562.30.

How to use this page

Use this page to review the award-level activity summary, including action count and obligated value over the stated period. The figures support quick comparison with other award numbers or agency records in FPDS.

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 5 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 691,279,859.58 691.28 million 78

Insight

Within the 5-year window for PIID DEAC0909SR22505, all recorded obligations in this top-agencies view are concentrated in the Department of Energy (agency 8900). The award is associated with 78 awards totaling $691.28 million, indicating sustained obligation activity rather than a single isolated action. No other agencies appear in the provided rows, so agency-level distribution is fully concentrated in one department for this query result.

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 5 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 691,279,859.58 691.28 million 78

Insight

Obligations on award DEAC0909SR22505 are fully concentrated with a single vendor over the 5-year window. SAVANNAH RIVER REMEDIATION LLC (CAGE 4XQS6) received $691.28 million across 78 awards, indicating sustained vendor reliance rather than a distributed vendor base.

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 5 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 691,279,859.58 691.28 million 78

Insight

Over the 5-year window, this award is fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, with $691.28 million obligated across 78 awards. The absence of any other NAICS codes indicates complete specialization of obligations for this PIID within the observed period. This pattern suggests a stable, narrowly scoped procurement profile rather than a diversified award mix.

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 5 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 691,279,859.58 691.28 million 78

Insight

Over the 5-year window, obligations for PIID DEAC0909SR22505 under agency 8900 are fully concentrated in PSC M294, OPER OF GOVT WASTE TRMT-STORE FAC, with $691.28 million across 78 awards. This indicates a narrow PSC distribution for this award, with all recorded obligated amounts in the provided data attributable to a single product/service classification.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 are highly concentrated in 2021, with 64 awards totaling $728.05 million. Activity drops sharply in 2022 to 11 awards and a net deobligation of $36.63 million, then remains minimal in 2024 and 2025 with only three awards combined and negligible net negative obligations. The five-year pattern indicates a front-loaded obligation profile followed by limited, small-value adjustments rather than sustained annual funding.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.