This award record shows 247 actions over the last 10 years with total obligations of $7.08 billion. The average action value is $28,670,582.30.
Award Number
Award Number 8900 / DEAC2701RV14136 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number DEAC2701RV14136 under agency ID 8900, covering activity in the last 10 years.
Totals reflect the provided analysis window and the exact obligated amount of $7,081,633,828.18.
Overview
The award number DEAC2701RV14136 is associated with 247 recorded actions in the last 10 years. Across that period, the award totals $7,081,633,828.18 in obligations, with an average action value of $28,670,582.30.
How to use this page
Use this page to review the overall obligation level and action volume tied to award DEAC2701RV14136. The figures provide a concise view of activity concentration for the selected analysis window.
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 = 'DEAC2701RV14136'
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,081,633,828.18 | 7.08 billion | 247 |
Insight
Over the 10-year window, obligations for PIID DEAC2701RV14136 are fully concentrated within the Department of Energy, which accounts for $7.08 billion across 247 awards. This indicates a highly centralized award profile with no visible distribution across other agencies in the provided data. The concentration suggests the award activity is driven entirely by a single parent agency relationship.
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 = 'DEAC2701RV14136'
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 |
|---|---|---|---|---|
| BECHTEL NATIONAL, INC | 1S307 | 6,173,776,404.40 | 6.17 billion | 222 |
| BECHTEL NATIONAL, INC | 907,857,423.78 | 907.86 million | 25 |
Insight
Award obligations under PIID DEAC2701RV14136 are heavily concentrated with BECHTEL NATIONAL, INC, which accounts for $6.17 billion across 222 awards under CAGE 1S307. An additional $907.86 million is recorded to the same vendor name without a CAGE code across 25 awards, indicating the award base is dominated by one vendor identity with limited distribution across entries. Overall, the 10-year pattern reflects a strong concentration of obligated value in a single vendor, with no evidence here of broader 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 = 'DEAC2701RV14136'
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 |
|---|---|---|---|---|
| 234930 | INDUSTRIAL NONBUILDING STRUCTURE CONSTRUCTION | 7,081,633,828.18 | 7.08 billion | 247 |
Insight
Over the 10-year window, obligations for award DEAC2701RV14136 are fully concentrated in NAICS 234930, Industrial Nonbuilding Structure Construction, with $7.08 billion across 247 awards. This indicates a highly focused procurement profile with no observed NAICS diversification in the provided data. The volume of awards suggests repeated activity within the same industry classification rather than broad spending distribution.
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 = 'DEAC2701RV14136'
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 |
|---|---|---|---|---|
| Y181 | CONSTRUCT/R&D - GOCO FACILITIES | 7,081,633,828.18 | 7.08 billion | 247 |
Insight
Over the 10-year window, obligations for award PIID DEAC2701RV14136 are fully concentrated in PSC Y181, CONSTRUCT/R&D - GOCO FACILITIES. This PSC accounts for 7.08 billion across 247 awards, indicating sustained and dominant use of this product/service code within the award record.
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 = 'DEAC2701RV14136'
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 | 907,857,423.78 | 907.86 million | 25 |
| 2017 | 493,676,307.46 | 493.68 million | 27 |
| 2018 | 735,057,978.57 | 735.06 million | 33 |
| 2019 | 669,964,000.00 | 669.96 million | 25 |
| 2020 | 679,346,967.54 | 679.35 million | 30 |
| 2021 | 949,448,321.09 | 949.45 million | 28 |
| 2022 | 143,600,024.81 | 143.60 million | 13 |
| 2023 | 787,512,595.17 | 787.51 million | 21 |
| 2024 | 735,977,598.57 | 735.98 million | 16 |
| 2025 | 979,192,611.19 | 979.19 million | 29 |
Insight
Obligations for PIID DEAC2701RV14136 were substantial throughout the 10-year window, ranging from 143.60 million in 2022 to 979.19 million in 2025. Activity was generally concentrated in the 2016, 2021, 2023–2025 period, with annual obligations mostly between about 670 million and 950 million and award counts typically in the mid-20s to low-30s. The 2022 drop to 143.60 million and 13 awards is a clear outlier, followed by a recovery in 2023 and continued high obligation levels in 2024 and 2025.
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.