Award Number

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

Federal award record for agency 8900 and PIID DEAC0500OR22725, covering actions and obligations over the last 10 years.

This award page summarizes procurement activity for award number DEAC0500OR22725 under agency ID 8900. Over the last 10 years, the award shows 472 actions and $22.27 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated amounts are shown as $22,265,383,961.09, with an average action value of $47,172,423.65.

Agency ID
8900
PIID
DEAC0500OR22725
Type
Award
Total Obligated
22.27 billion
22,265,383,961.09
Actions
472
Average Action Value
47,172,423.65

Overview

This award record reflects procurement activity tied to PIID DEAC0500OR22725 for agency ID 8900. The 10-year analysis window includes 472 award actions and total obligations of $22,265,383,961.09, with an average action value of $47,172,423.65.

How to use this page

Use this page to review the award’s obligation history and action volume within the selected 10-year window. The figures support basic comparison of overall scale, action frequency, and average action value for the 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 = 'DEAC0500OR22725'
    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 22,265,383,961.09 22.27 billion 472

Insight

Over the 10-year window, obligations for PIID DEAC0500OR22725 are fully concentrated in the Department of Energy, which accounts for $22.27 billion across 472 awards. This indicates a highly focused award footprint with no evidence here of interagency distribution. The volume of awards suggests repeated activity under a single agency relationship rather than broad dispersal across the federal customer base.

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 = 'DEAC0500OR22725'
        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
UT BATTELLE LIMITED LIABILITY COMPANY 1PW69 20,227,882,496.17 20.23 billion 419
UT BATTELLE LIMITED LIABILITY COMPANY 2,037,501,464.92 2.04 billion 53

Insight

Award obligations for PIID DEAC0500OR22725 are highly concentrated in UT BATTELLE LIMITED LIABILITY COMPANY, which accounts for 20.23 billion across 419 awards under CAGE 1PW69. An additional 2.04 billion across 53 awards is recorded to the same vendor name without a CAGE code, indicating the award history is dominated by one contractor identity with a smaller unmatched/uncoded segment. Overall, the distribution suggests sustained reliance on a single vendor over the 10-year window.

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 = 'DEAC0500OR22725'
    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
561210 FACILITIES SUPPORT SERVICES 22,265,383,961.09 22.27 billion 472

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, totaling $22.27 billion across 472 awards over the 10-year window. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The volume of awards alongside the large obligated amount suggests sustained use of this services category as the primary contracting vehicle for the entity.

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 = 'DEAC0500OR22725'
    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 22,265,383,961.09 22.27 billion 472

Insight

Over the 10-year window, obligations for award DEAC0500OR22725 are entirely concentrated in PSC M181, OPER OF GOVT R&D GOCO FACILITIES. This PSC accounts for $22.27 billion across 472 awards, indicating a highly focused procurement profile with no diversification reflected in the provided rows.

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 = 'DEAC0500OR22725'
    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 1,922,676,452.49 1.92 billion 47
2017 1,176,002,469.49 1.18 billion 64
2018 1,989,222,027.03 1.99 billion 58
2019 1,866,276,814.51 1.87 billion 53
2020 2,302,920,210.77 2.30 billion 61
2021 2,481,157,307.97 2.48 billion 45
2022 2,339,275,018.52 2.34 billion 39
2023 2,867,259,659.74 2.87 billion 36
2024 2,571,514,203.51 2.57 billion 31
2025 2,749,079,797.06 2.75 billion 38

Insight

Obligations for PIID DEAC0500OR22725 vary between about $1.18 billion and $2.87 billion annually over the 2016–2025 window, indicating a sustained high-dollar award profile rather than a single-year spike. Funding was lowest in 2017, then generally increased from 2018 onward, peaking in 2023 before easing in 2024 and rising again in 2025. Award counts do not track obligations proportionally: volume fell from 64 awards in 2017 to 31 in 2024, while obligated dollars remained above $2.3 billion in most years.

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.