Award Number

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

Federal procurement analysis for award number 89303523FEM400032 under Agency ID 8900, covering the last 5 years of obligation and action activity.

This page summarizes award number 89303523FEM400032 for Agency ID 8900 over the last 5 years. The award shows total obligations of 2.13 billion across 105 actions, with an average action value of 20,322,412.7.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may differ from other reporting views because of rounding.

Agency ID
8900
PIID
89303523FEM400032
Type
Award
Total Obligated
2.13 billion
2,133,853,333.99
Actions
105
Average Action Value
20,322,412.70

Overview

Award number 89303523FEM400032 is associated with Agency ID 8900 and shows 2,133,853,333.99 in total obligated dollars over the last 5 years. The award includes 105 recorded actions, producing an average action value of 20,322,412.7.

How to use this page

Use this page to review the award’s obligation total, action volume, and average action value within the stated 5-year window. It is useful for identifying the scale of activity tied to this award and for comparing it with other awards using the same fields and time frame.

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 = '89303523FEM400032'
    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 2,133,853,333.99 2.13 billion 105

Insight

Over the 5-year window, the obligation total for this award is fully concentrated in the Department of Energy, which accounts for $2.13 billion across 105 awards. This indicates the award activity captured here is not distributed across multiple agencies. The concentration at a single top agency suggests the award is primarily tied to Department of Energy procurement activity.

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 = '89303523FEM400032'
        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
UNITED CLEANUP OAK RIDGE LLC 8QJ69 2,133,853,333.99 2.13 billion 105

Insight

Obligations for PIID 89303523FEM400032 are fully concentrated in a single vendor over the 5-year window. UNITED CLEANUP OAK RIDGE LLC (CAGE 8QJ69) accounts for $2.13 billion across 105 awards, indicating sustained reliance on one contractor rather than a distributed vendor base. This level of concentration suggests limited vendor diversification within the observed award history.

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 = '89303523FEM400032'
    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 2,133,853,333.99 2.13 billion 105

Insight

Over the 5-year window, award activity for PIID 89303523FEM400032 is fully concentrated in NAICS 562910, Remediation Services. This NAICS accounts for $2.13 billion across 105 awards, indicating sustained reliance on a single service category rather than a diversified mix of requirements. The concentration suggests the award is aligned to a narrowly defined remediation mission with repeated obligation activity over time.

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 = '89303523FEM400032'
    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
F999 OTHER ENVIRONMENTAL SERVICES 2,133,853,333.99 2.13 billion 105

Insight

Over the 5-year window for award PIID 89303523FEM400032, obligations are fully concentrated in PSC F999, Other Environmental Services. This PSC accounts for $2.13 billion across 105 awards, indicating sustained use of a single service classification rather than a diversified PSC mix. The concentration suggests this award activity is heavily centered on environmental services requirements under F999.

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 = '89303523FEM400032'
    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
2023 925,100,912.34 925.10 million 16
2024 552,173,045.75 552.17 million 44
2025 656,579,375.90 656.58 million 45

Insight

Obligations on PIID 89303523FEM400032 are concentrated across three fiscal years, with the highest total in 2023 at $925.10 million across 16 awards. Obligations declined to $552.17 million in 2024 while award volume increased to 44, indicating a shift toward smaller individual awards or broader distribution of obligations. In 2025, obligations rebounded to $656.58 million with 45 awards, but remained below the 2023 peak.

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.