This page summarizes procurement activity for award number HT940213C0009 under agency ID 9700. Over the last 5 years, the award has 18 actions and total obligated amount of 1,213,484,181.65, with an average action value of 67,415,787.87.
Award Number
Award Number 9700 / HT940213C0009 Federal Contract Action Summary (Last 5 Years)
Award number HT940213C0009 for agency ID 9700 shows 18 actions and 1.21 billion in total obligated value over the last 5 years.
Amounts reflect the provided analysis window and should be read as obligated values associated with the award action history.
Overview
The award record for HT940213C0009 covers 18 actions in the last 5 years, with total obligated funding of 1,213,484,181.65. The average action value is 67,415,787.87, which provides a simple summary of the scale of activity across the action history. These figures are limited to the data provided for this award and agency ID.
How to use this page
Use this page to review award-level procurement activity for HT940213C0009 and compare the action count, obligated total, and average action value. It is useful for quick checks on funding magnitude and transaction frequency within the stated analysis 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 = 'HT940213C0009'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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) | 1,213,484,181.65 | 1.21 billion | 18 |
Insight
Over the 5-year window for award HT940213C0009, all reported obligation is concentrated with Defense Health Agency (DHA), which accounts for $1.21 billion across 18 awards. This indicates a highly concentrated obligation profile with no diversification across additional agencies in the provided results. The distribution suggests DHA is the sole top agency driving activity 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 = '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 5 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 | 1,213,484,181.65 | 1.21 billion | 18 |
Insight
Obligations for PIID HT940213C0009 are highly concentrated, with JOHNS HOPKINS MEDICAL SERVICES CORP (CAGE 1NXX2) accounting for the full reported five-year total of $1.21 billion across 18 awards. This indicates a single-vendor award pattern with no other vendors represented in the provided data. The distribution suggests sustained reliance on this contractor over the period rather than a broad vendor base.
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 5 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 | 1,213,484,181.65 | 1.21 billion | 18 |
Insight
Over the 5-year window, NAICS 524114, Direct Health and Medical Insurance Carriers, accounts for the full reported obligated amount for this award, totaling $1.21 billion across 18 actions. This indicates complete concentration in a single NAICS category with no diversification among the provided rows. The distribution suggests the award is consistently aligned to health and medical insurance carrier services.
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 5 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 | 1,223,715,865.26 | 1.22 billion | 16 |
| Q201 | MEDICAL- MANAGED HEALTHCARE | -10,231,683.61 | -10.23 million | 2 |
Insight
Obligations under this award are heavily concentrated in PSC Q201, Medical- General Health Care, which accounts for $1.22 billion across 16 actions. A smaller offsetting amount appears under PSC Q201, Medical- Managed Healthcare, with -$10.23 million across 2 actions, indicating minor deobligations or downward adjustments rather than a separate material spending stream. Overall, the PSC profile is highly focused, with virtually all net obligated value tied to 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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 are concentrated in 2021 through 2023, with annual totals declining from $449.46 million in 2021 to $420.63 million in 2022 and $353.63 million in 2023. Award counts were low throughout this period, ranging from 3 to 7 awards per year, indicating a small number of actions accounted for substantial obligated amounts. In 2025, obligations were negative at $10.23 million across 2 awards, suggesting downward adjustment activity rather than new positive 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.