This award page summarizes procurement activity for award number HT940216C0001 under Agency ID 9700 during the last full year. The record includes 29 actions with total obligated amounts of $518,485,948 and an average action value of $17,878,825.79.
Award Number
Award Number 9700 / HT940216C0001 Federal Contract Action Summary (Last Year)
Award number HT940216C0001 for Agency ID 9700 shows 29 recorded actions in the last full year and total obligations of $518.49 million.
Totals reflect the analysis window provided and may differ from other reporting periods or downstream summaries.
Overview
The award record for HT940216C0001 shows sustained activity across 29 actions in the last full year. Total obligated value reached $518,485,948, with an average action value of $17,878,825.79. This page is structured to support review of obligation volume and action frequency for the award within the stated period.
How to use this page
Use this page to identify the award-level obligation total and the number of actions recorded during the analysis window. The summary supports quick comparison against other awards by total obligated amount, action count, and average action value.
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 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) | 518,485,948.00 | 518.49 million | 29 |
Insight
Within the 1-year window for award PIID HT940216C0001, obligations are concentrated entirely within the Defense Health Agency (DHA), which accounts for the full $518.49 million identified. DHA also represents all 29 awards in the result set, indicating a complete concentration of activity in a single top agency. This distribution suggests no diversification across agencies for this award during the period reviewed.
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 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 | 518,485,948.00 | 518.49 million | 29 |
Insight
Within the 1-year window for PIID HT940216C0001 under agency 9700, obligations are fully concentrated with HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0). The vendor received $518.49 million across 29 awards, indicating repeated funding activity rather than a broad vendor distribution. This pattern suggests the award record is highly concentrated in a single incumbent provider.
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 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 | 518,485,948.00 | 518.49 million | 29 |
Insight
Over the past 1 year, this award activity is entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The entity has 29 awards in this category with $518.49 million obligated, indicating a highly focused procurement profile within a single industry classification. With no other NAICS codes present in the provided data, there is no evidence here of diversification across sectors.
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 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 | 518,485,948.00 | 518.49 million | 29 |
Insight
Within the 1-year window for award HT940216C0001 under agency 9700, obligations are fully concentrated in PSC Q201, Medical- Managed Healthcare. The single PSC accounts for $518.49 million across 29 awards, indicating a highly focused procurement profile rather than a diversified PSC mix. This concentration suggests the award activity is driven by a consistent managed healthcare requirement.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 518,485,948.00 | 518.49 million | 29 |
Insight
In the 1-year window, this award recorded $518.49 million in total obligated dollars across 29 actions in FY 2025. Obligations are highly concentrated in a single year within the period provided, indicating that activity is not distributed across multiple years in this window. The volume of actions alongside the obligation level suggests sustained award activity, but no year-over-year trend can be assessed from the available data.
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.