This page summarizes federal procurement activity for award number HT940213C0012 under agency ID 9700 across the last 10 years. The award shows total obligated funding of 2.86 billion across 79 actions, with an average action value of 36,236,618.9.
Award Number
Award Number 9700 / HT940213C0012 Federal Contract Action Summary (Last 10 Years)
Analysis of award number HT940213C0012 for agency 9700 over the last 10 years, showing obligated dollars and action history.
Dollar totals are based on the provided analysis window and reflect the exact obligated amount of 2,862,692,893.27.
Overview
Award number HT940213C0012 has 79 recorded actions in the last 10 years. Total obligated funding is 2,862,692,893.27, with an average action value of 36,236,618.9. The page is organized to support review of obligation scale and action frequency for this award.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for agency ID 9700. It provides a compact reference for comparing this award against other procurement records or for checking activity within the stated 10-year window.
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 = 'HT940213C0012'
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) | 2,862,692,893.27 | 2.86 billion | 79 |
Insight
Obligations for PIID HT940213C0012 over the 10-year window are fully concentrated in a single top agency: the Defense Health Agency (DHA). DHA accounts for $2.86 billion across 79 awards, indicating a highly concentrated obligation pattern with no distribution across other agencies in the provided data. This level of concentration suggests the award relationship is primarily tied to DHA rather than broadly distributed within agency 9700.
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 = 'HT940213C0012'
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 |
|---|---|---|---|---|
| MARTIN'S POINT HEALTH CARE, INC. | 1NFZ9 | 2,440,609,753.79 | 2.44 billion | 61 |
| MARTIN'S POINT HEALTH CARE, INC. | 422,083,139.48 | 422.08 million | 18 |
Insight
Obligations for PIID HT940213C0012 are highly concentrated in MARTIN'S POINT HEALTH CARE, INC., which accounts for 2.44 billion across 61 awards under CAGE 1NFZ9. A second MARTIN'S POINT HEALTH CARE, INC. entry without a CAGE code adds 422.08 million across 18 awards, indicating additional obligated value recorded under the same vendor name but a separate identifier field. Over the 10-year window, the vendor activity is dominated by this single contractor name, with no other vendors reflected in the provided rows.
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 = 'HT940213C0012'
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 | 2,862,692,893.27 | 2.86 billion | 79 |
Insight
Over the 10-year window, award PIID HT940213C0012 under Agency ID 9700 is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This NAICS accounts for 2.86 billion in obligated funds across 79 awards, indicating sustained activity in a single industry classification with no diversification across other NAICS codes in the provided data.
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 = 'HT940213C0012'
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 | 2,871,408,602.99 | 2.87 billion | 77 |
| Q201 | MEDICAL- MANAGED HEALTHCARE | -8,715,709.72 | -8.72 million | 2 |
Insight
Award activity is overwhelmingly concentrated in PSC Q201 Medical-General Health Care, with $2.87 billion obligated across 77 awards over the 10-year window. A much smaller offset appears under PSC Q201 Medical-Managed Healthcare, with -$8.72 million across 2 awards, indicating minimal negative adjustments relative to the primary obligation base. Overall, the award is highly concentrated in a single PSC category, with only a limited countervailing amount in the related second row.
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 = 'HT940213C0012'
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 | 333,483,139.48 | 333.48 million | 16 |
| 2017 | 323,100,000.00 | 323.10 million | 13 |
| 2018 | 594,245,000.00 | 594.25 million | 18 |
| 2019 | 188,527,511.45 | 188.53 million | 8 |
| 2020 | 347,363,166.96 | 347.36 million | 6 |
| 2021 | 398,646,671.25 | 398.65 million | 6 |
| 2022 | 374,972,668.56 | 374.97 million | 7 |
| 2023 | 311,070,445.29 | 311.07 million | 3 |
| 2025 | -8,715,709.72 | -8.72 million | 2 |
Insight
Obligations for PIID HT940213C0012 are heavily concentrated in the mid-to-late period of the 10-year window, with the highest annual amount in 2018 at $594.25 million across 18 awards. Funding then declined to $188.53 million in 2019, rebounded through 2020–2022 to a range of $347.36 million to $398.65 million, and fell again in 2023 to $311.07 million on only 3 awards. Award counts generally decreased over time, indicating fewer actions carrying substantial dollar volume. 2025 reflects a negative obligation of $8.72 million across 2 awards, which may indicate deobligation activity.
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.