This page presents the award record for HT940211C0003 for agency ID 9700 across the last 10 years. It shows 443 award actions with total obligated amounts of 7.34 billion dollars.
Award Number
Award Number 9700 / HT940211C0003 Federal Contract Action Summary (Last 10 Years)
Federal procurement profile for award number HT940211C0003 under agency ID 9700, summarizing obligations and action history over the last 10 years.
Amounts are based on the provided readable total obligated value of 7.34 billion and exact total obligated value of 7342160317.21.
Overview
The award record for HT940211C0003 shows 443 actions during the last 10 years, with total obligations of 7,342,160,317.21. The average action value is 16,573,725.32, which provides a simple measure of how value is distributed across the action history.
How to use this page
Use this page to review the obligation level and action volume associated with award HT940211C0003 under agency ID 9700. The figures support basic procurement analysis, including trend review, award sizing, and comparison against other award 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 = 'HT940211C0003'
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) | 7,342,160,317.21 | 7.34 billion | 443 |
Insight
Within the 10-year window for PIID HT940211C0003, obligations are fully concentrated in a single top agency: the Defense Health Agency (DHA). DHA accounts for $7.34 billion across 443 awards, indicating a highly concentrated award pattern with no distribution across multiple agencies in the provided results. This concentration suggests the award activity is dominated by DHA rather than being spread across the broader Department of Defense agency structure.
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 = 'HT940211C0003'
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 |
|---|---|---|---|---|
| HUMANA MILITARY HEALTHCARE SERVICES, INC. | 4,048,858,664.58 | 4.05 billion | 248 | |
| HUMANA MILITARY HEALTHCARE SERVICES, INC. | 050S0 | 3,293,301,652.63 | 3.29 billion | 195 |
Insight
Obligations are highly concentrated with HUMANA MILITARY HEALTHCARE SERVICES, INC., which accounts for the full set of top vendor entries in this view. The vendor name appears twice, once without a CAGE code and once with CAGE 050S0, indicating a strong share of activity concentrated under the same contractor identity. Over the 10-year window, these entries reflect 248 awards and $4.05 billion, with the CAGE-coded subset comprising 195 awards and $3.29 billion, suggesting most obligations flowed through that specific vendor record.
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 = 'HT940211C0003'
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 | 7,342,160,317.21 | 7.34 billion | 443 |
Insight
Over the 10-year window, this award is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The recorded activity totals $7.34 billion across 443 awards, indicating a sustained and highly focused contracting profile within a single industry code.
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 = 'HT940211C0003'
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 | 7,348,028,862.21 | 7.35 billion | 442 |
| Q201 | MEDICAL- MANAGED HEALTHCARE | -5,868,545.00 | -5.87 million | 1 |
Insight
Obligations under PIID HT940211C0003 are highly concentrated in PSC Q201, Medical- General Health Care, which accounts for 7.35 billion across 442 awards. A single offsetting obligation is recorded under PSC Q201, Medical- Managed Healthcare, at -5.87 million across 1 award, which is immaterial relative to the overall volume. Overall, the award profile is dominated by the general health care classification with only a minimal negative adjustment in the same PSC family.
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 = 'HT940211C0003'
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 | 4,071,472,045.19 | 4.07 billion | 232 |
| 2017 | 2,935,073,058.43 | 2.94 billion | 151 |
| 2018 | 341,483,755.79 | 341.48 million | 58 |
| 2019 | 2.80 | 2.80 | 1 |
| 2025 | -5,868,545.00 | -5.87 million | 1 |
Insight
Obligations for PIID HT940211C0003 are heavily concentrated in 2016 and 2017, which together account for more than 7.0 billion across 383 awards. Activity drops sharply in 2018 to 341.48 million across 58 awards, then falls to a single minimal obligation in 2019. The 2025 row reflects a negative obligation of 5.87 million on one award, indicating a downward adjustment rather than new positive spending.
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.