This page summarizes obligation and action history for award HT940210C0002 across the last 10 years. The record shows 334 award actions and total obligated funding of 5,814,469,557.53.
Award Number
Award Number 9700 / HT940210C0002 Federal Contract Action Summary (Last 10 Years)
Procurement analysis for award number HT940210C0002 under agency ID 9700, covering the last 10 years of reported action data.
Totals reflect the provided 10-year analysis window and may differ from other federal reporting views due to timing or aggregation rules.
Overview
The award record for HT940210C0002 shows 334 actions within the selected 10-year window, with total obligated funding of 5,814,469,557.53. The average action value is 17,408,591.49, indicating a large-dollar award with repeated activity over time.
How to use this page
Use this page to review the overall funding level and action volume tied to award HT940210C0002. It is useful for identifying whether the award has had steady activity, concentrated obligations, or unusually large actions within the reported period.
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 = 'HT940210C0002'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,814,469,557.53 | 5.81 billion | 334 |
Insight
For award PIID HT940210C0002 over the 10-year window, obligations are concentrated entirely within Defense Health Agency (DHA), totaling $5.81 billion across 334 awards. This indicates a highly centralized obligation pattern with no other top agencies present in the provided rows. The volume of awards suggests repeated award activity within the same agency rather than broad distribution 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 = 'HT940210C0002'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 3,225,686,269.86 | 3.23 billion | 168 | |
| HEALTH NET FEDERAL SERVICES, LLC | 3TJW0 | 2,588,783,287.67 | 2.59 billion | 166 |
Insight
Award obligations for PIID HT940210C0002 are highly concentrated in HEALTH NET FEDERAL SERVICES, LLC, which accounts for $3.23 billion across 168 awards. The same vendor also appears under CAGE code 3TJW0 with $2.59 billion across 166 awards, indicating substantial obligation volume tied to a single contractor identity across both entries. This concentration suggests the award activity is dominated by one vendor with minor variation in identifier formatting or registration linkage.
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 = 'HT940210C0002'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,814,469,557.53 | 5.81 billion | 334 |
Insight
Award HT940210C0002 under agency 9700 is entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, over the 10-year window. This NAICS accounts for $5.81 billion across 334 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated obligation activity within the same industry category rather than a mixed industrial base.
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 = 'HT940210C0002'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 5,844,011,010.93 | 5.84 billion | 333 |
| Q201 | MEDICAL- MANAGED HEALTHCARE | -29,541,453.40 | -29.54 million | 1 |
Insight
Obligations for PIID HT940210C0002 are highly concentrated in PSC Q201, with 333 awards totaling $5.84 billion for Medical- General Health Care. A single offsetting obligation appears under PSC Q201 for Medical- Managed Healthcare, at -$29.54 million across 1 award, indicating a comparatively minor downward adjustment relative to the overall award volume. Over the 10-year window, the PSC profile is dominated by the medical general health care category, with the negative entry having limited impact on the total.
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 = 'HT940210C0002'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 3,227,811,660.14 | 3.23 billion | 157 |
| 2017 | 2,402,108,087.08 | 2.40 billion | 111 |
| 2018 | 213,172,503.33 | 213.17 million | 59 |
| 2019 | 918,760.38 | 918.76 thousand | 6 |
| 2025 | -29,541,453.40 | -29.54 million | 1 |
Insight
Obligations for PIID HT940210C0002 are heavily concentrated in 2016 and 2017, which account for the vast majority of reported dollars at 3.23 billion and 2.40 billion, respectively, across 157 and 111 awards. Funding then falls sharply in 2018 to 213.17 million across 59 awards, and drops to under 1 million in 2019 across 6 awards, indicating a steep decline in annual activity. The 2025 entry reflects a single negative obligation of 29.54 million, consistent with a deobligation or downward adjustment rather than new funding.
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.