Vehicle Number

Vehicle Number 7529 / HHSN272200700016I Federal Contract Action Summary (Last 10 Years)

Federal procurement record for vehicle number under agency ID 7529 and PIID HHSN272200700016I over the last 10 years.

This page summarizes award activity for vehicle number associated with agency ID 7529 and PIID HHSN272200700016I during the last 10 years. The record shows 52 award actions and total obligated funding of 82.84 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window, with exact obligated value of 82840345.67 and average action value of 1593083.57.

Agency ID
7529
PIID
HHSN272200700016I
Type
Vehicle
Total Obligated
82.84 million
82,840,345.67
Actions
52
Average Action Value
1,593,083.57

Overview

The procurement record for vehicle number under PIID HHSN272200700016I covers 52 award actions in the last 10 years. Total obligated value is 82.84 million, with an average action value of 1,593,083.57. This page presents the activity as reported for agency ID 7529.

How to use this page

Use this page to review the overall scale of award activity tied to this vehicle record and contract identifier. The totals and action count provide a compact summary for procurement analysis, trend review, and cross-reference with FPDS records.

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 = '7529' AND content__IDV__contractID__IDVID__PIID = 'HHSN272200700016I'
    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
7529 NATIONAL INSTITUTES OF HEALTH 82,840,345.67 82.84 million 52

Insight

Within the 10-year window for vehicle HHSN272200700016I, all recorded obligation is concentrated at the National Institutes of Health (agency ID 7529). NIH accounts for $82.84 million across 52 awards, indicating a fully concentrated agency distribution for this vehicle in the observed period. This pattern suggests the vehicle has been used exclusively or almost exclusively by NIH, with no obligation activity reflected for other agencies in the provided data.

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 = '7529' AND content__IDV__contractID__IDVID__PIID = 'HHSN272200700016I'
        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 = '7529' AND content__IDV__contractID__IDVID__PIID = 'HHSN272200700016I'
    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
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 82,840,345.67 82.84 million 52

Insight

For this vehicle over the 10-year window, obligations are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. This category accounts for $82.84 million across 52 awards, indicating a narrow service focus rather than a diversified NAICS mix. The volume of awards suggests repeated use of the vehicle within the same broad professional-services classification.

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 = '7529' AND content__IDV__contractID__IDVID__PIID = 'HHSN272200700016I'
    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
AD23 R&D- DEFENSE OTHER: SERVICES (ADVANCED DEVELOPMENT) 82,840,345.67 82.84 million 52

Insight

Over the 10-year window, obligations for PIID HHSN272200700016I are concentrated entirely in PSC AD23, R&D- Defense Other: Services (Advanced Development). This category accounts for $82.84 million across 52 awards, indicating a sustained procurement pattern centered on advanced development research services. The absence of additional PSCs in the provided rows suggests a highly concentrated spend profile rather than a diversified distribution across product or service types.

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 = '7529' AND content__IDV__contractID__IDVID__PIID = 'HHSN272200700016I'
    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 27,435,221.59 27.44 million 12
2017 18,648,420.81 18.65 million 11
2018 19,057,858.18 19.06 million 7
2019 20,428,500.14 20.43 million 13
2020 1,778,419.18 1.78 million 6
2022 -3,881,601.90 -3.88 million 2
2025 -626,472.33 -626.47 thousand 1

Insight

Obligations for PIID HHSN272200700016I were concentrated in the earlier years of the 10-year window, with annual funding of $18.65 million to $27.44 million across 2016–2019 and award counts ranging from 7 to 13. Activity declined sharply in 2020 to $1.78 million across 6 awards, followed by negative obligations in 2022 (-$3.88 million) and 2025 (-$626.47 thousand), indicating deobligations rather than new funding. Overall, the pattern reflects a front-loaded funding profile with limited and irregular activity in later years.

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.