Vehicle Number

Vehicle Number 8900 / 89303325DEM000122 Federal Contract Action Summary (Last 5 Years)

Analysis of vehicle number 89303325DEM000122 for Agency ID 8900 over the last 5 years, showing 17 award actions and $91.01 million in obligated value.

This page summarizes procurement activity for vehicle number 89303325DEM000122 associated with Agency ID 8900. The record covers the last 5 years and reflects 17 award actions with total obligated value of $91,005,997.69.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar values are shown as provided, with a readable total of $91.01 million and an exact total of $91,005,997.69.

Agency ID
8900
PIID
89303325DEM000122
Type
Vehicle
Total Obligated
91.01 million
91,005,997.69
Actions
17
Average Action Value
5,353,293.98

Overview

The procurement record for vehicle number 89303325DEM000122 shows 17 award actions in the last 5 years. Total obligated value is $91,005,997.69, with an average action value of $5,353,293.98. These figures provide a concise view of the award history tied to Agency ID 8900. The page is intended to support review of activity volume and obligated dollars for this vehicle record.

How to use this page

Use this page to review award activity trends, obligated amounts, and action count for vehicle number 89303325DEM000122. The totals support basic procurement analysis without adding details beyond the reported FPDS inputs. The average action value gives a simple reference point for comparing individual actions within the 5-year window. This summary is limited to the provided record-level data for Agency ID 8900.

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 = '89303325DEM000122'
    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 91,005,997.69 91.01 million 17

Insight

Within the 5-year window for vehicle PIID 89303325DEM000122, all reported obligations are concentrated in a single top agency: the Department of Energy. That agency accounts for $91.01 million across 17 awards, indicating activity is entirely associated with one federal department in the provided data. No distribution across additional agencies is evidenced in the rows provided.

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 = '89303325DEM000122'
        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 = '89303325DEM000122'
    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
325180 OTHER BASIC INORGANIC CHEMICAL MANUFACTURING 91,005,997.69 91.01 million 17

Insight

Over the 5-year window for vehicle PIID 89303325DEM000122 under agency 8900, obligations are fully concentrated in NAICS 325180, Other Basic Inorganic Chemical Manufacturing. This category accounts for $91.01 million across 17 awards, indicating a single-NAICS spend profile with activity spread across multiple awards rather than a single obligation event. The distribution suggests procurement activity is focused and not diversified across other NAICS codes in the provided data.

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 = '89303325DEM000122'
    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
M1EC OPERATION OF PRODUCTION BUILDINGS 91,005,997.69 91.01 million 17

Insight

Over the 5-year window, obligations for vehicle PIID 89303325DEM000122 are fully concentrated in PSC M1EC, Operation of Production Buildings, with $91.01 million obligated across 17 awards. This indicates a narrow PSC distribution and suggests the vehicle has been used consistently for the same service category rather than a broad mix of requirements. The repeated award activity under a single PSC points to sustained procurement demand in this area.

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 = '89303325DEM000122'
    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
2024 500,110.00 500.11 thousand 1
2025 90,505,887.69 90.51 million 16

Insight

Obligations for PIID 89303325DEM000122 are highly concentrated in 2025, when funding increased to $90.51 million across 16 awards, compared with $500.11 thousand and 1 award in 2024. This indicates a sharp year-over-year expansion in both obligation volume and award activity within the 5-year window provided. The distribution is therefore heavily skewed toward 2025, with 2024 representing a minimal share of total obligations.

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.