Vehicle Number

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

Vehicle number record for PIID HHSO100201300011C under Agency ID 7505, showing award activity over the last 10 years.

This page summarizes the vehicle number associated with federal award PIID HHSO100201300011C for Agency ID 7505. The 10-year record includes 24 award actions and $138.53 million in total obligated funding.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated funding is $138,529,832.87 across 24 award actions, with an average action value of $5,772,076.37.

Agency ID
7505
PIID
HHSO100201300011C
Type
Vehicle
Total Obligated
138.53 million
138,529,832.87
Actions
24
Average Action Value
5,772,076.37

Overview

The vehicle number page provides a focused view of award activity tied to PIID HHSO100201300011C for Agency ID 7505. Over the last 10 years, the record shows 24 award actions and total obligations of $138,529,832.87. The average action value is $5,772,076.37.

How to use this page

Use this page to review the vehicle-level award record for the identified PIID and agency. The figures support a basic assessment of obligation volume and action frequency within the selected 10-year window.

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 = 'HHSO100201300011C'
    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 123,664,288.38 123.66 million 19
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 14,865,544.49 14.87 million 5

Insight

Obligations under this vehicle are highly concentrated in Agency ID 7505, with the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE accounting for $123.66 million across 19 awards. The ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE accounts for an additional $14.87 million across 5 awards, indicating a much smaller but related share of activity. Together, these two entities represent the full agency-level activity listed here, with spending concentrated primarily in the first organization.

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 = 'HHSO100201300011C'
        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 = 'HHSO100201300011C'
    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 138,529,832.87 138.53 million 24

Insight

Over the 10-year window, obligations for vehicle HHSO100201300011C are concentrated entirely in NAICS 541711, Research and Development in Biotechnology. This category accounts for $138.53 million across 24 awards, indicating a highly focused procurement pattern with no diversification reflected in the provided rows.

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 = 'HHSO100201300011C'
    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
AN13 R&D- MEDICAL: BIOMEDICAL (ADVANCED DEVELOPMENT) 99,698,749.42 99.70 million 14
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 38,831,083.45 38.83 million 10

Insight

Obligations under PIID HHSO100201300011C are concentrated in PSC AN13, with $99.70 million across 14 awards for R&D—medical: biomedical (advanced development). A second AN13 entry for health R&D services and experimental development accounts for $38.83 million across 10 awards, indicating continued emphasis on health-related research and development within the same PSC family. Over the 10-year window, spending is therefore heavily concentrated in a single PSC category, with the larger line item representing the dominant share of obligated dollars.

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 = 'HHSO100201300011C'
    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
2016 1,600,000.00 1.60 million 3
2017 40,800,000.00 40.80 million 3
2018 4,198,749.42 4.20 million 5
2019 25,000,000.00 25.00 million 2
2020 28,100,000.00 28.10 million 1
2021 0.00 0.00 1
2022 8,965,902.05 8.97 million 2
2023 14,999,636.91 15.00 million 3
2024 12,187,214.49 12.19 million 3
2025 2,678,330.00 2.68 million 1

Insight

Obligations for PIID HHSO100201300011C are uneven across the 10-year window, with a pronounced peak in 2017 at $40.8 million and another elevated period in 2019–2020 at $25.0 million and $28.1 million. Activity then moderated, with annual obligations generally ranging from $0 to $15.0 million from 2021 through 2025 and the lowest point in 2021 at $0. Award counts are also concentrated in a few years, led by 2018 with five awards and otherwise 1–3 awards annually, indicating episodic rather than steady obligation patterns.

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.