Award Number

Award Number 9700 / HT940213C0009 Federal Contract Action Summary (Last 10 Years)

FPDS award record for PIID HT940213C0009 under agency ID 9700, showing obligations and action history over the last 10 years.

This award page summarizes procurement activity for PIID HT940213C0009 in agency ID 9700 during the last 10 years. The record shows 78 award actions and total obligated amounts of 3.31 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other reporting periods or filters.

Agency ID
9700
PIID
HT940213C0009
Type
Award
Total Obligated
3.31 billion
3,313,534,458.04
Actions
78
Average Action Value
42,481,211.00

Overview

The award record for PIID HT940213C0009 shows 78 actions in the last 10 years, with total obligated dollars of 3,313,534,458.04. The average action value is 42,481,211, indicating a large and active obligation history within the selected window.

How to use this page

Use this page to review the award's obligation totals, action count, and average action value for the defined analysis period. It is also useful for comparing this award against other procurement records filtered by agency ID 9700 or by PIID.

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 = 'HT940213C0009'
    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) 3,313,534,458.04 3.31 billion 78

Insight

For award PIID HT940213C0009 over the 10-year window, obligations are fully concentrated in DEFENSE HEALTH AGENCY (DHA), which accounts for the full $3.31 billion across 78 awards. This indicates a highly concentrated award profile with no other agencies represented in the provided rows. The volume of awards alongside the full obligation concentration suggests sustained agency-level activity within DHA.

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 = 'HT940213C0009'
        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
JOHNS HOPKINS MEDICAL SERVICES CORP 1NXX2 2,821,634,458.04 2.82 billion 61
JOHNS HOPKINS MEDICAL SERVICES CORP 491,900,000.00 491.90 million 17

Insight

Award activity is highly concentrated with JOHNS HOPKINS MEDICAL SERVICES CORP, which accounts for the largest share of obligated dollars in this 10-year window. The vendor appears in two rows, with 61 awards totaling $2.82 billion under CAGE code 1NXX2 and an additional 17 awards totaling $491.90 million without a reported CAGE code. This pattern indicates sustained reliance on the same vendor name across multiple award records, with obligation volume materially concentrated in one supplier.

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 = 'HT940213C0009'
    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 3,313,534,458.04 3.31 billion 78

Insight

Over the 10-year window for award PIID HT940213C0009 under Agency ID 9700, obligations are entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This category accounts for $3.31 billion across 78 awards, indicating a highly focused obligation pattern with no other NAICS codes represented 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 = 'HT940213C0009'
    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 3,323,766,141.65 3.32 billion 76
Q201 MEDICAL- MANAGED HEALTHCARE -10,231,683.61 -10.23 million 2

Insight

Obligations on this award are heavily concentrated in PSC Q201, MEDICAL- GENERAL HEALTH CARE, which accounts for 76 actions and $3.32 billion over the 10-year window. A much smaller offset appears under PSC Q201, MEDICAL- MANAGED HEALTHCARE, with 2 actions and -$10.23 million in obligated value, indicating limited deobligation or adjustment activity relative to the primary category. Overall, the award’s obligated value is overwhelmingly concentrated in general health care services.

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 = 'HT940213C0009'
    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 396,600,000.00 396.60 million 15
2017 360,957,461.71 360.96 million 14
2018 694,075,000.00 694.08 million 18
2019 232,894,949.63 232.89 million 7
2020 415,522,865.05 415.52 million 6
2021 449,458,172.72 449.46 million 6
2022 420,631,762.59 420.63 million 7
2023 353,625,929.95 353.63 million 3
2025 -10,231,683.61 -10.23 million 2

Insight

Obligations for PIID HT940213C0009 are concentrated in the 2018–2022 period, when annual totals ranged from $360.96 million to $694.08 million across 6 to 18 awards. The highest obligated amount occurred in 2018 at $694.08 million, followed by a decline in 2019 to $232.89 million, then a rebound and stabilization around $415.52 million to $449.46 million in 2020–2022. Activity dropped further in 2023 to $353.63 million across 3 awards, and 2025 reflects a net de-obligation of $10.23 million.

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.