Award Number

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

Award number DEAC3010CC40017 under agency ID 8900 shows 156 recorded actions over the last 5 years.

This award record covers PIID DEAC3010CC40017 for agency ID 8900 during the last 5 years. Total obligated dollars are 2.21 billion across 156 actions, for an average action value of 14,147,318.14.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals reflect the provided exact amount of 2,206,981,630 and the analysis window is limited to the last 5 years.

Agency ID
8900
PIID
DEAC3010CC40017
Type
Award
Total Obligated
2.21 billion
2,206,981,630.00
Actions
156
Average Action Value
14,147,318.14

Overview

PIID DEAC3010CC40017 is the award identifier for this federal procurement record. In the last 5 years, the award has 156 actions and 2,206,981,630 in total obligated dollars, with an average action value of 14,147,318.14. The data are tied to agency ID 8900 and are limited to the provided analysis window.

How to use this page

Use this page to review the award-level obligation profile for DEAC3010CC40017 and compare action count, total obligated dollars, and average action value. The record is useful for identifying overall award activity within the last 5 years and for linking this award number to related procurement 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 = 'DEAC3010CC40017'
    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,206,981,630.00 2.21 billion 156

Insight

Over the 5-year window, obligations for PIID DEAC3010CC40017 are fully concentrated under the Department of Energy (agency ID 8900), with no other agencies represented in the provided data. The award accounts for $2.21 billion across 156 awards, indicating sustained and repeated funding activity within a single agency. This concentration suggests the procurement relationship is agency-specific rather than broadly distributed across the federal government.

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 = 'DEAC3010CC40017'
        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
FLUOR-B&W PORTSMOUTH LLC 5SMD3 2,206,981,630.00 2.21 billion 156

Insight

FLUOR-B&W PORTSMOUTH LLC is the sole top vendor in the 5-year window for PIID DEAC3010CC40017, indicating full concentration of obligations with a single contractor in the available data. The vendor received 156 awards totaling $2.21 billion, suggesting a sustained and highly recurring award relationship rather than a dispersed vendor base. This pattern indicates limited vendor diversification within this award scope.

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 = 'DEAC3010CC40017'
    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,206,981,630.00 2.21 billion 156

Insight

Obligations for this award are fully concentrated in NAICS 562910, Remediation Services, with $2.21 billion across 156 awards in the 5-year window. This indicates a highly focused contracting profile centered on remediation work, with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests repeated procurement activity within a single service category rather than broad industrial 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 = 'DEAC3010CC40017'
    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
P500 SALVAGE- DEMOLITION OF STRUCTURES/FACILITIES (OTHER THAN BUILDINGS) 2,206,981,630.00 2.21 billion 156

Insight

PSC P500 accounts for the entire reported obligation base for this award over the 5-year window, with $2.21 billion across 156 actions. This indicates highly concentrated contracting activity in salvage and demolition of structures/facilities, with no other PSCs present in the provided results. The volume of actions suggests repeated obligations under a single product/service category rather than a diversified PSC distribution.

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 = 'DEAC3010CC40017'
    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 507,302,741.05 507.30 million 28
2022 388,919,415.38 388.92 million 41
2023 500,231,860.11 500.23 million 38
2024 559,806,766.06 559.81 million 31
2025 250,720,847.40 250.72 million 18

Insight

Obligations for PIID DEAC3010CC40017 are concentrated in a relatively narrow band over 2021–2024, ranging from $388.92 million to $559.81 million annually, before declining to $250.72 million in 2025. Award activity is also uneven, peaking at 41 awards in 2022 and then trending down to 18 awards in 2025, indicating a lower volume of actions in the most recent year. The 2024 peak in obligated dollars, followed by the 2025 decrease, suggests a recent contraction after several years of sustained high-value activity.

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.