Award Number

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

FPDS award page for award number DEAC0609RL14728 under agency ID 8900, showing obligation and action history for the last 5 years.

This page summarizes the award activity for PIID DEAC0609RL14728 over the last 5 years. Total obligated is $18.98 million across 53 actions, with an average action value of $358,056.43.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation and action figures reflect the provided analysis window and may differ from other reporting periods or downstream summaries.

Agency ID
8900
PIID
DEAC0609RL14728
Type
Award
Total Obligated
18.98 million
18,976,990.70
Actions
53
Average Action Value
358,056.43

Overview

The award record for DEAC0609RL14728 shows 53 recorded actions in the last 5 years. Total obligated is $18,976,990.70, which reads as $18.98 million, and the average action value is $358,056.43.

How to use this page

Use this page to review the obligation level and action count associated with the award number DEAC0609RL14728. It provides a compact summary for procurement analysis within the stated 5-year window and 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 = 'DEAC0609RL14728'
    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 18,976,990.70 18.98 million 53

Insight

Obligations for PIID DEAC0609RL14728 over the 5-year window are fully concentrated within a single agency, the Department of Energy (agency ID 8900). The award records 53 actions totaling $18.98 million, indicating all observed funding activity is associated with one agency rather than distributed across multiple agencies. This pattern suggests a narrow agency footprint for the award within the review 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 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
MISSION SUPPORT ALLIANCE, LLC 4RUU5 18,976,990.70 18.98 million 53

Insight

MISSION SUPPORT ALLIANCE, LLC is the sole top vendor listed for PIID DEAC0609RL14728 in the 5-year window, with 53 awards totaling $18.98 million. This indicates a highly concentrated obligation pattern, with all identified top-vendor activity in the period attributable to a single contractor. The volume of awards relative to obligated dollars suggests repeated, smaller-value actions rather than a small number of large obligations.

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 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 18,976,990.70 18.98 million 53

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with 53 actions totaling $18.98 million over the 5-year window. This indicates a narrow service profile and no diversification across other NAICS codes in the provided data. The volume of actions suggests recurring support services rather than a one-time procurement.

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 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
M300 OPER OF GOVT RESTORATION 18,976,990.70 18.98 million 53

Insight

Obligations under PIID DEAC0609RL14728 over the 5-year window are fully concentrated in PSC M300, Operating of Government Restoration, with $18.98 million across 53 awards. This indicates a single-line item profile with no observable PSC diversification in the provided data. The award activity is moderately distributed across multiple actions, but all obligated value is tied to the same PSC.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 are highly concentrated in 2021, when 40 awards totaled $23.74 million. Activity then dropped sharply and remained limited in 2022–2025, with only 7, 3, 2, and 1 award(s), respectively. Subsequent years show net deobligations rather than positive funding, including -$916.52 thousand in 2022, -$7.09 thousand in 2023, -$2.37 million in 2024, and -$1.47 million in 2025, indicating a sustained downward funding trend after the 2021 peak.

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.