Award Number

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

FPDS award number page for PIID DEAC0494AL85000 under agency 8900, summarizing obligation activity over the last 5 years.

This page summarizes award-level procurement activity for award number DEAC0494AL85000 within agency ID 8900. Over the last 5 years, the award shows 6 actions and a total obligated amount of -19.75 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated figures are based on the provided readable and exact values for the last 5 years analysis window.

Agency ID
8900
PIID
DEAC0494AL85000
Type
Award
Total Obligated
-19.75 million
-19,749,680.49
Actions
6
Average Action Value
-3,291,613.42

Overview

The award record for PIID DEAC0494AL85000 shows six recorded actions in the last 5 years. Total obligated value is -19,749,680.49, with an average action value of -3,291,613.42. This page is intended to support basic award-level review by showing the obligation total and action count in one place.

How to use this page

Use this page to review the award history associated with PIID DEAC0494AL85000 and compare its action activity over the selected period. The negative obligated total should be interpreted in the context of the underlying FPDS record data as provided. Analysts can use the action count and average action value as quick reference points when screening this award within 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 = 'DEAC0494AL85000'
    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 -19,749,680.49 -19.75 million 6

Insight

Over the 5-year window, all reported obligations for PIID DEAC0494AL85000 are concentrated within the Department of Energy (agency ID 8900). The award activity is limited to 6 awards, with a net total obligation of -$19.75 million, indicating the award portfolio is both narrowly distributed and net deobligated 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 = 'DEAC0494AL85000'
        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
LOCKHEED MARTIN CORPORATION 04236 -19,749,680.49 -19.75 million 6

Insight

Over the 5-year window, obligations under PIID DEAC0494AL85000 are fully concentrated with a single top vendor, LOCKHEED MARTIN CORPORATION (CAGE 04236). The vendor accounts for 6 awards totaling -$19.75 million in obligated value, indicating all identified top-vendor activity in this award is attributable to one contractor. This concentration suggests a narrow vendor distribution for the reviewed period.

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 = 'DEAC0494AL85000'
    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 -19,749,680.49 -19.75 million 6

Insight

Over the 5-year window, obligations for award DEAC0494AL85000 are entirely concentrated in NAICS 561210, Facilities Support Services. This category accounts for 6 awards and net obligated amounts of -$19.75 million, indicating all reported activity in this section is tied to a single NAICS code. The negative obligation total suggests overall deobligation or downward adjustment activity rather than net funding growth.

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 = 'DEAC0494AL85000'
    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
M181 OPER OF GOVT R&D GOCO FACILITIES -19,749,680.49 -19.75 million 6

Insight

Obligations for this award over the 5-year window are concentrated entirely in PSC M181, Operating of Government R&D GOCO Facilities. The six reported actions in this PSC account for a net deobligation of $19.75 million, indicating that the award’s activity in this period was limited and centered on this single service category.

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 = 'DEAC0494AL85000'
    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 -9,249,680.49 -9.25 million 2
2023 -4,000,000.00 -4.00 million 1
2024 -6,500,000.00 -6.50 million 3

Insight

Obligations under PIID DEAC0494AL85000 were concentrated in three years within the 5-year window, with no reported activity for 2020 or 2022 in the provided rows. Funding was highest in 2021 at -$9.25 million across 2 awards, then declined to -$4.00 million in 2023 on 1 award before increasing to -$6.50 million in 2024 across 3 awards. The pattern indicates uneven annual distribution with a mid-period trough followed by partial recovery in both obligation value and award count.

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.