Award Number

Award Number 8900 / 89303723FEM400292 Federal Contract Action Summary (Last 10 Years)

Analysis of award number 89303723FEM400292 for agency 8900 over the last 10 years, showing 45 actions and $2.03 billion in total obligations.

This page summarizes federal procurement activity for award 89303723FEM400292 under agency ID 8900 across the last 10 years. The award records 45 actions and $2,031,304,261.49 in total obligated amount.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are shown as provided for the 10-year analysis window, with readable and exact totals included for the award record.

Agency ID
8900
PIID
89303723FEM400292
Type
Award
Total Obligated
2.03 billion
2,031,304,261.49
Actions
45
Average Action Value
45,140,094.70

Overview

Award 89303723FEM400292 is tied to agency ID 8900 and shows procurement activity over the last 10 years. The record includes 45 award actions and total obligated funding of $2,031,304,261.49, with an average action value of $45,140,094.70. This view is limited to the provided award-level summary and does not add transaction details beyond the dataset.

How to use this page

Use this page to review award-level obligation size and action volume for 89303723FEM400292. The figures support quick comparison against other awards, especially when evaluating total obligated value, action count, and average action value within the same 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 = '89303723FEM400292'
    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 2,031,304,261.49 2.03 billion 45

Insight

Over the 10-year window, the award is associated with a single top agency: the Department of Energy (Agency ID 8900), which accounts for $2.03 billion in obligated value across 45 awards. This indicates that the obligation profile is highly concentrated within one agency rather than distributed across multiple agencies. The combination of high total obligated value and a relatively limited award count suggests a sustained, material funding relationship 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 = '89303723FEM400292'
        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
SAVANNAH RIVER MISSION COMPLETION, LLC 8KB44 2,031,304,261.49 2.03 billion 45

Insight

SAVANNAH RIVER MISSION COMPLETION, LLC (CAGE 8KB44) accounts for 2.03 billion in obligated value across 45 awards over the 10-year window. This indicates a highly concentrated vendor profile for PIID 89303723FEM400292, with all listed top-vendor obligation attributed to a single contractor. The volume of awards relative to obligated value suggests repeated award activity under this vendor, warranting attention to dependency and continuation risk.

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 = '89303723FEM400292'
    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 2,031,304,261.49 2.03 billion 45

Insight

Award activity for PIID 89303723FEM400292 is fully concentrated in NAICS 562910, Remediation Services. Across the 10-year window, this category accounts for $2.03 billion across 45 awards, indicating a highly focused obligation pattern with no diversification across other NAICS codes in the provided data. This concentration suggests the award is structurally tied to remediation work rather than a mixed-services portfolio.

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 = '89303723FEM400292'
    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
R499 SUPPORT- PROFESSIONAL: OTHER 2,031,304,261.49 2.03 billion 45

Insight

Obligations are fully concentrated in PSC R499, Support- Professional: Other, with $2.03 billion across 45 awards over the 10-year window. This indicates a narrow service profile for this award record, with spending concentrated in a single professional support category rather than distributed across multiple PSCs. The award count suggests repeated activity under the same PSC, but no additional category mix is present in the provided data.

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 = '89303723FEM400292'
    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
2023 273,143,553.26 273.14 million 9
2024 752,810,419.03 752.81 million 16
2025 1,005,350,289.20 1.01 billion 20

Insight

Obligations for PIID 89303723FEM400292 increased sharply across the reported years, rising from $273.14 million in 2023 to $752.81 million in 2024 and $1.01 billion in 2025. Award volume also expanded from 9 awards to 16 and then 20, indicating both higher funding concentration and broader distribution over time. The 2025 level is the clear peak in the 10-year window provided, suggesting sustained growth rather than a one-year spike.

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.