Award Number

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

Federal award record for award number DEAC0609RL14728 under agency ID 8900, covering activity in the last 10 years.

This page summarizes the award history for PIID DEAC0609RL14728, including obligation totals and action activity over the last 10 years. The record shows 505 award actions and $1.668 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other reporting periods or updated FPDS extracts.

Agency ID
8900
PIID
DEAC0609RL14728
Type
Award
Total Obligated
1.67 billion
1,668,119,285.87
Actions
505
Average Action Value
3,303,206.51

Overview

Award number DEAC0609RL14728 is associated with agency ID 8900 and shows activity across 505 award actions in the last 10 years. Total obligated value is $1,668,119,285.87, with an average action value of $3,303,206.51. The figures provide a compact view of the award's recorded procurement activity within the stated period.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for DEAC0609RL14728. It is suitable for FPDS-style analysis of award history, spend concentration, and activity volume over the last 10 years.

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 = 'DEAC0609RL14728'
    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 1,668,119,285.87 1.67 billion 505

Insight

All reported obligations in the 10-year window are concentrated in the Department of Energy (agency ID 8900), with $1.67 billion obligated across 505 awards. This indicates the award is fully associated with a single agency, with no interagency distribution evident in the provided data. The volume of awards relative to total obligations suggests repeated award activity under this PIID over the period.

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 = 'DEAC0609RL14728'
        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
MISSION SUPPORT ALLIANCE, LLC 4RUU5 1,356,818,928.78 1.36 billion 434
MISSION SUPPORT ALLIANCE, LLC 311,300,357.09 311.30 million 71

Insight

MISSION SUPPORT ALLIANCE, LLC is the dominant recipient in this query, accounting for $1.36 billion across 434 awards under CAGE 4RUU5. An additional $311.3 million is attributed to the same vendor name with no CAGE code provided, across 71 awards, indicating substantial obligation volume concentrated with a single vendor identity. Together, these rows reflect highly concentrated award activity 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 = 'DEAC0609RL14728'
    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 1,668,119,285.87 1.67 billion 505

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $1.67 billion obligated across 505 awards. This indicates a highly focused procurement profile with no diversity across alternative NAICS codes in the 10-year window. The volume of awards suggests repeated reliance on the same service category rather than broad programmatic spread.

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 = 'DEAC0609RL14728'
    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
M300 OPER OF GOVT RESTORATION 1,668,119,285.87 1.67 billion 505

Insight

Obligations for award DEAC0609RL14728 are fully concentrated in PSC M300, Operating of Government Restoration, with $1.67 billion obligated across 505 awards in the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award activity is therefore dominated by a single service category, suggesting sustained reliance on this PSC for the contract’s obligated spending.

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 = 'DEAC0609RL14728'
    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 261,141,272.60 261.14 million 70
2017 340,456,963.86 340.46 million 88
2018 332,801,626.64 332.80 million 106
2019 360,641,789.87 360.64 million 100
2020 354,100,642.20 354.10 million 88
2021 23,738,144.60 23.74 million 40
2022 -916,518.77 -916.52 thousand 7
2023 -7,086.30 -7.09 thousand 3
2024 -2,371,983.54 -2.37 million 2
2025 -1,465,565.29 -1.47 million 1

Insight

Obligations for PIID DEAC0609RL14728 were concentrated in FY2016-FY2020, with annual obligations ranging from $261.14 million to $360.64 million and award counts between 70 and 106. FY2019 recorded the highest obligation level at $360.64 million, while FY2016 was the lowest of the five high-obligation years at $261.14 million. Activity dropped sharply in FY2021 to $23.74 million across 40 awards, followed by negative net obligations in FY2022-FY2025, indicating later-year deobligations or adjustments and materially reduced award activity.

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.