Award Number

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

FPDS award number HT940216C0002 for agency 9700 shows procurement activity over the last 5 years.

This page summarizes federal award record activity for PIID HT940216C0002 within agency 9700 across the last 5 years. It reflects 348 award actions with total obligated dollars of 14.31 billion and an average action value of 41.13 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and may reflect multiple award actions under the same PIID.

Agency ID
9700
PIID
HT940216C0002
Type
Award
Total Obligated
14.31 billion
14,313,533,145.79
Actions
348
Average Action Value
41,130,842.37

Overview

The record for PIID HT940216C0002 covers 348 award actions in the last 5 years and totals 14,313,533,145.79 in obligated dollars. The average action value is 41,130,842.37, indicating a high-dollar award history within agency 9700.

How to use this page

Use this page to review the scale and cadence of award activity tied to PIID HT940216C0002. The action count and obligated totals provide a concise starting point for procurement analysis, reporting, and record lookup.

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 = 'HT940216C0002'
    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) 14,313,533,145.79 14.31 billion 348

Insight

Over the past 5 years, obligations associated with PIID HT940216C0002 are fully concentrated in Defense Health Agency (DHA), which accounts for $14.31 billion across 348 awards. This indicates a highly focused obligation pattern with no other agencies represented in the provided rows. The volume of awards suggests repeated activity within a single agency relationship rather than broad distribution across the agency landscape.

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 = 'HT940216C0002'
        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
HEALTH NET FEDERAL SERVICES, LLC 3TJW0 14,313,533,145.79 14.31 billion 348

Insight

Over the 5-year window, obligations under PIID HT940216C0002 are fully concentrated with a single vendor, HEALTH NET FEDERAL SERVICES, LLC (CAGE 3TJW0). The vendor accounts for $14.31 billion across 348 awards, indicating a highly concentrated award pattern with repeated obligating activity to the same contractor. This distribution suggests limited vendor dispersion for this award within the period reviewed.

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 = 'HT940216C0002'
    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 14,313,533,145.79 14.31 billion 348

Insight

Obligations for this award are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with $14.31 billion obligated across 348 actions in the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of actions suggests repeated activity within the same industry classification rather than a broad mix of contract types.

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 = 'HT940216C0002'
    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 11,308,906,659.58 11.31 billion 267
Q201 MEDICAL- MANAGED HEALTHCARE 3,004,626,486.21 3.00 billion 81

Insight

Award activity under PIID HT940216C0002 is highly concentrated in PSC Q201 categories, with Medical- General Health Care accounting for the largest share at $11.31 billion across 267 awards. Medical- Managed Healthcare is the only other PSC listed and is materially smaller at $3.00 billion across 81 awards. Together, these two PSC entries indicate a narrow PSC distribution dominated by health care services obligations.

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 = 'HT940216C0002'
    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 3,558,330,612.25 3.56 billion 97
2022 3,301,466,162.18 3.30 billion 72
2023 4,006,215,707.84 4.01 billion 78
2024 2,992,749,165.36 2.99 billion 78
2025 454,771,498.16 454.77 million 23

Insight

Obligations for PIID HT940216C0002 are concentrated in the 2021–2024 period, with annual totals remaining near or above $3.0 billion through 2024 before dropping sharply in 2025 to $454.77 million. The highest annual obligation occurred in 2023 at $4.01 billion, while award counts were relatively stable in 2023–2024 at 78 awards each, indicating sustained activity despite year-to-year funding variation. The lower 2022 total of $3.30 billion and the reduced 2025 count of 23 awards suggest a partial-year or reduced-obligation period rather than a steady annual pattern.

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.