Vehicle Number

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

Analyst summary for vehicle number HHSO100201700022C under Agency ID 7505, covering obligated activity over the last 10 years.

This page presents procurement activity for vehicle number HHSO100201700022C associated with Agency ID 7505 across the last 10 years. Total obligations were $76.94 million across 18 award actions, with an average action value of $4.27 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated amount is $76,944,255 and the readable total is shown as $76.94 million.

Agency ID
7505
PIID
HHSO100201700022C
Type
Vehicle
Total Obligated
76.94 million
76,944,255.00
Actions
18
Average Action Value
4,274,680.83

Overview

Across the last 10 years, vehicle number HHSO100201700022C recorded 18 award actions with a total obligated amount of $76,944,255. The average action value was $4,274,680.83, indicating relatively large individual obligations within the observed period. This page is limited to the provided vehicle, agency, and PIID identifiers.

How to use this page

Use this page to review the scale of obligated activity tied to PIID HHSO100201700022C and Agency ID 7505. The summary supports quick comparison of total obligations, action count, and average action value without adding assumptions beyond the reported data.

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 = 'HHSO100201700022C'
    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 71,044,310.00 71.04 million 16
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 5,899,945.00 5.90 million 2

Insight

Obligations are highly concentrated within agency ID 7505, with the Office of Assistant Secretary for Preparedness and Response accounting for 71.04 million across 16 awards over the 10-year window. The Administration for Strategic Preparedness and Response received a much smaller share, 5.90 million across 2 awards. This distribution indicates that the identified vehicle activity is primarily concentrated in one organizational component, with limited funding spread to the second listed entity.

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 = 'HHSO100201700022C'
        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 = 'HHSO100201700022C'
    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
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 76,944,255.00 76.94 million 18

Insight

Within the 10-year window, obligations for this vehicle are fully concentrated in NAICS 541690, Other Scientific and Technical Consulting Services. This category accounts for $76.94 million across 18 awards, indicating a consistent procurement pattern rather than a diversified NAICS mix. The absence of additional NAICS codes in the provided rows suggests the vehicle has been used exclusively for this service category over the period reviewed.

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 = 'HHSO100201700022C'
    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,853,945.00 38.85 million 8
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 38,090,310.00 38.09 million 10

Insight

Obligations under this vehicle are concentrated in PSC AN13, with two AN13 descriptions accounting for nearly equal portions of funding over the 10-year window. The largest line is R&D-MEDICAL: BIOMEDICAL (ADVANCED DEVELOPMENT) at $38.85 million across 8 awards, closely followed by HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT at $38.09 million across 10 awards. The near parity in obligated dollars suggests a balanced distribution across related biomedical and health R&D activities rather than reliance on a single PSC use.

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 = 'HHSO100201700022C'
    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 24,050,303.00 24.05 million 1
2018 0.00 0.00 3
2019 7,748,990.00 7.75 million 2
2020 7,054,652.00 7.05 million 2
2021 4,695,664.00 4.70 million 3
2022 27,494,701.00 27.49 million 3
2023 0.00 0.00 3
2024 5,899,945.00 5.90 million 1

Insight

Obligations for vehicle HHSO100201700022C are uneven across the 2017–2024 window, with peaks in 2017 ($24.05 million) and 2022 ($27.49 million) and smaller funded amounts in 2019–2021 and 2024. Several years recorded award counts without obligated dollars, including 2018 and 2023, indicating activity but no corresponding obligations in those years. Overall, the pattern suggests episodic funding concentration rather than a steady annual obligation profile.

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.