Vehicle Number

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

FPDS procurement summary for vehicle number under agency 7505 and PIID HHSO100201700018C over the last 10 years.

This page summarizes federal award activity for vehicle number tied to agency ID 7505 and PIID HHSO100201700018C. The analysis window covers the last 10 years and reflects 21 award actions with total obligations of 919.51 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated equals 919,512,953 across 21 award actions, with an average action value of 43,786,331.1.

Agency ID
7505
PIID
HHSO100201700018C
Type
Vehicle
Total Obligated
919.51 million
919,512,953.00
Actions
21
Average Action Value
43,786,331.10

Overview

The record set for vehicle number under agency ID 7505 and PIID HHSO100201700018C shows 21 award actions in the last 10 years. Total obligated funding is 919,512,953, with an average action value of 43,786,331.1. Use this page to review the scale and cadence of award activity associated with this vehicle record. The figures provide a compact view of obligation volume and action frequency for the selected period.

How to use this page

Use the totals to compare this vehicle record against other FPDS results by agency, PIID, or time span. The action count and average value can help frame whether obligations were concentrated in fewer actions or spread across the full analysis window. For procurement review, the page provides a direct summary of obligated dollars and award activity without adding assumptions about scope or performance. It is suited to quick reference, reporting, and baseline comparison.

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 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
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 1,261,139,514.00 1.26 billion 19
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE -341,626,561.00 -341.63 million 2

Insight

For PIID HHSO100201700018C over the 10-year window, obligations are concentrated in agency ID 7505, with the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE accounting for $1.26 billion across 19 awards. The same agency ID also includes a smaller offsetting total under the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE, at -$341.63 million across 2 awards. Netting these rows indicates that funding activity remains heavily concentrated in one agency organization, with a material negative adjustment reducing but not offsetting the overall obligation level.

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 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 = '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 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
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY 919,512,953.00 919.51 million 21

Insight

Obligations under this vehicle are fully concentrated in NAICS 541711, Research and Development in Biotechnology, with $919.51 million obligated across 21 awards over the 10-year window. This indicates a highly focused procurement profile rather than a diversified NAICS distribution. The award count suggests repeated use of the vehicle for the same core service category, consistent with sustained demand in biotechnology R&D.

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 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 919,512,953.00 919.51 million 21

Insight

Obligations for PIID HHSO100201700018C are fully concentrated in PSC 6505, Drugs and Biologicals, with $919.51 million across 21 awards over the 10-year window. This indicates a highly focused spend profile with no diversification across other PSCs in the provided data. The distribution suggests this vehicle was used primarily for pharmaceutical and biologics procurement rather than a broad mix of product categories.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2017 43,588,145.00 43.59 million 1
2018 41,327,515.00 41.33 million 3
2019 0.00 0.00 2
2020 1,144,225,528.00 1.14 billion 6
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 highly concentrated in FY 2020, which accounts for $1.14 billion across 6 awards and far exceeds all other years in the 10-year window. FYs 2017, 2018, and 2021 show comparatively modest positive obligations in the $31.99 million to $43.59 million range, while FYs 2019 and 2022 recorded zero obligations despite multiple awards. The later negative obligations in FYs 2024 and 2025 indicate downward adjustments or deobligations of $241.63 million and $100.00 million, respectively, producing a materially uneven annual funding pattern.

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.