Award Number

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

Award number DEAC0909SR22505 for agency ID 8900 shows two actions in the last full year with total obligated amount of -$76.70 thousand.

This award page summarizes activity for award number DEAC0909SR22505 under agency ID 8900 during the last full year. The record reflects 2 award actions and a net obligated total of -$76,704.71.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are based on the provided analysis window and may reflect deobligations or other negative obligation activity.

Agency ID
8900
PIID
DEAC0909SR22505
Type
Award
Total Obligated
-76.70 thousand
-76,704.71
Actions
2
Average Action Value
-38,352.36

Overview

For the last full year, award number DEAC0909SR22505 under agency ID 8900 had 2 award actions. The total obligated amount was -$76,704.71, with an average action value of -$38,352.36.

How to use this page

Use this page to review the award-level obligation pattern for DEAC0909SR22505 within the selected period. The negative total and average action value indicate that the recorded activity reduced obligated funding over the two actions.

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 1 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 -76,704.71 -76.70 thousand 2

Insight

Within the 1-year window for PIID DEAC0909SR22505, all recorded obligation activity is concentrated at the Department of Energy (agency ID 8900). The award reflects 2 actions totaling a net obligation of -$76,704.71, indicating a small, fully concentrated obligation footprint for this award. The negative total suggests downward adjustment or deobligation activity rather than net funding growth.

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 1 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 -76,704.71 -76.70 thousand 2

Insight

Obligations for this award are fully concentrated with SAVANNAH RIVER REMEDIATION LLC (CAGE 4XQS6), which accounts for all reported vendor activity in the 1-year window. The vendor received 2 awards with total obligated funds of -$76.7 thousand, indicating a net deobligation over the period. This pattern suggests limited vendor distribution and a highly concentrated obligation profile for PIID DEAC0909SR22505.

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 1 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 -76,704.71 -76.70 thousand 2

Insight

Obligations for this award are fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal. Across the 1-year window, two actions account for a net obligation of -$76.7 thousand, indicating a downward adjustment or deobligation rather than new funding. This single-NAICS distribution suggests limited industry diversification for the award during the period.

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 1 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 -76,704.71 -76.70 thousand 2

Insight

Obligations under PIID DEAC0909SR22505 are concentrated in a single PSC, M294, with a net negative total obligated amount of $76.7 thousand across 2 awards. This indicates all reported obligations in the 1-year window fall within the same product/service category, with limited distribution across PSCs. The negative net total suggests deobligations exceeded obligations for this PSC over the period.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -76,704.71 -76.70 thousand 2

Insight

In the 1-year window, this award recorded $76.70 thousand in deobligations in 2025 across 2 actions. Obligations were fully concentrated in a single year, indicating no distributed annual activity within the period provided. The negative total suggests a net reduction in obligated funding rather than new award growth.

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