This page summarizes federal procurement activity tied to award number DESC0004645 within agency ID 8900. The record reflects $2,603,877,925.32 in total obligated funding across 252 actions.
Award Number
Award Number 8900 / DESC0004645 Federal Contract Action Summary (Last 10 Years)
Award number DESC0004645 for agency ID 8900 shows 252 recorded actions over the last 10 years, with total obligated funding of $2.60 billion.
Figures are based on the last 10 years of available award action data, with an average action value of $10,332,848.91.
Overview
Award number DESC0004645 is the relevant procurement identifier for agency ID 8900 in this analysis. Over the last 10 years, the award shows 252 actions and $2,603,877,925.32 in total obligated funding, indicating sustained activity across the period.
How to use this page
Use this page to review the award-level funding profile, action volume, and average action value for DESC0004645. The figures support basic comparison, trend review, and citation in procurement analysis, while staying limited to the provided award data.
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 = 'DESC0004645'
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,603,877,925.32 | 2.60 billion | 252 |
Insight
Over the 10-year window, obligations for PIID DESC0004645 are fully concentrated within the Department of Energy (Agency ID 8900), which accounts for the entire reported total of $2.60 billion across 252 awards. This indicates a single-agency funding pattern with no visible distribution across other agencies in the provided data. The volume of awards suggests repeated use of this PIID within the same department rather than broad interagency adoption.
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 = 'DESC0004645'
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 |
|---|---|---|---|---|
| URS | 64BY8 | 2,085,890,938.56 | 2.09 billion | 176 |
| URS | 476,181,700.99 | 476.18 million | 62 | |
| UCOR LLC | 64BY8 | 41,805,285.77 | 41.81 million | 14 |
Insight
Obligations for PIID DESC0004645 are highly concentrated with URS accounting for the vast majority of recorded spend across the 10-year window. URS with CAGE 64BY8 received $2.09 billion across 176 awards, while URS with no CAGE listed accounted for an additional $476.18 million across 62 awards. UCOR LLC, also tied to CAGE 64BY8, received a much smaller $41.81 million across 14 awards, indicating limited vendor distribution beyond the principal incumbent.
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 = 'DESC0004645'
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,603,877,925.32 | 2.60 billion | 252 |
Insight
Over the 10-year window for award DESC0004645, obligations are fully concentrated in NAICS 562910, Remediation Services, with $2.60 billion across 252 awards. This indicates a highly focused spend profile with no diversification across additional NAICS codes in the provided data. The volume of awards suggests repeated procurement activity within the same service category rather than a broad mix of contract types.
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 = 'DESC0004645'
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,603,877,925.32 | 2.60 billion | 252 |
Insight
Over the 10-year window, PSC F999 (Other Environmental Services) accounts for the full reported obligation total for this award, indicating complete concentration in a single product/service category. The award reflects 252 actions with $2.60 billion obligated, suggesting repeated funding within the same PSC rather than a broad distribution across multiple categories. This concentration indicates that the award’s obligations are heavily focused on environmental services under PSC 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 = 'DESC0004645'
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 | 476,175,200.99 | 476.18 million | 58 |
| 2017 | 244,591,760.52 | 244.59 million | 50 |
| 2018 | 471,077,793.46 | 471.08 million | 44 |
| 2019 | 382,391,612.74 | 382.39 million | 36 |
| 2020 | 518,822,945.48 | 518.82 million | 25 |
| 2021 | 469,188,974.09 | 469.19 million | 23 |
| 2022 | 35,807,120.44 | 35.81 million | 12 |
| 2023 | -1,070,197.60 | -1.07 million | 3 |
| 2025 | 6,892,715.20 | 6.89 million | 1 |
Insight
Obligations under PIID DESC0004645 are heavily concentrated in the earlier years of the 10-year window, with annual obligations ranging from $244.59 million to $518.82 million from 2016 through 2021. Award activity also declined over that period, falling from 58 awards in 2016 to 23 in 2021, indicating fewer, but still substantial, transactions. In 2022 the obligated amount dropped sharply to $35.81 million, followed by a negative obligated value in 2023 and only $6.89 million across one award in 2025, suggesting a marked end-stage decline in spending and award frequency.
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.