Award Number

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

Federal award record for award number DEEM0004083 under agency ID 8900, summarizing obligations and actions over the last 10 years.

This page summarizes the federal procurement activity associated with award number DEEM0004083 for agency ID 8900 over the last 10 years. The record shows total obligated dollars of 2.30 billion across 295 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar totals reflect the analysis window provided and may differ from current FPDS values if later corrections were made.

Agency ID
8900
PIID
DEEM0004083
Type
Award
Total Obligated
2.30 billion
2,302,392,653.56
Actions
295
Average Action Value
7,804,720.86

Overview

Award number DEEM0004083 is linked to agency ID 8900 and shows 2,302,392,653.56 in total obligated dollars within the last 10 years. The award includes 295 actions, with an average action value of 7,804,720.86. This page is designed to summarize the award-level procurement record in a concise format.

How to use this page

Use this page to review high-level award activity, including total obligations, action count, and average action value. It is useful for filtering, comparing, or citing the award record before moving to more detailed transaction-level analysis.

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 = 'DEEM0004083'
    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,302,392,653.56 2.30 billion 295

Insight

Over the 10-year window for PIID DEEM0004083, all reported obligations are concentrated within the Department of Energy. The Department of Energy accounts for $2.30 billion across 295 awards, indicating a highly concentrated award distribution under this PIID.

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 = 'DEEM0004083'
        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
FLUOR IDAHO, LLC 6GGS3 1,804,206,613.36 1.80 billion 268
FLUOR IDAHO, LLC 498,186,040.20 498.19 million 27

Insight

Award activity for PIID DEEM0004083 is highly concentrated in FLUOR IDAHO, LLC. The vendor appears in two records, with 268 awards totaling $1.80 billion under CAGE 6GGS3 and an additional 27 awards totaling $498.19 million without a CAGE code, indicating the bulk of obligation is concentrated in a single vendor profile. Over the 10-year window, this pattern suggests sustained reliance on the same vendor across a large number of awards.

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 = 'DEEM0004083'
    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,302,392,653.56 2.30 billion 295

Insight

Obligations for PIID DEEM0004083 are fully concentrated in NAICS 562910, Remediation Services, with $2.30 billion across 295 awards over the 10-year window. This indicates a highly focused award profile with no evidence of NAICS diversification in the provided data. The volume of awards alongside the large obligated amount suggests sustained procurement activity within a single service category.

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 = 'DEEM0004083'
    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
F999 OTHER ENVIRONMENTAL SERVICES 2,302,392,653.56 2.30 billion 295

Insight

The award is entirely concentrated in PSC F999, Other Environmental Services, with $2.30 billion obligated across 295 awards over the 10-year window. This indicates a highly focused award mix under PIID DEEM0004083, with obligations consistently attributed to a single PSC category rather than being distributed across multiple service lines.

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 = 'DEEM0004083'
    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
2016 498,186,040.20 498.19 million 25
2017 242,231,059.13 242.23 million 42
2018 434,749,722.86 434.75 million 45
2019 371,502,550.99 371.50 million 52
2020 391,992,106.53 391.99 million 82
2021 391,857,491.62 391.86 million 42
2022 -28,126,317.77 -28.13 million 7

Insight

Obligations for PIID DEEM0004083 were highly concentrated in 2016-2021, with annual totals ranging from $242.23 million to $498.19 million and no single year showing a sustained upward or downward trajectory. Award activity increased from 25 awards in 2016 to a peak of 82 in 2020, then declined to 42 in 2021 and 7 in 2022, indicating a shift from higher award volume to lower activity at the end of the period. The 2022 total obligated of -$28.13 million indicates net deobligations or adjustments, which materially changes the overall funding pattern in the final year.

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.