Award Number

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

Award number HT940213C0009 for agency 9700 shows two recorded actions in the last full year and a total obligated amount of -$10.23 million.

This page summarizes the federal procurement record for award number HT940213C0009 under agency ID 9700. In the last full year, the award recorded 2 actions with an average action value of -$5.12 million.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated reflects -$10,231,683.61 across 2 actions during the analysis window.

Agency ID
9700
PIID
HT940213C0009
Type
Award
Total Obligated
-10.23 million
-10,231,683.61
Actions
2
Average Action Value
-5,115,841.81

Overview

The award record for HT940213C0009 shows a total obligated amount of -$10,231,683.61 over the last full year. That total is distributed across 2 actions, producing an average action value of -$5,115,841.81. The negative obligation value is presented as provided in the source data.

How to use this page

Use this page to review the award-level obligation summary for agency ID 9700 and the PIID HT940213C0009. The figures here support basic analysis of action count, total obligated amount, and average action value within the last full-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 = 'HT940213C0009'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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) -10,231,683.61 -10.23 million 2

Insight

Over the past year, obligations for PIID HT940213C0009 are fully concentrated in a single top agency, Defense Health Agency (DHA), under agency ID 97DH. DHA accounts for two awards and a net obligated amount of -$10.23 million, indicating a negative funding trend over the period. With no other agencies present in the provided rows, the activity appears highly concentrated and limited to one agency relationship.

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 1 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 -10,231,683.61 -10.23 million 2

Insight

Over the past 1 year, obligations for award HT940213C0009 were fully concentrated with JOHNS HOPKINS MEDICAL SERVICES CORP (CAGE 1NXX2), which accounted for the only reported vendor activity in this section. The award reflects 2 obligations totaling -$10.23 million, indicating net downward obligation adjustments or deobligations rather than positive funding activity. With no additional vendors reported, there is no observable vendor distribution beyond a single-source concentration.

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 1 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 -10,231,683.61 -10.23 million 2

Insight

Within the 1-year window for award HT940213C0009 at Agency 9700, obligations are concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This category accounts for the full reported activity in this section, with 2 awards totaling -$10.23 million in obligated amount. The negative obligation value indicates net deobligation or downward adjustment activity rather than new funding.

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 1 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 -10,231,683.61 -10.23 million 2

Insight

For award HT940213C0009 over the 1-year window, obligations are fully concentrated in PSC Q201, Medical- Managed Healthcare. This PSC accounts for two awards/actions totaling -$10.23 million, indicating a narrow service focus within the observed period. The negative obligated amount suggests deobligations or adjustments rather than new funding, but no additional PSC distribution is present in the provided data.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -10,231,683.61 -10.23 million 2

Insight

For the 1-year window, obligated activity for award HT940213C0009 is concentrated entirely in FY 2025, with two award records totaling -$10.23 million. The negative obligation amount indicates deobligation or downward adjustment activity rather than net new funding. With no activity in other years in the provided window, the pattern suggests a highly concentrated annual change driven by FY 2025 actions.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.