This award page summarizes activity for PIID 89303921FEM400037 within Agency ID 8900 over the last 5 years. The record shows 97 award actions and total obligated amounts of 1.70 billion.
Award Number
Award Number 8900 / 89303921FEM400037 Federal Contract Action Summary (Last 5 Years)
Federal award number 89303921FEM400037 for Agency ID 8900, showing obligations and action history over the last 5 years.
Totals reflect the last 5 years of available award activity; total obligated exact is 1701934074.04 and average action value is 17545712.1.
Overview
The award number 89303921FEM400037 is associated with Agency ID 8900 and shows 97 recorded actions in the last 5 years. Total obligated funding is 1.70 billion, with an average action value of 17,545,712.1.
How to use this page
Use this page to review the award's obligation total, action count, and average action value for the selected analysis window. It supports quick comparison of procurement activity tied to PIID 89303921FEM400037 within Agency ID 8900.
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 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 | 1,701,934,074.04 | 1.70 billion | 97 |
Insight
Within the 5-year window for PIID 89303921FEM400037, all reported obligations are concentrated in the Department of Energy (agency ID 8900). The agency accounts for $1.70 billion across 97 awards, indicating substantial award activity and a highly concentrated obligation profile at the agency level. No other agencies are represented in the provided rows, so distribution across agencies cannot be assessed from this extract.
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 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 |
|---|---|---|---|---|
| CENTRAL PLATEAU CLEANUP COMPANY LLC | 86TK6 | 1,701,934,074.04 | 1.70 billion | 97 |
Insight
CENTRAL PLATEAU CLEANUP COMPANY LLC is the sole top vendor identified in the 5-year window for award PIID 89303921FEM400037 under Agency ID 8900. The vendor accounts for $1.70 billion in total obligated funds across 97 awards, indicating a high degree of obligation concentration in a single recipient. This pattern suggests the award activity is heavily distributed toward one vendor rather than dispersed across multiple contractors.
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 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 |
|---|---|---|---|---|
| 562910 | REMEDIATION SERVICES | 1,701,934,074.04 | 1.70 billion | 97 |
Insight
Within the 5-year window for award 89303921FEM400037, obligations are entirely concentrated in NAICS 562910, Remediation Services. This NAICS accounts for $1.70 billion across 97 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated use of the same service category rather than broad category distribution.
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 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 |
|---|---|---|---|---|
| Z1PD | MAINTENANCE OF WASTE TREATMENT AND STORAGE FACILITIES | 1,701,934,074.04 | 1.70 billion | 97 |
Insight
Award activity for PIID 89303921FEM400037 is fully concentrated in PSC Z1PD, Maintenance of Waste Treatment and Storage Facilities. Over the 5-year window, this PSC accounts for $1.70 billion across 97 awards, indicating a highly focused obligation pattern within this contract line. No other PSCs are provided, so the available data indicate complete concentration 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 5 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 for PIID 89303921FEM400037 increased from $244.77 million across 10 awards in 2021 to a peak of $688.69 million across 28 awards in 2023, indicating a pronounced expansion in both volume and value over the first three years. In 2024, obligated dollars declined to $312.83 million while award count remained high at 29, suggesting a shift to smaller average award amounts. The 2025 row records a net deobligation of $22.62 million across 9 awards, indicating a reversal in obligated value 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.