Award Number

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

Federal procurement award page for award number DEAC0207CH11359 under Agency ID 8900, summarizing last full year obligated activity.

This page summarizes award-level obligation activity for PIID DEAC0207CH11359 over the last full year. The record shows 4 award actions and total obligated amounts of -328.17 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided readable amount of -328.17 million and exact amount of -328166596.25 for the analysis window.

Agency ID
8900
PIID
DEAC0207CH11359
Type
Award
Total Obligated
-328.17 million
-328,166,596.25
Actions
4
Average Action Value
-82,041,649.06

Overview

For the last full year, award number DEAC0207CH11359 under Agency ID 8900 recorded 4 award actions and total obligated activity of -328,166,596.25. The average action value was -82,041,649.06, indicating substantial negative obligation movement across the period. This page is limited to the values provided for the award and analysis window.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for DEAC0207CH11359. The negative total obligated amount should be interpreted in the context of the underlying procurement records and action history available for this award.

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 = 'DEAC0207CH11359'
    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 -328,166,596.25 -328.17 million 4

Insight

Within the 1-year window for PIID DEAC0207CH11359, all reported obligation activity is concentrated in a single agency: the Department of Energy (Agency ID 8900). Four award records are associated with this agency, with total obligated dollars of -$328.17 million, indicating a substantial net deobligation or downward adjustment over the period. No other agencies are reflected in the provided rows, so the obligation profile is fully concentrated with 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 = 'DEAC0207CH11359'
        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
FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY 4GUN4 -328,166,596.25 -328.17 million 4

Insight

Within the 1-year window for PIID DEAC0207CH11359 under agency 8900, obligations are fully concentrated with FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY (CAGE 4GUN4). This vendor accounts for four awards totaling -$328.17 million in obligated amount, indicating all identified activity in this section is tied to a single recipient. The negative obligated total should be interpreted in the context of deobligations or funding adjustments reflected in the queried 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 = 'DEAC0207CH11359'
    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 -328,166,596.25 -328.17 million 4

Insight

Award activity for PIID DEAC0207CH11359 over the last 1 year is fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. The four reported awards under this code account for the entire visible obligation total, which is a net negative $328.17 million. This indicates a highly concentrated distribution with negative obligated value across the reporting window.

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 = 'DEAC0207CH11359'
    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 -328,166,596.25 -328.17 million 4

Insight

Obligations for PIID DEAC0207CH11359 are fully concentrated in PSC M181, “OPER OF GOVT R&D GOCO FACILITIES,” with 4 awards totaling -$328.17 million over the past year. This indicates a single-service concentration rather than a diversified PSC mix. The negative obligated amount suggests net deobligation activity within this PSC during the period.

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 = 'DEAC0207CH11359'
    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 -328,166,596.25 -328.17 million 4

Insight

For PIID DEAC0207CH11359 over the 1-year window, reported obligations are concentrated entirely in FY 2025, with 4 awards totaling -328.17 million. This indicates no observable year-over-year distribution within the provided period and a high degree of obligation concentration in a single fiscal year. The negative obligated amount should be interpreted as a net downward adjustment in recorded obligations for that year.

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.