Award Number

Award Number 8900 / DEAC3608GO28308 Federal Contract Action Summary (Last Year)

Award number DEAC3608GO28308 for agency 8900 shows 35 recorded actions and $723.77 million obligated in the last full year.

This page summarizes the FPDS record for award DEAC3608GO28308 under agency ID 8900. In the last full year, the award shows 35 actions and $723,770,861.39 in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year analysis window and the exact obligated amount recorded for this award.

Agency ID
8900
PIID
DEAC3608GO28308
Type
Award
Total Obligated
723.77 million
723,770,861.39
Actions
35
Average Action Value
20,679,167.47

Overview

Award DEAC3608GO28308 is associated with agency ID 8900 and recorded 35 award actions in the last full year. The total obligated amount is $723,770,861.39, with an average action value of $20,679,167.47. These figures describe the award-level obligation pattern over the analysis window.

How to use this page

Use this page to review the award's obligation total, action count, and average action value for the last full year. The record is useful for procurement analysis, award tracking, and comparing activity across similar FPDS entries.

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 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 723,770,861.39 723.77 million 35

Insight

Within the 1-year window for PIID DEAC3608GO28308, all reported obligations are concentrated in the Department of Energy (Agency ID 8900). The award accounts for 35 actions totaling $723.77 million, indicating a high degree of agency-level concentration rather than distribution across multiple agencies. This pattern suggests the award is primarily associated with a single departmental customer and limited cross-agency spread.

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 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
ALLIANCE FOR SUSTAINABLE ENERGY, LLC 50B53 723,770,861.39 723.77 million 35

Insight

Over the past year, obligations for PIID DEAC3608GO28308 were concentrated in a single vendor, ALLIANCE FOR SUSTAINABLE ENERGY, LLC (CAGE 50B53). This vendor accounted for $723.77 million across 35 awards, indicating a highly concentrated award pattern within the observed window. No other vendors are listed, so the available data suggests this obligation base is entirely dominated by one recipient.

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 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
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY 723,770,861.39 723.77 million 35

Insight

Award activity is fully concentrated in NAICS 541711, Research and Development in Biotechnology, which accounts for the entire 1-year obligated total of $723.77 million across 35 awards. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The volume of awards suggests repeated procurement within a single biotechnology R&D category rather than a broadly distributed obligation pattern.

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 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
M181 OPER OF GOVT R&D GOCO FACILITIES 723,770,861.39 723.77 million 35

Insight

Within the 1-year window for award DEAC3608GO28308, obligations are fully concentrated in PSC M181, “OPER OF GOVT R&D GOCO FACILITIES,” totaling $723.77 million across 35 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The average obligated value is approximately $20.68 million per award, suggesting substantial individual award activity within this category.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 723,770,861.39 723.77 million 35

Insight

For PIID DEAC3608GO28308 over the 1-year window, obligations are concentrated in a single reporting year: FY 2025 accounts for $723.77 million across 35 awards. This indicates a high level of annual funding activity within the observed period, with no additional years available to assess directional change. The award volume suggests the obligation total is distributed across multiple actions rather than a single isolated transaction.

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.