Award Number

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

This award number page summarizes procurement activity for PIID HT940211C0003 under agency ID 9700 over the last 5 years.

The award shows one recorded action in the analysis window, with total obligated amount of -$5.87 million. The single action value matches the full obligated total at -$5,868,545.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the last 5 years of available award activity and are shown as reported in the source data.

Agency ID
9700
PIID
HT940211C0003
Type
Award
Total Obligated
-5.87 million
-5,868,545.00
Actions
1
Average Action Value
-5,868,545.00

Overview

For the last 5 years, PIID HT940211C0003 is associated with a single award action under agency ID 9700. The reported total obligated amount is -$5,868,545, and the average action value is the same because only one action is recorded.

How to use this page

Use this page to review the award identifier, the reported obligated amount, and the number of actions tied to the record. The figures support basic comparison and validation of this award against other procurement records in the same 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 = 'HT940211C0003'
    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) -5,868,545.00 -5.87 million 1

Insight

Within the 5-year window for PIID HT940211C0003, obligations are fully concentrated in a single top agency: the Defense Health Agency (DHA). DHA accounts for the only recorded award in this view, with one award totaling -$5.87 million in obligated value. This indicates no visible agency-level distribution across additional agencies in the provided results.

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 = 'HT940211C0003'
        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
HUMANA MILITARY HEALTHCARE SERVICES, INC. 050S0 -5,868,545.00 -5.87 million 1

Insight

Obligations for PIID HT940211C0003 over the 5-year window are fully concentrated with a single vendor, HUMANA MILITARY HEALTHCARE SERVICES, INC. (CAGE 050S0). This vendor accounts for one reported award action and a net obligated amount of -$5.87 million, indicating a downward adjustment or deobligation rather than positive funding. With no additional vendors listed, the award’s obligated activity is not distributed across multiple suppliers.

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 = 'HT940211C0003'
    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 -5,868,545.00 -5.87 million 1

Insight

Over the 5-year window, the award’s obligations are entirely concentrated in a single NAICS code: 524114, Direct Health and Medical Insurance Carriers. This category accounts for one award action and total obligations of -$5.87 million, indicating a single, fully concentrated line of activity rather than a diversified procurement mix. The negative obligated amount suggests deobligation or downward adjustment within this NAICS classification.

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 = 'HT940211C0003'
    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- MANAGED HEALTHCARE -5,868,545.00 -5.87 million 1

Insight

For award HT940211C0003 over the 5-year window, obligations are fully concentrated in PSC Q201 (Medical - Managed Healthcare), with a single award and total obligations of -$5.87 million. This indicates no PSC diversification within the provided rows and suggests the award’s recorded activity in this period is entirely associated with this service category. The negative obligated amount is material and may warrant review in context of the underlying contract action history.

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 = 'HT940211C0003'
    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
2025 -5,868,545.00 -5.87 million 1

Insight

In the 5-year window, this award shows activity only in FY 2025, with one action obligating -$5.87 million. Obligations are fully concentrated in a single year and a single award action, indicating no observable multi-year distribution within the provided period. The negative obligation amount suggests a deobligation or downward funding adjustment in FY 2025.

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.