This award page summarizes federal procurement activity for award number 89303723FEM400292 under agency ID 8900 during the last full year. The record reflects total obligated amount of 1,005,350,289.2 across 20 actions, with an average action value of 50,267,514.46.
Award Number
Award Number 8900 / 89303723FEM400292 Federal Contract Action Summary (Last Year)
Award number 89303723FEM400292 for agency 8900 shows last full year obligation activity of 1.01 billion across 20 award actions.
Totals are based on the last full year analysis window and reflect obligated dollars and action count for this award record.
Overview
In the last full year, award number 89303723FEM400292 recorded 20 award actions and total obligated funding of 1,005,350,289.2. The average value per action was 50,267,514.46, indicating a small number of large-value actions within the period. This page is tied to agency ID 8900 and is limited to the metrics provided for the specified award record.
How to use this page
Use this page to review the obligation total, action count, and average action value for award number 89303723FEM400292. It is suitable for tracking annual activity patterns for the award within the last full year analysis window. For comparisons, use the same award number or agency ID and keep the analysis window consistent.
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 1 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 | 1,005,350,289.20 | 1.01 billion | 20 |
Insight
Within the 1-year window for award PIID 89303723FEM400292, obligations are fully concentrated in a single agency: the Department of Energy (agency ID 8900). DOE accounts for $1.01 billion across 20 awards, indicating all observed obligated activity in this view is tied to one agency rather than distributed across multiple agencies. This concentration suggests the award’s funding pattern is agency-specific and heavily centralized within 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 1 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 | 1,005,350,289.20 | 1.01 billion | 20 |
Insight
Obligations for this award are highly concentrated in a single vendor, SAVANNAH RIVER MISSION COMPLETION, LLC (CAGE 8KB44), which accounts for the full reported $1.01 billion in obligations over 20 awards in the 1-year window. This indicates a dominant sole recipient pattern rather than a distributed vendor base. The concentration suggests the award activity is heavily dependent on one contractor for this period.
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 1 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 | 1,005,350,289.20 | 1.01 billion | 20 |
Insight
Over the 1-year window, obligations for this award are fully concentrated in NAICS 562910, Remediation Services. The single recorded NAICS accounts for $1.01 billion across 20 awards, indicating a narrow and highly specialized distribution of obligated funding. This concentration suggests the award activity is focused exclusively on remediation work within the observed period.
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 1 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 | 1,005,350,289.20 | 1.01 billion | 20 |
Insight
Over the past 1 year, obligations for award PIID 89303723FEM400292 are fully concentrated in PSC R499, Support- Professional: Other. This PSC accounts for 100% of the reported obligated value, totaling $1.01 billion across 20 awards. The distribution indicates a highly focused spend profile with no diversification across other PSC categories 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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 1,005,350,289.20 | 1.01 billion | 20 |
Insight
Over the 1-year window, this award reflects $1.01 billion in total obligated dollars across 20 awards in FY 2025. The activity is highly concentrated, with a very large obligated value tied to a relatively small number of awards. This pattern indicates a high-value, limited-award distribution rather than broad transactional dispersion.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.