Award Number

Award Number 9700 / HT940223C0001 Federal Contract Action Summary (Last Year)

Federal procurement award record for PIID HT940223C0001 under agency ID 9700, showing last full year obligation and action activity.

This award page summarizes the procurement activity for PIID HT940223C0001 under agency ID 9700 during the last full year. The record shows 77 actions and total obligations of $5.43 billion.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may be subject to future update or correction.

Agency ID
9700
PIID
HT940223C0001
Type
Award
Total Obligated
5.43 billion
5,425,036,046.18
Actions
77
Average Action Value
70,455,013.59

Overview

In the last full year, PIID HT940223C0001 recorded 77 award actions with total obligations of $5,425,036,046.18. The average action value was $70,455,013.59, indicating substantial activity across the award period. The readable total obligated value is $5.43 billion.

How to use this page

Use this page to review award-level obligation and action patterns for agency ID 9700 over the selected analysis window. The figures support basic comparison of total funding and average action size without inferring details beyond the provided award record.

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 = 'HT940223C0001'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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) 5,425,036,046.18 5.43 billion 77

Insight

Within the 1-year window for award HT940223C0001, all reported obligation activity is concentrated in Defense Health Agency (DHA), which accounts for $5.43 billion across 77 awards. This indicates a highly concentrated obligation profile with no other agencies represented in the provided results. The distribution suggests DHA is the sole material funding source captured for this award in the queried period.

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 = 'HT940223C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 5,425,036,046.18 5.43 billion 77

Insight

HUMANA GOVERNMENT BUSINESS, INC. accounts for all reported top-vendor obligations in this 1-year window, with $5.43 billion obligated across 77 awards. This indicates a highly concentrated vendor profile for PIID HT940223C0001, with obligations clustered in a single contractor rather than distributed across multiple vendors. The 77 awards suggest repeated funding activity with the same vendor, supporting a sustained procurement relationship.

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 = 'HT940223C0001'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 5,425,036,046.18 5.43 billion 77

Insight

The award is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for the entire reported obligation total of $5.43 billion across 77 awards. This indicates a highly concentrated funding profile with no diversification across other NAICS codes in the 1-year window. The volume of awards suggests repeated obligation activity within the same industry classification rather than a broad mix of procurement categories.

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 = 'HT940223C0001'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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- MANAGED HEALTHCARE 5,425,036,046.18 5.43 billion 77

Insight

Obligations for this award are fully concentrated in PSC Q201, Medical- Managed Healthcare, with $5.43 billion obligated across 77 awards. This indicates a highly concentrated procurement profile with no diversification across PSCs in the provided window. The award appears to be driven entirely by a single service category, making Q201 the dominant and only reported PSC in this period.

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 = 'HT940223C0001'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 5,425,036,046.18 5.43 billion 77

Insight

In the 1-year window, obligations for PIID HT940223C0001 are concentrated entirely in FY 2025, with $5.43 billion obligated across 77 awards. This indicates a highly concentrated annual funding pattern rather than a multi-year distribution. The average obligation per award is substantial, suggesting sizable individual actions within the period.

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