Award Number

Award Number 9700 / HT940213C0012 Federal Contract Action Summary (Last 5 Years)

Federal procurement award page for award number HT940213C0012 under agency ID 9700, covering the last 5 years of recorded actions and obligations.

This page summarizes award number HT940213C0012 for agency ID 9700 over the last 5 years. The record shows 18 award actions with total obligated funding of 1.08 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

All obligation figures reflect the provided total obligated exact value of 1075974075.38 and the readable rounded value of 1.08 billion.

Agency ID
9700
PIID
HT940213C0012
Type
Award
Total Obligated
1.08 billion
1,075,974,075.38
Actions
18
Average Action Value
59,776,337.52

Overview

The award record for HT940213C0012 shows 18 actions in the last 5 years, with total obligated funding of 1,075,974,075.38. The average action value is 59,776,337.52, based on the provided action count and obligation total.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for HT940213C0012. It supports quick comparison across procurement records for agency ID 9700 using the last 5 years of available data.

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 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,075,974,075.38 1.08 billion 18

Insight

Over the 5-year window, obligations for award HT940213C0012 are fully concentrated within a single top agency: Defense Health Agency (DHA), with $1.08 billion across 18 awards. This indicates a high degree of agency concentration and limited distribution of obligations across other agencies. The average obligated amount per award is substantial, consistent with a materially funded contract relationship 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 = '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 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
MARTIN'S POINT HEALTH CARE, INC. 1NFZ9 1,075,974,075.38 1.08 billion 18

Insight

Over the 5-year window, MARTIN'S POINT HEALTH CARE, INC. accounts for all observed obligations in this award context, with $1.08 billion across 18 awards. This indicates a highly concentrated vendor profile rather than a distributed obligation base. The average obligation per award is substantial, suggesting repeated high-value activity with a single vendor.

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 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,075,974,075.38 1.08 billion 18

Insight

Over the past 5 years, obligations for this award are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This code accounts for $1.08 billion across 18 awards, indicating a strong and narrow procurement pattern rather than a diversified NAICS mix. The concentration suggests the award activity is dominated by a single health insurance services category.

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 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,084,689,785.10 1.08 billion 16
Q201 MEDICAL- MANAGED HEALTHCARE -8,715,709.72 -8.72 million 2

Insight

Obligations on this award are highly concentrated in PSC Q201, Medical-General Health Care, which accounts for $1.08 billion across 16 awards. A smaller offsetting amount is recorded under PSC Q201, Medical-Managed Healthcare at -$8.72 million across 2 awards, indicating limited downward adjustment relative to the dominant positive obligations. Overall, the award’s PSC profile is driven overwhelmingly by the Medical-General Health Care classification.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 under PIID HT940213C0012 are concentrated in 2021 through 2023, with annual totals declining from $398.65 million in 2021 to $374.97 million in 2022 and $311.07 million in 2023. Award counts also vary across this period, peaking at 7 awards in 2022 before dropping to 3 in 2023, indicating reduced transaction volume alongside lower obligated amounts. In 2025, obligations are negative at $8.72 million across 2 awards, which suggests downward adjustment activity rather than new funding growth.

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.