Award Number

Award Number 8900 / DESC0012704 Federal Contract Action Summary (Last 10 Years)

FPDS award number DESC0012704 for agency 8900 shows obligation and action history over the last 10 years.

This page summarizes award number DESC0012704 for agency ID 8900 across the last 10 years. The award shows 298 actions and total obligations of $7.21 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values reflect the provided readable and exact totals for the selected analysis window.

Agency ID
8900
PIID
DESC0012704
Type
Award
Total Obligated
7.21 billion
7,209,259,059.77
Actions
298
Average Action Value
24,192,144.50

Overview

Over the last 10 years, award number DESC0012704 recorded 298 award actions with total obligations of 7,209,259,059.77. The average action value was 24,192,144.5, indicating a high-dollar award with repeated activity across the period.

How to use this page

Use this page to review obligation volume and action count for DESC0012704 within agency 8900. The figures support basic award-level analysis, trend review, and cross-reference work in FPDS.

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 = 'DESC0012704'
    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,209,259,059.77 7.21 billion 298

Insight

For PIID DESC0012704 over the 10-year window, obligations are fully concentrated in the Department of Energy. ENERGY, DEPARTMENT OF accounts for $7.21 billion across 298 awards, indicating a sustained and material funding relationship within a single agency. This concentration suggests limited cross-agency distribution for this PIID in the reviewed period.

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 = 'DESC0012704'
        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
BROOKHAVEN SCIENCE ASSOCIATES, LLC 4KUZ2 6,472,276,644.73 6.47 billion 262
BROOKHAVEN SCIENCE ASSOCIATES, LLC 736,982,415.04 736.98 million 36

Insight

BROOKHAVEN SCIENCE ASSOCIATES, LLC is the dominant recipient in this 10-year window, accounting for $6.47 billion across 262 awards. A second set of records for the same vendor name, without a CAGE code, adds another $736.98 million across 36 awards, indicating the obligation base is highly concentrated in a single vendor identity with a smaller additional record set under a non-matched or unreported identifier. Overall, obligations under PIID DESC0012704 are heavily concentrated with limited vendor dispersion.

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 = 'DESC0012704'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 7,209,259,059.77 7.21 billion 298

Insight

Over the 10-year window, obligations for PIID DESC0012704 are fully concentrated in NAICS 541712, with $7.21 billion obligated across 298 awards. This indicates a single-industry award profile, with no evidence in the provided data of diversification across other NAICS codes. The volume of awards suggests sustained procurement activity within research and development in the physical, engineering, and life sciences (except biotechnology).

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 = 'DESC0012704'
    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
M1HA OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES 7,209,259,059.77 7.21 billion 298

Insight

All reported obligations for PIID DESC0012704 in the 10-year window are concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities. This PSC accounts for 298 awards and $7.21 billion in total obligations, indicating a highly focused award profile rather than a diversified PSC distribution. The concentration suggests this contract action is primarily associated with GOCO R&D facility operations.

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 = 'DESC0012704'
    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 723,732,895.09 723.73 million 33
2017 371,091,249.21 371.09 million 36
2018 642,262,402.51 642.26 million 33
2019 594,978,490.58 594.98 million 19
2020 696,180,662.91 696.18 million 26
2021 777,092,381.56 777.09 million 20
2022 873,406,089.00 873.41 million 32
2023 885,000,338.21 885.00 million 30
2024 745,152,067.67 745.15 million 32
2025 900,362,483.03 900.36 million 37

Insight

Obligations for DESC0012704 fluctuate but remain concentrated at high levels across the 10-year window, ranging from 371.09 million in FY 2017 to 900.36 million in FY 2025. After a low point in FY 2017, obligated dollars generally trended upward through FY 2023, dipped in FY 2024, and then reached the period high in FY 2025. Award counts vary between 19 and 37 annually, indicating moderate volume dispersion without a clear one-to-one relationship to obligated dollars.

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.