Vehicle Number

Vehicle Number 8900 / 89303322DEM000077 Federal Contract Action Summary (Last 5 Years)

FPDS procurement summary for vehicle number 89303322DEM000077 under agency 8900, covering the last 5 years of award activity.

This page summarizes federal obligations tied to vehicle number 89303322DEM000077 for agency ID 8900 over the last 5 years. The record shows 87 award actions with total obligated funding of 1.60 billion, or 1,599,873,431.02 in exact dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the analysis window provided and may differ from rounded display values because of precision in the underlying obligation amounts.

Agency ID
8900
PIID
89303322DEM000077
Type
Vehicle
Total Obligated
1.60 billion
1,599,873,431.02
Actions
87
Average Action Value
18,389,349.78

Overview

For the last 5 years, vehicle number 89303322DEM000077 shows 87 award actions and total obligated funding of 1,599,873,431.02. The average action value is 18,389,349.78, indicating a relatively large-dollar award pattern across the period. This page is intended to support review of obligation volume and action frequency for the identified vehicle under agency 8900.

How to use this page

Use this record to compare obligation trends across the analysis window and to identify how funding is distributed across award actions. The average action value and total obligated amount provide a concise basis for procurement analysis without requiring line-item detail. For precise reporting, rely on the exact obligation figure of 1,599,873,431.02 rather than the rounded display value.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8900' AND content__IDV__contractID__IDVID__PIID = '89303322DEM000077'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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,599,873,431.02 1.60 billion 87

Insight

Within the 5-year window for PIID 89303322DEM000077, all reported obligated dollars are concentrated in a single top agency: the Department of Energy. The agency accounts for $1.60 billion across 87 awards, indicating a highly concentrated obligation pattern with no evidence of distribution across other agencies in the provided data.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '8900' AND content__IDV__contractID__IDVID__PIID = '89303322DEM000077'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8900' AND content__IDV__contractID__IDVID__PIID = '89303322DEM000077'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 1,599,873,431.02 1.60 billion 87

Insight

Over the 5-year window, obligations for vehicle PIID 89303322DEM000077 are fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal. This NAICS accounts for 1.60 billion in obligated dollars across 87 awards, indicating a highly focused procurement profile rather than a diversified mix of industries. The concentration suggests sustained reliance on a single service category for this vehicle.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8900' AND content__IDV__contractID__IDVID__PIID = '89303322DEM000077'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
F999 OTHER ENVIRONMENTAL SERVICES 1,599,873,431.02 1.60 billion 87

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated in PSC F999, Other Environmental Services. The reported amount totals $1.60 billion across 87 awards, indicating repeated use of a single service classification rather than a diversified PSC mix. This concentration suggests the vehicle is being used primarily for environmental services obligations within the scope reflected in the provided row.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8900' AND content__IDV__contractID__IDVID__PIID = '89303322DEM000077'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2022 4,993,004.00 4.99 million 1
2023 638,405,515.62 638.41 million 33
2024 448,008,267.16 448.01 million 23
2025 508,466,644.24 508.47 million 30

Insight

Obligations under PIID 89303322DEM000077 are highly concentrated after 2022, rising from $4.99 million in 2022 to $638.41 million in 2023 across 33 awards. Funding remains elevated but below the 2023 peak, with $448.01 million in 2024 across 23 awards and $508.47 million in 2025 across 30 awards. The pattern indicates a sharp expansion in 2023 followed by sustained, high-volume obligating activity over the next two years.

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.