Award Number

Award Number 8900 / DEAC2701RV14136 Federal Contract Action Summary (Last Year)

Award number DEAC2701RV14136 for Agency ID 8900 shows 29 award actions in the last full year with total obligations of 979.19 million.

This page summarizes award number DEAC2701RV14136 for Agency ID 8900 over the last full year. The record shows 29 actions and total obligated amounts of 979,192,611.19, with an average action value of 33,765,262.45.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and use the provided obligated amount and action count for award number DEAC2701RV14136.

Agency ID
8900
PIID
DEAC2701RV14136
Type
Award
Total Obligated
979.19 million
979,192,611.19
Actions
29
Average Action Value
33,765,262.45

Overview

Award number DEAC2701RV14136 is associated with Agency ID 8900 and recorded activity during the last full year. The award includes 29 actions and total obligated funding of 979,192,611.19, which equals about 979.19 million. The average action value was 33,765,262.45.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the last full year. The figures provide a compact view of how activity on DEAC2701RV14136 was distributed across 29 actions. This is a summary of the provided award data only.

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 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 979,192,611.19 979.19 million 29

Insight

Within the 1-year window for PIID DEAC2701RV14136, obligations are fully concentrated in the Department of Energy, with $979.19 million across 29 awards. This indicates the award activity tracked in this query is entirely associated with a single top agency and is distributed across a relatively small number of awards rather than spread across multiple agencies. The concentration suggests agency-specific funding and execution dynamics dominate this record.

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 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
BECHTEL NATIONAL, INC 1S307 979,192,611.19 979.19 million 29

Insight

Within the 1-year window, obligations for PIID DEAC2701RV14136 are fully concentrated with a single vendor, BECHTEL NATIONAL, INC (CAGE 1S307). This vendor accounts for $979.19 million across 29 awards, indicating a highly concentrated award distribution rather than a broad vendor mix.

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 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
234930 INDUSTRIAL NONBUILDING STRUCTURE CONSTRUCTION 979,192,611.19 979.19 million 29

Insight

For award DEAC2701RV14136 over the 1-year window, obligations are concentrated entirely in NAICS 234930, Industrial Nonbuilding Structure Construction. This category accounts for $979.19 million across 29 awards, indicating a highly focused procurement profile within a single industry classification. No additional NAICS distributions are reflected in the provided rows.

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 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
Y181 CONSTRUCT/R&D - GOCO FACILITIES 979,192,611.19 979.19 million 29

Insight

Over the 1-year window, obligations for award DEAC2701RV14136 are fully concentrated in PSC Y181, “CONSTRUCT/R&D - GOCO FACILITIES,” with $979.19 million across 29 awards. This indicates a highly focused procurement profile with no other PSCs represented in the provided data. The award pattern suggests repeated obligations within a single requirements category rather than a diversified mix of services or supplies.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 979,192,611.19 979.19 million 29

Insight

For PIID DEAC2701RV14136, obligations in the 1-year window are concentrated in a single reported year, 2025, with $979.19 million across 29 awards. This indicates a high level of annual concentration rather than a multi-year distribution. The limited year coverage prevents assessment of year-over-year trend direction within the provided window.

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.