Vehicle Number

Vehicle Number 7523 / HHSD200201800015I Federal Contract Action Summary (Last 10 Years)

Vehicle number record for PIID HHSD200201800015I in agency ID 7523, summarizing award activity over the last 10 years.

This page presents procurement activity for the vehicle number associated with PIID HHSD200201800015I. Over the last 10 years, the record shows 6 award actions and total obligations of 104.90 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided exact obligated amount of 104899072.3 and a calculated average action value of 17483178.72.

Agency ID
7523
PIID
HHSD200201800015I
Type
Vehicle
Total Obligated
104.90 million
104,899,072.30
Actions
6
Average Action Value
17,483,178.72

Overview

The record is tied to agency ID 7523 and PIID HHSD200201800015I. It covers the last 10 years and reflects 6 award actions with total obligations of 104899072.3, or 104.90 million in readable form. The average action value is 17483178.72.

How to use this page

Use this page to review the obligation level and action count associated with the vehicle number record. It is useful for a quick read of procurement activity tied to PIID HHSD200201800015I without adding assumptions beyond the reported data.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = 'HHSD200201800015I'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 104,899,072.30 104.90 million 6

Insight

Over the 10-year window, all reported obligations for PIID HHSD200201800015I are concentrated in a single top agency: the Centers for Disease Control and Prevention. CDC accounts for $104.90 million across 6 awards, indicating a fully concentrated obligation pattern within the provided data. This distribution suggests the vehicle has been used exclusively or primarily for CDC-related funding activity 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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '7523' AND content__IDV__contractID__IDVID__PIID = 'HHSD200201800015I'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 = '7523' AND content__IDV__contractID__IDVID__PIID = 'HHSD200201800015I'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 104,899,072.30 104.90 million 6

Insight

Obligations under PIID HHSD200201800015I are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, with $104.90 million across 6 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The average obligation per award is substantial, suggesting repeated funding in a narrowly defined biological products category.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = 'HHSD200201800015I'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
6505 DRUGS AND BIOLOGICALS 104,899,072.30 104.90 million 6

Insight

Obligations for this vehicle are fully concentrated in PSC 6505, Drugs and Biologicals, with $104.90 million across 6 awards over the 10-year window. This indicates a narrow product focus and limited PSC diversification within the vehicle. The average obligation per award is materially high, suggesting relatively large-order activity rather than broad, low-dollar distribution.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = 'HHSD200201800015I'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2017 5,948.00 5.95 thousand 1
2018 107,541,151.80 107.54 million 3
2019 -2,648,027.50 -2.65 million 1
2023 0.00 0.00 1

Insight

Obligations under vehicle HHSD200201800015I were highly concentrated in 2018, when 3 awards accounted for $107.54 million, far exceeding all other years in the 10-year window. Activity was otherwise limited, with only nominal obligation in 2017, a negative net obligation of $2.65 million in 2019, and no obligated amount in 2023 despite 1 award. Overall, the pattern indicates a sharp spike in 2018 followed by minimal and uneven subsequent obligation levels.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.