Vehicle Number

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

Vehicle number record for Agency ID 7505 and PIID HHSO100201300011C, showing 10 award actions and $38.83 million obligated over the last 5 years.

This page summarizes the vehicle number entry associated with Agency ID 7505 and PIID HHSO100201300011C for the last 5 years. Total obligated amounts to $38,831,083.45 across 10 award actions, with an average action value of $3,883,108.35.

Generated at 03/21/2026

Analysis period: Last 5 years

All amounts reflect the provided award data for the last 5 years and may differ from rounded display values.

Agency ID
7505
PIID
HHSO100201300011C
Type
Vehicle
Total Obligated
38.83 million
38,831,083.45
Actions
10
Average Action Value
3,883,108.35

Overview

The vehicle number record is tied to PIID HHSO100201300011C under Agency ID 7505. In the last 5 years, the record includes 10 award actions totaling $38,831,083.45, or $38.83 million when rounded for display.

How to use this page

Use this page to review the obligation level and action count associated with this vehicle number record. The average action value is $3,883,108.35, which provides a simple reference point for comparing the scale of individual award actions within the same period.

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 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 23,965,538.96 23.97 million 5
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 14,865,544.49 14.87 million 5

Insight

Obligations are concentrated within agency 7505, with the Office of Assistant Secretary for Preparedness and Response accounting for $23.97 million across 5 awards. The Administration for Strategic Preparedness and Response also records 5 awards but a lower obligated total of $14.87 million, indicating a smaller share of funding within the same award count. Over the 5-year window, the vehicle’s obligations are distributed across these two related entities, with spend weighted more heavily to the Office of Assistant Secretary for Preparedness and Response.

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 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 = 'HHSO100201300011C'
    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 38,831,083.45 38.83 million 10

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated in NAICS 541711, Research and Development in Biotechnology. This category accounts for $38.83 million across 10 awards, indicating a narrow procurement profile with all recorded activity tied to a single NAICS code. The distribution suggests specialized use of the vehicle rather than broad category diversification.

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 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
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 38,831,083.45 38.83 million 10

Insight

Obligations for PIID HHSO100201300011C are fully concentrated in PSC AN13, Health R&D Services; Health Care Services; Experimental Development, totaling $38.83 million across 10 awards over the 5-year window. This indicates a narrow product/service profile with no observable PSC diversification in the provided data. The award pattern suggests repeated procurement of the same service category rather than a broad mix of requirements.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 concentrated in 2022–2024, with annual obligated amounts ranging from $8.97 million to $15.00 million and the highest level in 2023. Award activity is similarly clustered in those years, increasing from 2 awards in 2022 to 3 awards in both 2023 and 2024. Activity is limited at the endpoints of the window, with 1 award in 2021 and 2025 and no obligated dollars reported in 2021, followed by a lower obligation level of $2.68 million in 2025.

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.