Award Number

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

Federal award record for PIID 89303921FEM400037 under agency ID 8900, showing obligations and action history over the last 10 years.

This page summarizes the award number 89303921FEM400037 for agency ID 8900 across a 10-year analysis window. It includes total obligated amount, action count, and average action value based on the available record.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals shown here are based on the provided FPDS query inputs for the last 10 years.

Agency ID
8900
PIID
89303921FEM400037
Type
Award
Total Obligated
1.70 billion
1,701,934,074.04
Actions
97
Average Action Value
17,545,712.10

Overview

The award record for PIID 89303921FEM400037 shows total obligated funding of 1,701,934,074.04 over the last 10 years. The record includes 97 award actions, with an average action value of 17,545,712.1.

How to use this page

Use this page to review the award-level obligation history tied to agency ID 8900 and PIID 89303921FEM400037. It is suited for quick review of total obligations, action volume, and average action value within the stated 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 = '89303921FEM400037'
    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 1,701,934,074.04 1.70 billion 97

Insight

For this award, all reported obligations in the 10-year window are concentrated under the Department of Energy, with $1.70 billion obligated across 97 awards. This indicates a single-agency funding pattern rather than a distributed obligation profile. The agency-level concentration is material and suggests the award activity is primarily associated with DOE.

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 = '89303921FEM400037'
        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
CENTRAL PLATEAU CLEANUP COMPANY LLC 86TK6 1,701,934,074.04 1.70 billion 97

Insight

Obligations in this 10-year window are fully concentrated with CENTRAL PLATEAU CLEANUP COMPANY LLC (CAGE 86TK6), which accounts for the entire reported total of $1.70 billion across 97 awards. This indicates a highly concentrated vendor profile with no distribution across additional vendors in the provided data. The volume of awards, coupled with the aggregate obligated amount, suggests repeated obligation to a single supplier rather than broad vendor diversification.

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 = '89303921FEM400037'
    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
562910 REMEDIATION SERVICES 1,701,934,074.04 1.70 billion 97

Insight

Within the 10-year window, obligations for this award are fully concentrated in NAICS 562910, Remediation Services, totaling $1.70 billion across 97 awards. This indicates a highly focused acquisition profile with no diversification across other NAICS codes in the provided data. The volume of awards alongside the substantial obligated amount suggests sustained activity in remediation-related work.

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 = '89303921FEM400037'
    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
Z1PD MAINTENANCE OF WASTE TREATMENT AND STORAGE FACILITIES 1,701,934,074.04 1.70 billion 97

Insight

Obligations for award PIID 89303921FEM400037 under agency 8900 are concentrated entirely in PSC Z1PD, Maintenance of Waste Treatment and Storage Facilities. Over the 10-year window, this PSC accounts for 1.70 billion across 97 awards, indicating a sustained and highly focused procurement profile. No other PSCs are represented in the provided rows, so the observed obligation mix is fully concentrated in this category.

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 = '89303921FEM400037'
    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
2021 244,772,346.62 244.77 million 10
2022 478,254,564.82 478.25 million 21
2023 688,694,539.12 688.69 million 28
2024 312,830,525.07 312.83 million 29
2025 -22,617,901.59 -22.62 million 9

Insight

Obligations increased sharply from 2021 through 2023, rising from $244.77 million across 10 awards to a peak of $688.69 million across 28 awards, indicating growing concentration of activity in this period. In 2024, obligations declined to $312.83 million but award count remained high at 29, suggesting continued transaction volume at a lower dollar level. The 2025 figure is negative at $22.62 million across 9 awards, which indicates net deobligation activity during the current period.

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.