Vehicle Number

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

Procurement analysis for vehicle number under Agency ID 7523 and PIID HHSD200201800361I, covering the last 10 years of award activity.

This page summarizes vehicle number award activity for Agency ID 7523 under PIID HHSD200201800361I across the last 10 years. The record shows 11 award actions with total obligations of $1.52 billion and an average action value of $137,823,186.73.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts reflect the provided readable total of $1.52 billion and exact total obligated amount of $1,516,055,054.05.

Agency ID
7523
PIID
HHSD200201800361I
Type
Vehicle
Total Obligated
1.52 billion
1,516,055,054.05
Actions
11
Average Action Value
137,823,186.73

Overview

The vehicle number record for Agency ID 7523 under PIID HHSD200201800361I shows 11 award actions in the last 10 years. Total obligated funding is $1,516,055,054.05, with an average action value of $137,823,186.73.

How to use this page

This page is useful for reviewing obligation volume and award frequency tied to a specific vehicle record. It can support procurement analysis, reporting, and cross-checking activity associated with PIID HHSD200201800361I.

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 = 'HHSD200201800361I'
    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 1,516,055,054.05 1.52 billion 11

Insight

For PIID HHSD200201800361I over the 10-year window, all reported obligation activity is concentrated in a single agency: the Centers for Disease Control and Prevention (agency ID 7523). CDC accounts for $1.52 billion across 11 awards, indicating that this vehicle’s obligated value is fully concentrated within one agency relationship. This pattern suggests limited distribution across agencies and a high degree of award activity centered on CDC.

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 = 'HHSD200201800361I'
        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 = 'HHSD200201800361I'
    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 1,516,055,054.05 1.52 billion 11

Insight

Obligations under this vehicle are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, which accounts for the entire reported 10-year obligated total of $1.52 billion. The activity is also narrowly distributed across only 11 awards, indicating a highly focused procurement profile rather than a broad mix of industrial categories.

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 = 'HHSD200201800361I'
    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 1,516,055,054.05 1.52 billion 11

Insight

Over the 10-year window, obligations under vehicle PIID HHSD200201800361I are fully concentrated in PSC 6505, Drugs and Biologicals. The entire $1.52 billion in obligated value is associated with 11 awards, indicating a narrow product scope and a highly concentrated spend profile.

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 = 'HHSD200201800361I'
    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
2018 1,313,421,429.21 1.31 billion 5
2019 202,633,624.84 202.63 million 3
2020 0.00 0.00 2
2023 0.00 0.00 1

Insight

Obligations for PIID HHSD200201800361I are heavily concentrated in 2018, when awards totaled $1.31 billion across 5 actions. Activity dropped sharply in 2019 to $202.63 million across 3 awards, then fell to zero obligated dollars in 2020 and again in 2023, despite additional award actions. Over the 10-year window, the pattern indicates a front-loaded obligation profile with limited later-year funding activity.

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.