Vehicle Number

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

Federal procurement analysis page for vehicle number under PIID HHSN276201500001I, covering 20 award actions over the last 10 years.

This page summarizes obligated spending tied to vehicle number for Agency ID 7529 during the last 10 years. The record shows total obligated funding of 38.91 million across 20 award actions, with an average action value of 1,945,453.86.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated amounts are shown in both readable and exact form, and action counts reflect the available award history for the analysis window.

Agency ID
7529
PIID
HHSN276201500001I
Type
Vehicle
Total Obligated
38.91 million
38,909,077.18
Actions
20
Average Action Value
1,945,453.86

Overview

The available record for vehicle number under PIID HHSN276201500001I shows 38,909,077.18 in total obligated funding across 20 award actions. Over the same period, the average action value was 1,945,453.86, indicating a relatively concentrated set of obligations within the last 10 years.

How to use this page

Use this page to review the obligation pattern associated with vehicle number for Agency ID 7529 and to compare activity across the 10-year window. The figures provided here support basic procurement review by showing total spend, action volume, and average action size without adding information beyond the underlying record.

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 = 'HHSN276201500001I'
    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 38,909,077.18 38.91 million 20

Insight

For PIID HHSN276201500001I over the 10-year window, all reported obligation is concentrated in a single top agency: the National Institutes of Health. NIH accounts for $38.91 million across 20 awards, indicating repeated use of this vehicle by the same agency rather than a broadly distributed award pattern. The available data show no other agencies in this section, so the obligation profile is fully concentrated within NIH.

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 = 'HHSN276201500001I'
        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 = 'HHSN276201500001I'
    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
519120 LIBRARIES AND ARCHIVES 38,909,077.18 38.91 million 20

Insight

Obligations under this vehicle are fully concentrated in NAICS 519120, Libraries and Archives, with $38.91 million across 20 awards over the 10-year window. This indicates a narrow industrial focus rather than a diversified NAICS distribution. The award volume suggests repeated use of the vehicle within a single NAICS category, with spending concentrated in that procurement area.

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 = 'HHSN276201500001I'
    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
7630 NEWSPAPERS AND PERIODICALS 38,909,077.18 38.91 million 20

Insight

Obligations under PIID HHSN276201500001I are fully concentrated in PSC 7630, Newspapers and Periodicals, with $38.91 million across 20 awards over the 10-year window. This indicates a narrow product scope and consistent procurement activity within a single PSC, rather than a diversified mix of supplies or services. The award distribution suggests repeated use of the vehicle for the same category of requirement.

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 = 'HHSN276201500001I'
    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 9,650,172.74 9.65 million 3
2017 10,592,602.64 10.59 million 5
2018 9,717,000.00 9.72 million 4
2019 8,585,390.00 8.59 million 3
2020 363,911.80 363.91 thousand 5

Insight

Obligations for PIID HHSN276201500001I were concentrated in 2016–2019, with annual funding remaining in a relatively narrow range of about $8.59 million to $10.59 million. Award activity during that period ranged from 3 to 5 awards per year, indicating steady but moderate transaction volume. In 2020, obligated dollars dropped sharply to $363.91 thousand while award count remained at 5, suggesting a marked reduction in funding level rather than in award frequency.

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.