Award Number

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

Federal procurement summary for award DEAC0205CH11231 under agency 8900, covering the last full year of activity.

This page summarizes award DEAC0205CH11231 for agency 8900 over the last full year. The award recorded 48 actions and $1.247 billion in total obligations.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are shown in both readable and exact form, with average action value calculated from the reported action count and obligated amount.

Agency ID
8900
PIID
DEAC0205CH11231
Type
Award
Total Obligated
1.25 billion
1,247,007,097.49
Actions
48
Average Action Value
25,979,314.53

Overview

For the last full year, award DEAC0205CH11231 under agency 8900 shows 48 award actions and total obligations of 1,247,007,097.49. The average action value was 25,979,314.53, indicating a high-dollar award with repeated activity during the period. This page is organized for quick review of the award number and its obligation profile.

How to use this page

Use this page to review year-over-year activity for award DEAC0205CH11231 and to compare obligation levels against other awards in agency 8900. The action count and average action value help frame how frequently the award changed and the scale of each recorded action.

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 = 'DEAC0205CH11231'
    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,247,007,097.49 1.25 billion 48

Insight

All reported obligations in the 1-year window are concentrated in the Department of Energy (Agency ID 8900), which accounts for 100% of the observed obligated amount for PIID DEAC0205CH11231. The award activity is limited to 48 awards totaling $1.25 billion, indicating a highly concentrated funding pattern within a single agency. No cross-agency distribution is present in the provided data.

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 = 'DEAC0205CH11231'
        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
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA 1GGD0 1,247,007,097.49 1.25 billion 48

Insight

Obligations in the 1-year window are fully concentrated with a single vendor, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1GGD0). This vendor received 48 awards totaling $1.25 billion, indicating a highly concentrated award pattern with no other vendors represented in the provided data. The volume and value suggest this vendor is the dominant recipient for PIID DEAC0205CH11231 during the period reviewed.

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 = 'DEAC0205CH11231'
    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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 1,247,007,097.49 1.25 billion 48

Insight

Award activity is fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for the entire reported 1-year obligation total of $1.25 billion across 48 awards. This indicates a highly specialized award profile with no observed diversification across other NAICS codes in the provided data.

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 = 'DEAC0205CH11231'
    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 1,247,007,097.49 1.25 billion 48

Insight

Obligations under this award are fully concentrated in PSC M181, Operating of Government R&D GOCO Facilities, totaling $1.25 billion across 48 actions in the 1-year window. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided data. The volume of actions relative to obligated dollars suggests repeated funding activity within the same service 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 = 'DEAC0205CH11231'
    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,247,007,097.49 1.25 billion 48

Insight

Over the 1-year window, this award recorded 48 actions with total obligated amount of $1.25 billion in FY 2025. Obligations are concentrated in a single year, indicating that funding activity for this PIID was heavily weighted toward 2025 rather than distributed across multiple years. This pattern suggests a high-dollar, relatively limited-transaction award profile within the period reviewed.

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.