This page presents obligation and action trends for award DEAC3608GO28308 in agency ID 8900. Over the last 10 years, the award recorded 401 actions and $7.16 billion in total obligated amount.
Award Number
Award Number 8900 / DEAC3608GO28308 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number DEAC3608GO28308 under agency ID 8900, covering activity over the last 10 years.
Totals reflect the stated analysis window and use the provided exact obligation value of 7163061681.04 and average action value of 17862996.71.
Overview
Award number DEAC3608GO28308 is associated with agency ID 8900 and shows 401 recorded actions in the last 10 years. Total obligated amount is 7.16 billion dollars, with an exact value of 7163061681.04 and an average action value of 17862996.71.
How to use this page
Use this page to review the award-level obligation profile and the volume of recorded actions for DEAC3608GO28308. The figures support basic screening, trend review, and comparison within the selected 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 = 'DEAC3608GO28308'
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 | 7,163,061,681.04 | 7.16 billion | 401 |
Insight
Obligations for PIID DEAC3608GO28308 over the 10-year window are fully concentrated in the Department of Energy, which accounts for the entire reported total of $7.16 billion across 401 awards. This indicates a single-agency funding profile with no diversification across other agencies in the provided data. The volume of awards suggests repeated obligation activity within the same agency rather than isolated funding events.
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 = 'DEAC3608GO28308'
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 |
|---|---|---|---|---|
| ALLIANCE FOR SUSTAINABLE ENERGY, LLC | 50B53 | 6,673,037,053.11 | 6.67 billion | 362 |
| ALLIANCE FOR SUSTAINABLE ENERGY, LLC | 490,024,627.93 | 490.02 million | 39 |
Insight
Over the 10-year window, obligations under PIID DEAC3608GO28308 are heavily concentrated with ALLIANCE FOR SUSTAINABLE ENERGY, LLC, which accounts for 362 awards and $6.67 billion. A second row for the same vendor name, without a CAGE code, adds 39 awards and $490.02 million, indicating the award activity is largely concentrated with a single vendor record but split across two reported entries.
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 = 'DEAC3608GO28308'
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 |
|---|---|---|---|---|
| 541711 | RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY | 7,163,061,681.04 | 7.16 billion | 401 |
Insight
Over the 10-year window, obligations for this award are fully concentrated in NAICS 541711, Research and Development in Biotechnology. The single reported NAICS accounts for $7.16 billion across 401 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data. This concentration suggests the award has been used consistently for biotechnology R&D activity over time.
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 = 'DEAC3608GO28308'
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 |
|---|---|---|---|---|
| M181 | OPER OF GOVT R&D GOCO FACILITIES | 7,163,061,681.04 | 7.16 billion | 401 |
Insight
Obligations under PIID DEAC3608GO28308 are fully concentrated in PSC M181, Oper of Govt R&D GOCO Facilities, with $7.16 billion obligated across 401 awards over the 10-year window. This indicates a highly focused procurement profile centered on government-owned, contractor-operated research and development facility operations. No other PSCs are present in the provided data for this query context.
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 = 'DEAC3608GO28308'
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 | 442,192,174.32 | 442.19 million | 35 |
| 2017 | 362,759,214.91 | 362.76 million | 38 |
| 2018 | 488,879,391.38 | 488.88 million | 34 |
| 2019 | 468,239,598.41 | 468.24 million | 32 |
| 2020 | 613,075,159.11 | 613.08 million | 39 |
| 2021 | 741,160,100.17 | 741.16 million | 34 |
| 2022 | 951,392,417.10 | 951.39 million | 49 |
| 2023 | 1,123,048,200.16 | 1.12 billion | 53 |
| 2024 | 1,248,544,564.09 | 1.25 billion | 52 |
| 2025 | 723,770,861.39 | 723.77 million | 35 |
Insight
Obligations for this award increased substantially over the period, rising from $442.19 million in 2016 to a peak of $1.25 billion in 2024, before declining to $723.77 million in 2025. Award counts were relatively stable in the mid-30s through 2021, then increased to the high-40s and low-50s in 2022–2024, indicating both larger annual funding levels and a broader distribution of awards in the later years. The pattern suggests a clear upward shift in funding intensity through 2024, followed by a partial contraction in 2025.
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.