Award Number

Award Number 9700 / HT940216C0001 Federal Contract Action Summary (Last 5 Years)

Analysis of award number HT940216C0001 for agency 9700 over the last 5 years.

This page summarizes federal procurement activity for award number HT940216C0001. Over the last 5 years, the award shows 358 actions and $31.22 billion in obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar values are shown as provided: readable total obligated is $31.22 billion and exact total obligated is $31,221,145,568.99.

Agency ID
9700
PIID
HT940216C0001
Type
Award
Total Obligated
31.22 billion
31,221,145,568.99
Actions
358
Average Action Value
87,209,903.82

Overview

The award record for HT940216C0001 shows 358 actions in the last 5 years, with total obligated value of $31,221,145,568.99. The average action value is $87,209,903.82, which indicates a high-value award with repeated activity across the analysis window. This page is structured to support review of award-level procurement history for agency 9700.

How to use this page

Use this page to review award activity at the PIID level and compare obligation patterns across actions in the selected time window. The totals and average action value provide a quick measure of the award's scale and transaction frequency. This is most useful for procurement analysis, reporting, and cross-checking award-level records.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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
97DH DEFENSE HEALTH AGENCY (DHA) 31,221,145,568.99 31.22 billion 358

Insight

Within the 5-year window for PIID HT940216C0001, obligation activity is fully concentrated in a single top agency: Defense Health Agency (DHA) (97DH). DHA accounts for $31.22 billion across 358 awards, indicating that the award’s activity is heavily concentrated within one agency rather than distributed across multiple agencies.

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__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
HUMANA GOVERNMENT BUSINESS, INC. 050S0 31,221,145,568.99 31.22 billion 358

Insight

All reported obligations in the 5-year window are concentrated with HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0), which accounts for $31.22 billion across 358 awards under PIID HT940216C0001. This indicates a highly concentrated vendor profile with no other vendors represented in the provided data. The award activity reflects repeated obligation to a single supplier over the period rather than a distributed vendor base.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 31,221,145,568.99 31.22 billion 358

Insight

For award HT940216C0001 over the 5-year window, NAICS 524114 (Direct Health and Medical Insurance Carriers) accounts for the full reported obligated amount of $31.22 billion across 358 awards. This indicates complete concentration in a single NAICS category, with no diversification reflected in the provided data. The volume of awards suggests recurring procurement activity within this health insurance services classification.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
Q201 MEDICAL- GENERAL HEALTH CARE 25,097,440,477.51 25.10 billion 276
Q201 MEDICAL- MANAGED HEALTHCARE 6,123,705,091.48 6.12 billion 82

Insight

Obligations for this award are heavily concentrated in PSC Q201, with two Q201 classifications accounting for the full amount reported in the 5-year window. MEDICAL- GENERAL HEALTH CARE represents the larger share at $25.10 billion across 276 awards, while MEDICAL- MANAGED HEALTHCARE accounts for $6.12 billion across 82 awards. The distribution indicates sustained spending focused within the medical/general health care category, with a smaller but still substantial managed health care component.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 7,978,863,977.17 7.98 billion 101
2022 7,329,024,710.88 7.33 billion 76
2023 8,243,334,262.51 8.24 billion 75
2024 7,151,436,670.43 7.15 billion 77
2025 518,485,948.00 518.49 million 29

Insight

Obligations for PIID HT940216C0001 are highly concentrated across the five-year window, with annual funding remaining in a narrow band of roughly $7.15 billion to $8.24 billion from 2021 through 2024. The award count also stayed relatively stable over that period, ranging from 75 to 101 awards, indicating sustained activity rather than a broad shift in volume. In 2025, obligations drop sharply to $518.49 million across 29 awards, which likely reflects a partial-year or incomplete fiscal-year period rather than a continuation of prior annual levels.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.