Vehicle Number

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

Procurement summary for vehicle number HHSO100201700030C for Agency ID 7505 over the last 10 years.

This page summarizes award activity for vehicle number HHSO100201700030C under Agency ID 7505 during the last 10 years. The record shows 19 award actions with total obligated dollars of 38.22 million and an average action value of 2,011,782.21.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals shown here reflect the provided exact obligated amount of 38,223,862 across 19 award actions.

Agency ID
7505
PIID
HHSO100201700030C
Type
Vehicle
Total Obligated
38.22 million
38,223,862.00
Actions
19
Average Action Value
2,011,782.21

Overview

The procurement record for vehicle number HHSO100201700030C shows 19 award actions across the last 10 years. Total obligated dollars equal 38,223,862, with an average action value of 2,011,782.21. This provides a compact view of the award volume tied to this vehicle identifier.

How to use this page

Use this page to review obligation totals, action count, and average action value for vehicle number HHSO100201700030C. The figures are useful for comparing award activity over time within Agency ID 7505 and for tracking the scale of spending associated with this PIID.

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 = 'HHSO100201700030C'
    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 38,223,862.00 38.22 million 19

Insight

Over the 10-year window, obligations for this vehicle are entirely concentrated in a single top agency: the Office of Assistant Secretary for Preparedness and Response, which accounts for $38.22 million across 19 awards. This indicates that the vehicle’s activity is fully centered within one agency rather than distributed across multiple agencies. The award count suggests repeated use within the same organizational owner, with no evidence here of broader interagency utilization.

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 = 'HHSO100201700030C'
        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 = 'HHSO100201700030C'
    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 38,223,862.00 38.22 million 19

Insight

Across the 10-year window, obligations for vehicle HHSO100201700030C are fully concentrated in NAICS 541711, Research and Development in Biotechnology. This NAICS accounts for $38.22 million across 19 awards, indicating a focused procurement pattern with no diversification across additional NAICS codes in the provided data.

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 = 'HHSO100201700030C'
    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) 38,223,862.00 38.22 million 14
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 0.00 0.00 5

Insight

Obligations for PIID HHSO100201700030C are concentrated in PSC AN13, with 38.22 million obligated across 14 awards under R&D- Medical: Biomedical (Advanced Development). A second AN13 description, Health R&D Services; Health Care Services; Experimental Development, appears in 5 awards but carries no obligated value. This pattern indicates that funded activity is heavily concentrated in one PSC line, with limited award count outside the 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 = 'HHSO100201700030C'
    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 26,265,912.00 26.27 million 3
2018 1,488,120.00 1.49 million 4
2019 3,250,475.00 3.25 million 5
2020 7,219,355.00 7.22 million 2
2021 0.00 0.00 1
2022 0.00 0.00 4

Insight

Obligations are highly concentrated in 2017, which accounts for 26.27 million across 3 awards and far exceeds every later year in the 10-year window. Activity then declines sharply in 2018 and 2019, rises modestly in 2020, and falls to zero obligated dollars in 2021 and 2022 despite continued awards. This pattern indicates a front-loaded funding profile followed by intermittent, lower-value obligation 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.