Vehicle Number

Vehicle Number 7524 / HHSF223201000054I Federal Contract Action Summary (Last 10 Years)

Procurement analysis page for vehicle number under agency ID 7524 and PIID HHSF223201000054I, covering the last 10 years of award activity.

This page summarizes federal procurement activity for the vehicle entity labeled vehicle number. Over the last 10 years, it shows 4 award actions with total obligations of 39.62 million dollars and an average action value of 9,905,258.17 dollars.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts shown reflect the provided exact total obligated value of 39,621,032.68 and the corresponding readable figure of 39.62 million.

Agency ID
7524
PIID
HHSF223201000054I
Type
Vehicle
Total Obligated
39.62 million
39,621,032.68
Actions
4
Average Action Value
9,905,258.17

Overview

The record for vehicle number under PIID HHSF223201000054I shows 4 award actions in the last 10 years. Total obligated value is 39,621,032.68, with an average action value of 9,905,258.17. This page is limited to the inputs provided and does not infer vehicle characteristics beyond the label.

How to use this page

Use this page to review obligation levels and action count tied to the listed vehicle entity and agency ID 7524. The figures support basic trend review for the award vehicle, but the dataset provided here does not include line-item detail, performance terms, or action dates.

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 = '7524' AND content__IDV__contractID__IDVID__PIID = 'HHSF223201000054I'
    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
7524 FOOD AND DRUG ADMINISTRATION 39,621,032.68 39.62 million 4

Insight

Within the 10-year window for PIID HHSF223201000054I, all reported obligations in the top_agencies section are concentrated in the Food and Drug Administration. The agency accounts for $39.62 million across 4 awards, indicating a narrow award distribution rather than broad agency dispersion. This pattern suggests the vehicle’s activity is wholly attributable to a single awarding agency 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 = '7524' AND content__IDV__contractID__IDVID__PIID = 'HHSF223201000054I'
        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 = '7524' AND content__IDV__contractID__IDVID__PIID = 'HHSF223201000054I'
    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
541519 OTHER COMPUTER RELATED SERVICES 39,621,032.68 39.62 million 4

Insight

Obligations under PIID HHSF223201000054I are fully concentrated in NAICS 541519, Other Computer Related Services, with $39.62 million across 4 awards over the 10-year window. This indicates a narrow service profile and limited NAICS diversification for the vehicle. The award pattern suggests recurring use of the same technical service category rather than broad spending across multiple industries.

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 = '7524' AND content__IDV__contractID__IDVID__PIID = 'HHSF223201000054I'
    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
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 39,621,032.68 39.62 million 4

Insight

Obligations are fully concentrated in PSC D316, IT and Telecom–Telecommunications Network Management, with $39.62 million across 4 awards. This indicates a narrow product/service mix for the vehicle over the 10-year window, with no evidence in the provided data of meaningful PSC diversification. The relatively small award count suggests a limited number of actions accounted for the full obligated value.

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 = '7524' AND content__IDV__contractID__IDVID__PIID = 'HHSF223201000054I'
    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 3,685,382.84 3.69 million 3
2017 35,935,649.84 35.94 million 1

Insight

Obligations under PIID HHSF223201000054I are highly concentrated in 2017, when a single award accounted for $35.94 million, compared with $3.69 million across three awards in 2016. The year-over-year increase indicates a sharp shift in funding volume rather than a broad, sustained distribution across multiple awards. Over this 10-year window, activity is limited to these two years, suggesting the vehicle’s obligated value was episodic and concentrated.

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.