This award record covers PIID DEAC0500OR22725 under agency ID 8900 for the last full year. The award shows total obligated funding of $2.749 billion across 38 actions, with an average action value of $72.34 million.
Award Number
Award Number 8900 / DEAC0500OR22725 Federal Contract Action Summary (Last Year)
Federal award number DEAC0500OR22725 for agency 8900 shows obligations and action activity over the last full year.
Totals reflect the provided analysis window and may not capture activity outside the last full year.
Overview
During the last full year, award DEAC0500OR22725 recorded 38 actions and $2,749,079,797.06 in total obligated funding. The average action value was $72,344,205.19, indicating substantial funding movement across the period. This page summarizes the award at the PIID level for agency ID 8900.
How to use this page
Use this page to review obligation volume and action activity for PIID DEAC0500OR22725 within the selected analysis window. The figures support quick comparison with other award records by total obligated amount, action count, and average action value.
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 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 | 2,749,079,797.06 | 2.75 billion | 38 |
Insight
Within the 1-year window, all reported obligations for PIID DEAC0500OR22725 are concentrated in a single top agency, the Department of Energy (agency 8900), which accounts for $2.75 billion across 38 awards. This indicates a highly focused obligation pattern with no diversification across other agencies in the provided data. The award activity is therefore dominated by DOE funding, suggesting the contract is primarily associated with that agency’s portfolio.
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 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 |
|---|---|---|---|---|
| UT BATTELLE LIMITED LIABILITY COMPANY | 1PW69 | 2,749,079,797.06 | 2.75 billion | 38 |
Insight
Over the 1-year window for PIID DEAC0500OR22725, obligations are fully concentrated with UT BATTELLE LIMITED LIABILITY COMPANY (CAGE 1PW69), which accounts for $2.75 billion across 38 awards. This indicates a highly concentrated vendor profile with no diversification among top vendors in the provided data. The award activity is distributed across multiple actions, but all reported obligations remain tied to a single vendor.
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 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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 2,749,079,797.06 | 2.75 billion | 38 |
Insight
Within the 1-year window for award DEAC0500OR22725 under agency 8900, obligations are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for $2.75 billion across 38 awards, indicating a highly concentrated procurement profile with all reported activity captured in a single NAICS code. The distribution suggests limited NAICS diversification for this award in the period reviewed.
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 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 | 2,749,079,797.06 | 2.75 billion | 38 |
Insight
Within the 1-year window for award DEAC0500OR22725, obligations are fully concentrated in PSC M181, Oper of Govt R&D GOCO Facilities, totaling $2.75 billion across 38 awards. This indicates a highly concentrated spend profile with no other PSCs represented in the provided data. The distribution suggests the award’s activity is centered on a single service category rather than being spread across multiple procurement functions.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 2,749,079,797.06 | 2.75 billion | 38 |
Insight
For FY2025, this award records $2.75 billion in obligated value across 38 actions, indicating a highly concentrated obligation profile. The average obligation per action is substantial, suggesting that a limited number of large obligations drove the annual total rather than broad distribution across many transactions. With only one year in the window, no year-over-year trend can be assessed from the provided data.
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.