Award Number

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

Federal procurement profile for award number DEAC0500OR22725 under agency ID 8900, showing obligations and action activity over the last 5 years.

This page summarizes award-level activity for PIID DEAC0500OR22725 across the last 5 years. It shows 189 award actions with total obligations of 13.01 billion and an average action value of 68,826,909.98.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may include multiple award actions tied to the same award number.

Agency ID
8900
PIID
DEAC0500OR22725
Type
Award
Total Obligated
13.01 billion
13,008,285,986.80
Actions
189
Average Action Value
68,826,909.98

Overview

PIID DEAC0500OR22725 is associated with agency ID 8900 and shows sustained award activity in the last 5 years. The award records 189 actions and $13,008,285,986.80 in total obligated amount, with an average action value of $68,826,909.98. This profile is useful for reviewing award-level procurement volume and action history.

How to use this page

Use this page to track obligation totals and action counts for DEAC0500OR22725 within the selected analysis window. It can support contract research, spend review, and award comparisons within agency ID 8900.

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 5 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 13,008,285,986.80 13.01 billion 189

Insight

Over the past 5 years, obligations for PIID DEAC0500OR22725 are fully concentrated within the Department of Energy, which accounts for the entire reported total of $13.01 billion across 189 awards. This indicates no cross-agency distribution in the provided data and suggests a highly concentrated award history within a single department. The award pattern reflects sustained funding activity rather than broad agency dispersion.

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 5 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 13,008,285,986.80 13.01 billion 189

Insight

UT Battelle Limited Liability Company is the sole listed top vendor for this award in the 5-year window, accounting for $13.01 billion across 189 awards. This indicates very high vendor concentration and a distribution heavily skewed to a single recipient. The large award count suggests repeated obligation activity rather than a one-time transaction.

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 5 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 13,008,285,986.80 13.01 billion 189

Insight

Obligations for this award are concentrated in NAICS 561210, Facilities Support Services, which accounts for $13.01 billion across 189 awards in the 5-year window. This indicates a strong concentration in a single support-services category rather than a diversified NAICS mix. The volume of awards paired with the high obligated amount suggests sustained procurement activity under this NAICS code.

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 5 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 13,008,285,986.80 13.01 billion 189

Insight

Over the 5-year window, obligations for award DEAC0500OR22725 under agency 8900 are entirely concentrated in PSC M181, OPER OF GOVT R&D GOCO FACILITIES. This PSC accounts for the full $13.01 billion obligated across 189 awards, indicating a highly focused procurement profile with no distribution across other PSCs in the provided data.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 are consistently concentrated at roughly $2.3 billion to $2.9 billion annually over the five-year window, indicating a sustained high-value award profile. Annual obligated amounts peaked in 2023 at $2.87 billion, declined in 2024 to $2.57 billion, and increased again in 2025 to $2.75 billion. Award counts declined from 45 in 2021 to 31 in 2024 before rebounding to 38 in 2025, suggesting a smaller number of awards carried the majority of obligation volume throughout the period.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.