Award Number

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

Award number HT940213C0012 for Agency ID 9700 shows 2 recorded actions in the last full year with total obligations of -8.72 million.

This page summarizes federal procurement activity for award number HT940213C0012 under Agency ID 9700 during the last full year. The record shows 2 award actions and total obligated amounts of -8,715,709.72, averaging -4,357,854.86 per action.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown as reported in FPDS and the total obligated value is negative for the selected analysis window.

Agency ID
9700
PIID
HT940213C0012
Type
Award
Total Obligated
-8.72 million
-8,715,709.72
Actions
2
Average Action Value
-4,357,854.86

Overview

For the last full year, award number HT940213C0012 has 2 recorded actions tied to Agency ID 9700. The total obligated amount is -8,715,709.72, with an average action value of -4,357,854.86. This page reflects the reported obligation values for the selected award record only.

How to use this page

Use this page to review the award-level obligation pattern for HT940213C0012 within Agency ID 9700 over the last full year. The summary is useful for quick screening, comparison with other awards, and identifying the scale and direction of reported obligated activity.

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 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) -8,715,709.72 -8.72 million 2

Insight

Obligations for PIID HT940213C0012 in the 1-year window are fully concentrated within Defense Health Agency (DHA), which accounts for the entire reported activity. Two award records are associated with DHA, with a combined net obligation of -$8.72 million, indicating a downward adjustment rather than positive funding flow. This concentration suggests the award’s recent obligation activity is limited to a single agency and driven by a small number of transactions.

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 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
MARTIN'S POINT HEALTH CARE, INC. 1NFZ9 -8,715,709.72 -8.72 million 2

Insight

Over the past 1 year, obligations under PIID HT940213C0012 were concentrated entirely with MARTIN'S POINT HEALTH CARE, INC. (CAGE 1NFZ9), which accounted for 2 awards. The vendor’s cumulative obligated amount was negative at $8.72 million, indicating net deobligations or downward funding adjustments during the period.

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 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 -8,715,709.72 -8.72 million 2

Insight

Obligations under PIID HT940213C0012 in the past year are entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This category accounts for two awards and total obligations of -$8.72 million, indicating a uniform NAICS distribution within the observed window. The negative obligated amount suggests net deobligation activity rather than incremental 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 = 'HT940213C0012'
    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 -8,715,709.72 -8.72 million 2

Insight

Obligations for this award are fully concentrated in PSC Q201, Medical- Managed Healthcare, with -$8.72 million obligated across 2 actions in the 1-year window. This indicates a narrow spend profile with no visible diversification across PSC categories in the provided data. The negative total suggests deobligations or downward adjustments drove the net funding position for this period.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -8,715,709.72 -8.72 million 2

Insight

In the 1-year window, the award reflects $-8.72 million in total obligated funding across 2 awards in FY2025. Obligations are highly concentrated, with all reported activity occurring in a single year and limited award count. This indicates a narrow annual distribution rather than a spread of obligations over multiple years.

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.