Award Number

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

Federal procurement overview for award number 89303921FEM400037 under agency ID 8900, based on last full year activity.

This page summarizes award number 89303921FEM400037 for agency ID 8900 over the last full year. The award shows 9 actions and a total obligated amount of -22.62 million.

Generated at 03/20/2026

Analysis period: Last full year

Figures are based on the provided analysis window and use the exact total obligated value of -22617901.59 and an average action value of -2513100.18.

Agency ID
8900
PIID
89303921FEM400037
Type
Award
Total Obligated
-22.62 million
-22,617,901.59
Actions
9
Average Action Value
-2,513,100.18

Overview

Award number 89303921FEM400037 is associated with agency ID 8900 and recorded activity in the last full year. The award has 9 actions and a total obligated amount of -22.62 million, with an exact value of -22617901.59. The average action value for the period is -2513100.18.

How to use this page

Use this page to review the award-level obligation pattern for 89303921FEM400037 during the last full year. The figures provide a compact view of action frequency and the direction and size of obligated amounts tied to this award. For detailed transaction analysis, compare the action count with the total obligated and average action values.

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 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 -22,617,901.59 -22.62 million 9

Insight

All recorded obligations in the 1-year window are concentrated in a single top agency: the Department of Energy (agency 8900), with 9 awards totaling -$22.62 million. This indicates the award’s obligation activity is fully attributable to one agency rather than distributed across multiple agencies. The negative obligated amount suggests net deobligation activity over the period.

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 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
CENTRAL PLATEAU CLEANUP COMPANY LLC 86TK6 -22,617,901.59 -22.62 million 9

Insight

Over the 1-year window, obligations are fully concentrated with a single vendor, CENTRAL PLATEAU CLEANUP COMPANY LLC (CAGE 86TK6), which accounts for all reported activity in this view. The vendor received 9 awards totaling -$22.62 million in obligated value, indicating a negative net obligation position across the period. This concentration suggests the award activity for PIID 89303921FEM400037 is not distributed across multiple vendors.

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 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
562910 REMEDIATION SERVICES -22,617,901.59 -22.62 million 9

Insight

Over the past 1 year, obligations for award 89303921FEM400037 under agency 8900 are fully concentrated in NAICS 562910, Remediation Services. This category accounts for 9 actions and -$22.62 million in total obligated value, indicating all recorded activity in the period is tied to a single industry segment. The negative obligated amount suggests net deobligations or downward funding adjustments within this NAICS.

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 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
Z1PD MAINTENANCE OF WASTE TREATMENT AND STORAGE FACILITIES -22,617,901.59 -22.62 million 9

Insight

Obligations under PIID 89303921FEM400037 are concentrated entirely in PSC Z1PD, Maintenance of Waste Treatment and Storage Facilities, with 9 awards totaling -$22.62 million over the past year. The negative obligated amount indicates net deobligations rather than new funding, and the activity is not distributed across multiple PSCs in this window. This suggests a single-service concentration with material downward adjustment in obligated value.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -22,617,901.59 -22.62 million 9

Insight

For FY2025, this award had $22.62 million in deobligations across 9 actions, indicating a net downward obligation trend over the 1-year window. The activity is concentrated in a single fiscal year and spread across a relatively small number of actions, suggesting adjustments were material rather than broadly distributed.

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.