Vehicle Number

Vehicle Number 8900 / 89303324DEM000093 Federal Contract Action Summary (Last 5 Years)

Analyst summary for vehicle number PIID 89303324DEM000093 at agency 8900 covering obligations and award activity over the last 5 years.

This page summarizes procurement activity for vehicle number 89303324DEM000093 within agency 8900 over the last 5 years. Total obligated funding is 54.20 million across 28 award actions, with an average action value of 1,935,721.61.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar figures are based on the provided readable and exact totals for the analysis window.

Agency ID
8900
PIID
89303324DEM000093
Type
Vehicle
Total Obligated
54.20 million
54,200,205.00
Actions
28
Average Action Value
1,935,721.61

Overview

Over the last 5 years, vehicle number 89303324DEM000093 recorded 28 award actions and 54,200,205 in total obligated funding. The average action value was 1,935,721.61, indicating repeated obligation activity under the same vehicle. This page is intended for quick review of the vehicle-level spending profile tied to agency 8900.

How to use this page

Use this page to assess how much funding has been obligated under this vehicle and how frequently award actions occurred during the analysis window. The combination of total obligations, action count, and average action value provides a concise view of procurement activity for 89303324DEM000093.

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 = '89303324DEM000093'
    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 54,200,205.00 54.20 million 28

Insight

Within the 5-year window, all reported obligations for vehicle PIID 89303324DEM000093 are concentrated in a single agency: the Department of Energy. The agency accounted for $54.20 million across 28 awards, indicating full obligation concentration with no distribution across other agencies in the provided rows. This pattern suggests the vehicle is used exclusively within DOE in the reported 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__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 = '89303324DEM000093'
        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 = '89303324DEM000093'
    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
621498 ALL OTHER OUTPATIENT CARE CENTERS 54,200,205.00 54.20 million 28

Insight

Over the 5-year window, obligations for vehicle PIID 89303324DEM000093 under agency 8900 are fully concentrated in NAICS 621498, All Other Outpatient Care Centers. This NAICS accounts for $54.20 million across 28 awards, indicating a single-industry spending profile with no visible diversification across other NAICS codes in the provided data. The concentration suggests this vehicle has been used consistently for outpatient care center-related requirements.

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 = '89303324DEM000093'
    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
Q999 MEDICAL- OTHER 54,200,205.00 54.20 million 28

Insight

Obligations under this vehicle are fully concentrated in PSC Q999 (Medical - Other), with $54.20 million across 28 awards over the 5-year window. This indicates a single-category spend profile with no diversification across PSCs in the provided data. The award pattern suggests repeated use of the vehicle for the same broad medical services classification.

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 = '89303324DEM000093'
    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
2023 5,122,654.30 5.12 million 4
2024 23,227,009.53 23.23 million 11
2025 25,850,541.17 25.85 million 13

Insight

Obligations for this vehicle are concentrated in the most recent years, increasing from $5.12 million across 4 awards in 2023 to $23.23 million across 11 awards in 2024, then to $25.85 million across 13 awards in 2025. Both obligated dollars and award counts rise year over year, indicating expanding use and a broader distribution of awards in the current period. The 2024–2025 activity accounts for the clear majority of recent 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.