Vehicle Number

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

Federal procurement page for vehicle number associated with agency 7505 and PIID HHSO100201700014C over the last 10 years.

This page summarizes award activity for vehicle number under agency 7505 for PIID HHSO100201700014C across the last 10 years. The record shows 10 award actions with total obligations of 59.20 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect 59,203,413.05 in obligated dollars and an average action value of 5,920,341.31.

Agency ID
7505
PIID
HHSO100201700014C
Type
Vehicle
Total Obligated
59.20 million
59,203,413.05
Actions
10
Average Action Value
5,920,341.31

Overview

Over the last 10 years, this vehicle record for agency 7505 and PIID HHSO100201700014C shows 10 award actions. Total obligated funding is 59,203,413.05, with an average action value of 5,920,341.31.

How to use this page

Use this page to review the obligation pattern tied to vehicle number for the identified PIID and agency. The figures support quick comparison of total spend and action volume within the selected analysis 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 = 'HHSO100201700014C'
    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 62,378,054.00 62.38 million 9
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE -3,174,640.95 -3.17 million 1

Insight

Within this 10-year window, obligations on this vehicle are concentrated in agency ID 7505, with the Office of Assistant Secretary for Preparedness and Response accounting for $62.38 million across 9 awards. The Administration for Strategic Preparedness and Response shows one award with negative obligations of $3.17 million, indicating a downward adjustment or deobligation within the same agency ID. Overall, activity is highly concentrated in a single top agency, with limited distribution and a net positive obligated amount.

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 = 'HHSO100201700014C'
        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 = 'HHSO100201700014C'
    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 59,203,413.05 59.20 million 10

Insight

The vehicle’s obligations are fully concentrated in NAICS 541711, Research and Development in Biotechnology, with $59.20 million across 10 awards over the 10-year window. This indicates a narrow procurement profile, with no evidence in the provided rows of material diversification across other NAICS categories.

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 = 'HHSO100201700014C'
    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) 41,588,496.00 41.59 million 3
6505 DRUGS AND BIOLOGICALS 20,789,558.00 20.79 million 4
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT -3,174,640.95 -3.17 million 3

Insight

Obligations for PIID HHSO100201700014C are concentrated in two positive PSC categories, with AN13 R&D-Medical: Biomedical (Advanced Development) accounting for $41.59 million across 3 awards and 6505 Drugs and Biologicals accounting for $20.79 million across 4 awards. A smaller negative obligation appears under an AN13 health R&D services/experimental development description at -$3.17 million across 3 awards, indicating downward adjustment or deobligation activity within the same broad PSC family. Overall, the distribution is weighted toward medical R&D and pharmaceutical/biological goods, with limited spread across PSCs.

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 = 'HHSO100201700014C'
    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 31,967,000.00 31.97 million 1
2018 12,000,000.00 12.00 million 2
2019 9,621,496.00 9.62 million 2
2020 8,789,558.00 8.79 million 2
2022 0.00 0.00 2
2025 -3,174,640.95 -3.17 million 1

Insight

Obligations for PIID HHSO100201700014C are concentrated in the early years of the 10-year window, with 2017 accounting for 31.97 million across 1 award, followed by lower obligations in 2018 through 2020. Funding declined from 12.00 million in 2018 to 9.62 million in 2019 and 8.79 million in 2020, indicating a steady downward trend after the initial peak. Activity appears sporadic after 2020, with 0.00 obligated in 2022 across 2 awards and a negative obligated amount of 3.17 million in 2025, suggesting downward adjustments rather than new positive funding.

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.