Vehicle Number

Vehicle Number 7505 / HHSO100201700018C Federal Contract Action Summary (Last 5 Years)

Federal procurement summary for vehicle number HHSO100201700018C under Agency ID 7505, covering the last 5 years of award activity.

This page summarizes the award history associated with vehicle number HHSO100201700018C for Agency ID 7505. Over the last 5 years, the record shows 9 award actions and total obligated amount of -$309.63 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation values are shown as provided in FPDS, including negative totals and the exact amount of -309628235.

Agency ID
7505
PIID
HHSO100201700018C
Type
Vehicle
Total Obligated
-309.63 million
-309,628,235.00
Actions
9
Average Action Value
-34,403,137.22

Overview

The available record for vehicle number HHSO100201700018C under Agency ID 7505 includes 9 award actions in the last 5 years. Total obligated value is -$309.63 million, with an exact total of -309628235 and an average action value of -$34,403,137.22.

How to use this page

Use this page to review the procurement footprint associated with the vehicle number and its action history over the selected period. The figures reflect the provided FPDS values and should be read in the context of the negative obligation total and the 9 recorded actions.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = 'HHSO100201700018C'
    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
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 31,998,326.00 32.00 million 7
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE -341,626,561.00 -341.63 million 2

Insight

Over the 5-year window, obligations associated with this vehicle are concentrated within agency ID 7505, but the funding profile is uneven across the listed agency names. The Office of Assistant Secretary for Preparedness and Response accounts for $32.0 million across 7 awards, while the Administration for Strategic Preparedness and Response shows a net negative $341.6 million across 2 awards. This indicates a highly concentrated and volatile obligation pattern, with the negative amount dominating the overall agency-level distribution.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = 'HHSO100201700018C'
        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 = '7505' AND content__IDV__contractID__IDVID__PIID = 'HHSO100201700018C'
    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
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY -309,628,235.00 -309.63 million 9

Insight

Obligations for this vehicle are fully concentrated in NAICS 541711, Research and Development in Biotechnology, which accounts for the entire reported total. Across 9 awards over the 5-year window, this activity reflects a narrow industrial focus rather than a diversified set of NAICS categories. The reported total obligated is negative at -$309.63 million, indicating a net deobligation or obligation adjustment within this NAICS.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = 'HHSO100201700018C'
    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
6505 DRUGS AND BIOLOGICALS -309,628,235.00 -309.63 million 9

Insight

Obligations under this vehicle are fully concentrated in PSC 6505, Drugs and Biologicals, with -$309.63 million across 9 awards over the 5-year window. This indicates a highly specialized procurement profile with no visible dispersion across other product or service categories in the provided data. The negative obligated total suggests deobligations or downward funding adjustments dominate this vehicle’s activity.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = 'HHSO100201700018C'
    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
2021 31,998,326.00 32.00 million 4
2022 0.00 0.00 3
2024 -241,626,561.00 -241.63 million 1
2025 -100,000,000.00 -100.00 million 1

Insight

Obligations for PIID HHSO100201700018C are concentrated in a few years, with positive funding recorded in 2021 ($32.0 million across 4 awards) and no net obligation in 2022 despite 3 awards. The pattern shifts sharply in 2024 and 2025, where single awards carry large negative obligations of $241.6 million and $100.0 million, respectively. This indicates a highly uneven annual distribution, with later-year deobligations or downward adjustments driving the five-year trend.

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.