Vehicle Number

Vehicle Number 7570 / HHSP233201600080C Federal Contract Action Summary (Last 10 Years)

Federal procurement analysis for vehicle number HHSP233201600080C in Agency ID 7570 over the last 10 years.

This page summarizes award activity for vehicle number HHSP233201600080C within Agency ID 7570. The record shows 8 award actions and total obligations of 50.58 million dollars.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and reflect a readable obligated amount of 50.58 million dollars and an exact total of 50,583,834 dollars.

Agency ID
7570
PIID
HHSP233201600080C
Type
Vehicle
Total Obligated
50.58 million
50,583,834.00
Actions
8
Average Action Value
6,322,979.25

Overview

Over the last 10 years, vehicle number HHSP233201600080C recorded 8 award actions under Agency ID 7570. The exact obligated total is 50,583,834 dollars, which rounds to 50.58 million dollars. The average action value is 6,322,979.25 dollars.

How to use this page

Use this page to review award volume and obligated value for the identified vehicle record. The figures provide a compact view of activity by total obligations, action count, and average action value within the stated 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 = '7570' AND content__IDV__contractID__IDVID__PIID = 'HHSP233201600080C'
    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
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 50,583,834.00 50.58 million 8

Insight

Over the 10-year window, all reported obligations for PIID HHSP233201600080C are concentrated in a single agency: the Office of the Assistant Secretary for Administration (ASA), with $50.58 million across 8 awards. This indicates a fully concentrated obligation profile with no distribution across other agencies in the provided data. The award count suggests recurring use of the vehicle within the same agency rather than broad cross-agency adoption.

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 = '7570' AND content__IDV__contractID__IDVID__PIID = 'HHSP233201600080C'
        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 = '7570' AND content__IDV__contractID__IDVID__PIID = 'HHSP233201600080C'
    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
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 50,583,834.00 50.58 million 8

Insight

Within the 10-year window for vehicle HHSP233201600080C under Agency ID 7570, obligations are fully concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This category accounts for $50.58 million across 8 awards, indicating a narrow obligation profile with all reported activity clustered in a single NAICS code. The concentration suggests this vehicle has been used consistently for consulting-related services rather than a diversified mix of procurement 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 = '7570' AND content__IDV__contractID__IDVID__PIID = 'HHSP233201600080C'
    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
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 50,583,834.00 50.58 million 8

Insight

Over the 10-year window, obligations for this vehicle are entirely concentrated in PSC R408, Support- Professional: Program Management/Support. This PSC accounts for the full $50.58 million obligated across 8 awards, indicating a narrow and consistent use of the vehicle for program management/support services. No other PSCs are present in the provided rows, so there is no evidence of broader PSC diversification within this selection.

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 = '7570' AND content__IDV__contractID__IDVID__PIID = 'HHSP233201600080C'
    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 11,336,918.00 11.34 million 2
2017 12,101,137.00 12.10 million 1
2018 13,146,140.00 13.15 million 3
2019 13,094,097.00 13.09 million 1
2020 905,542.00 905.54 thousand 1

Insight

Obligations for this vehicle were concentrated in 2016 through 2019, ranging from $11.34 million to $13.15 million annually, with award activity limited to one to three awards per year. Funding was relatively stable across those four years, peaking in 2018 and remaining near $13 million in 2019. In 2020, obligated value dropped sharply to $905.54 thousand with one award, indicating a marked reduction in annual funding level.

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.